@groovy.transform.ToString(includeNames: true, includePackage: false) @groovy.transform.EqualsAndHashCode class FindWorkRequest extends java.lang.Object
The request argument for the WorkListService.findWork() service method. This provides the arguments for the findWork() method along with key options.
This is a POGO used by the WorkListService.findWork method.Type | Name and description |
---|---|
private java.lang.String |
filter A filter value for suggest filtering on the client. |
private boolean |
findInQueue If true, then the findWork() method should return work that is in queue. |
private boolean |
findInWork If true, then the findWork() method should return active work. |
private int |
from The starting page to retrieve from. |
private int |
max The maximum number of rows to retrieve. |
private WorkCenter |
workCenter The work center to limit the work for. |
Constructor and description |
---|
FindWorkRequest
() |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
A filter value for suggest filtering on the client. Looks for Orders/LSN's that start with the given value.
If true, then the findWork() method should return work that is in queue.
If true, then the findWork() method should return active work.
The starting page to retrieve from. (Default: 0). Page size is max above.
The maximum number of rows to retrieve. (Default: Limits.DEFAULT_PAGE_SIZE, upper limit of 100 or as configured by ConfigSettingUtils.maxRowLimit).
The work center to limit the work for.
Groovy Documentation