Hi there,
I want to combine several sort orders in one call - how do I correctly specify that?
for example
processAPI.getProcessDeploymentInfos(0, 2000, ProcessDeploymentInfoCriterion.NAME_ASC);
gives me in name order
I want to do
processAPI.getProcessDeploymentInfos(0, 2000, ProcessDeploymentInfoCriterion.NAME_ASC +
ProcessDeploymentInfoCriterion.VERSION_ASC);
which will give me Name and Version order.
thanks and regards
Seán