mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user