Hi,
I have a requirement like below,
I need to find the assets associcate with specific workflow
to achieve this one way is
I can get all the active com.adobe.granite.workflow.exec.WorkItem[] workItems from the workflowSession then iterate each one and compare with the workflowid
this may cause the performance issue while loading the page
--- other work around is using
ResultSet<WorkItem> getActiveWorkItems(long start, long limit,WorkItemFilter filter) throws WorkflowException from the workflowSession
but I am not sure about the params of this method
what I guess start is 0/1 (indicating the first active workflow model) , limit is activeworkflow max size
and third one is
WorkItemFilter ( this may be used with required workflow model what we required to compare)
I am not sure how to create WorkItemFilter with the given workflow model/object
can any one help me on this.
thanks.
Saleem.