Package | Description |
---|---|
com.edorasware.api.base |
Basic classes and values used by the rest of the API.
|
com.edorasware.api.workobject |
Interfaces for work object access and manipulation.
|
Modifier and Type | Method and Description |
---|---|
static SearchScope |
SearchScope.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchScope[] |
SearchScope.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
long |
WorkObjectService.countWorkObjects(Predicate predicate,
SearchScope searchScope)
Counts the work objects that match the query with the given predicate in given scope.
|
long |
WorkObjectService.countWorkObjects(Query query,
SearchScope searchScope)
Counts the work objects that match the given query in given scope.
|
Optional<WorkObject> |
WorkObjectService.findWorkObject(Predicate predicate,
SearchScope searchScope)
Finds the work object that matches the query with the given predicate in given scope.
|
Optional<WorkObject> |
WorkObjectService.findWorkObject(Query query,
SearchScope searchScope)
Finds the work object that matches the given query in given scope.
|
Optional<WorkObject> |
WorkObjectService.findWorkObject(String id,
SearchScope searchScope)
Finds the work object with the given ID in the given scope.
|
List<WorkObject> |
WorkObjectService.findWorkObjects(Predicate predicate,
SearchScope searchScope)
Finds the work objects that match the query with the given predicate in given scope.
|
List<WorkObject> |
WorkObjectService.findWorkObjects(Query query,
SearchScope searchScope)
Finds the work objects that match the given query in given scope.
|
WorkObject |
WorkObjectService.getWorkObject(Predicate predicate,
SearchScope searchScope)
Returns the work object that matches the predicate in given scope.
|
WorkObject |
WorkObjectService.getWorkObject(Query query,
SearchScope searchScope)
Returns the work object that matches the query in given scope.
|
WorkObject |
WorkObjectService.getWorkObject(String id,
SearchScope searchScope)
Returns the work object with the given ID in the given scope.
|
Copyright © 2010 - 2017 edorasware ag. All Rights Reserved.