Started efactoring InviatationServiceImpl so that it uses Activit workflow engine.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29990 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
N Smith
2011-08-23 13:24:42 +00:00
parent 24fa893ac3
commit fba09d9b2a
22 changed files with 602 additions and 682 deletions

View File

@@ -32,6 +32,9 @@ import org.alfresco.service.namespace.QName;
*/
public class WorkflowTaskQuery
{
// Engine Id
private String engineId = null;
// task predicates
private String taskId;
private WorkflowTaskState taskState = WorkflowTaskState.IN_PROGRESS;
@@ -45,7 +48,7 @@ public class WorkflowTaskQuery
private String workflowDefinitionName;
private Boolean active = Boolean.TRUE;
private Map<QName, Object> processCustomProps;
// order by
private OrderBy[] orderBy;
@@ -263,4 +266,20 @@ public class WorkflowTaskQuery
{
this.limit = limit;
}
/**
* @param engineId the engineId to set
*/
public void setEngineId(String engineId)
{
this.engineId = engineId;
}
/**
* @return the engineId
*/
public String getEngineId()
{
return engineId;
}
}