| 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. 
 | 
| com.edorasware.cloud.core.util | |
| com.edorasware.commons.core.any | 
 Classes for generic work object management. 
 | 
| com.edorasware.commons.core.any.internal | |
| com.edorasware.commons.core.service.entity | 
 Classes related to entity services. 
 | 
| com.edorasware.commons.core.util.bulk | |
| com.edorasware.commons.core.util.bulk.internal | |
| com.edorasware.gear.core.workobject.internal | |
| com.edorasware.one.identity.group | |
| com.edorasware.one.identity.user | 
| 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Optional<WorkObject> | 
AmbiguousIdHelper.findWorkObjectForAmbiguousId(String ambiguousId,
                            SearchScope searchScope)
Finds the model corresponding to the given model ID value, supporting legacy
model references as well as the default global ID. 
 | 
WorkObject | 
AmbiguousIdHelper.getWorkObjectForAmbiguousId(String modelReference,
                           SearchScope searchScope)
Gets the model corresponding to the given model ID value, supporting legacy
model references as well as the default global ID. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
AnyWorkObjectDefinitionService.countWorkObjectDefinitions(Predicate anyWorkObjectDefinitionPredicate,
                          SearchScope searchScope)
Counts the concrete work objects that match the query with the given predicate in given scope. 
 | 
long | 
AnyWorkObjectDefinitionService.countWorkObjectDefinitions(Query query,
                          SearchScope searchScope)
Counts the concrete work object definitions that match the given query in given scope. 
 | 
long | 
AnyWorkObjectService.countWorkObjects(Predicate predicate,
                SearchScope searchScope)
Counts the concrete work objects that match the query with the given predicate. 
 | 
long | 
AnyWorkObjectService.countWorkObjects(Query query,
                SearchScope searchScope)
Counts the concrete work objects that match the given query. 
 | 
AnyWorkObject | 
AnyWorkObjectService.findWorkObject(Predicate predicate,
              SearchScope searchScope)
Finds the concrete work object that matches the query with the given predicate. 
 | 
AnyWorkObject | 
AnyWorkObjectService.findWorkObject(Query query,
              SearchScope searchScope)
Finds the concrete work object that matches the given query. 
 | 
AnyWorkObject | 
AnyWorkObjectService.findWorkObjectByExternalId(String externalId,
                          SearchScope searchScope)
Finds the concrete work object with the given external id in the given scope. 
 | 
AnyWorkObject | 
AnyWorkObjectService.findWorkObjectByGlobalId(String globalId,
                        SearchScope searchScope)
Finds the concrete work object with the given global id in the given scope. 
 | 
AnyWorkObject | 
AnyWorkObjectService.findWorkObjectById(String id,
                  SearchScope searchScope)
Finds the concrete work object with the given concrete work object id in the given scope. 
 | 
AnyWorkObjectDefinition | 
AnyWorkObjectDefinitionService.findWorkObjectDefinition(Predicate anyWorkObjectDefinitionPredicate,
                        SearchScope searchScope)
Finds the concrete work object definition that matches the query with the given predicate in given scope. 
 | 
AnyWorkObjectDefinition | 
AnyWorkObjectDefinitionService.findWorkObjectDefinition(Query query,
                        SearchScope searchScope)
Finds the concrete work object definition that matches the given query in given scope. 
 | 
AnyWorkObjectDefinition | 
AnyWorkObjectDefinitionService.findWorkObjectDefinitionByExternalId(String externalId,
                                    SearchScope searchScope)
Finds the concrete work object definition with the given external id in the given scope. 
 | 
AnyWorkObjectDefinition | 
AnyWorkObjectDefinitionService.findWorkObjectDefinitionById(String id,
                            SearchScope searchScope)
Finds the concrete work object definition with the given concrete work object definition id in the given scope. 
 | 
List<AnyWorkObjectDefinition> | 
AnyWorkObjectDefinitionService.findWorkObjectDefinitions(Predicate anyWorkObjectDefinitionPredicate,
                         SearchScope searchScope)
Finds the concrete work object definitions that match the query with the given predicate in given scope. 
 | 
List<AnyWorkObjectDefinition> | 
AnyWorkObjectDefinitionService.findWorkObjectDefinitions(Query query,
                         SearchScope searchScope)
Finds the concrete work object definitions that match the given query in given scope. 
 | 
List<AnyWorkObject> | 
AnyWorkObjectService.findWorkObjects(Predicate predicate,
               SearchScope searchScope)
Finds the concrete work objects that match the query with the given predicate. 
 | 
List<AnyWorkObject> | 
AnyWorkObjectService.findWorkObjects(Query query,
               SearchScope searchScope)
Finds the concrete work objects that match the given query. 
 | 
AnyWorkObject | 
AnyWorkObjectService.getWorkObjectByGlobalId(String globalId,
                       SearchScope searchScope)
Finds the work object with the given global id in the given scope. 
 | 
AnyWorkObject | 
AnyWorkObjectService.getWorkObjectById(String id,
                 SearchScope searchScope)
Finds the work object with the given work object id in the given scope. 
 | 
AnyWorkObjectDefinition | 
AnyWorkObjectDefinitionService.getWorkObjectDefinitionById(String id,
                           SearchScope searchScope)
Finds the work object definition with the given work object definition id in the given scope. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
DefaultAnyWorkObjectDefinitionService.countWorkObjectDefinitions(Predicate anyWorkObjectDefinitionPredicate,
                          SearchScope searchScope)  | 
long | 
DefaultAnyWorkObjectDefinitionService.countWorkObjectDefinitions(Query query,
                          SearchScope searchScope)  | 
long | 
DefaultAnyWorkObjectService.countWorkObjects(Predicate predicate,
                SearchScope searchScope)  | 
long | 
DefaultAnyWorkObjectService.countWorkObjects(Query query,
                SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.findWorkObject(Predicate predicate,
              SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.findWorkObject(Query query,
              SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.findWorkObjectByExternalId(String externalId,
                          SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.findWorkObjectByGlobalId(String globalId,
                        SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.findWorkObjectById(String id,
                  SearchScope searchScope)  | 
AnyWorkObjectDefinition | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinition(Predicate anyWorkObjectDefinitionPredicate,
                        SearchScope searchScope)  | 
AnyWorkObjectDefinition | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinition(Query query,
                        SearchScope searchScope)  | 
AnyWorkObjectDefinition | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinitionByExternalId(String externalId,
                                    SearchScope searchScope)  | 
AnyWorkObjectDefinition | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinitionById(String id,
                            SearchScope searchScope)  | 
List<AnyWorkObjectDefinition> | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinitions(Predicate anyWorkObjectDefinitionPredicate,
                         SearchScope searchScope)  | 
List<AnyWorkObjectDefinition> | 
DefaultAnyWorkObjectDefinitionService.findWorkObjectDefinitions(Query query,
                         SearchScope searchScope)  | 
List<AnyWorkObject> | 
DefaultAnyWorkObjectService.findWorkObjects(Predicate predicate,
               SearchScope searchScope)  | 
List<AnyWorkObject> | 
DefaultAnyWorkObjectService.findWorkObjects(Query query,
               SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.getWorkObjectByGlobalId(String globalId,
                       SearchScope searchScope)  | 
AnyWorkObject | 
DefaultAnyWorkObjectService.getWorkObjectById(String id,
                 SearchScope searchScope)  | 
AnyWorkObjectDefinition | 
DefaultAnyWorkObjectDefinitionService.getWorkObjectDefinitionById(String id,
                           SearchScope searchScope)  | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
BaseEntityService.countEntities(Predicate predicate,
             SearchScope searchScope)  | 
long | 
EntityService.countEntities(Predicate predicate,
             SearchScope searchScope)
Counts the entities that match the query with the given predicate in the given scope. 
 | 
long | 
BaseEntityService.countEntities(Query query,
             SearchScope searchScope)  | 
long | 
EntityService.countEntities(Query entityQuery,
             SearchScope searchScope)
Counts the entities that match the given query in the given scope. 
 | 
List<E> | 
BaseEntityService.findEntities(Predicate predicate,
            SearchScope searchScope)  | 
List<E> | 
EntityService.findEntities(Predicate predicate,
            SearchScope searchScope)
Finds the entities that match the query with the given predicate in the given scope. 
 | 
List<E> | 
BaseEntityService.findEntities(Query query,
            SearchScope searchScope)  | 
List<E> | 
EntityService.findEntities(Query entityQuery,
            SearchScope searchScope)
Finds the entities that match the given query in the given scope. 
 | 
E | 
BaseEntityService.findEntity(Predicate predicate,
          SearchScope searchScope)  | 
E | 
EntityService.findEntity(Predicate predicate,
          SearchScope searchScope)
Finds the entity that matches the query with the given predicate in the given scope. 
 | 
E | 
BaseEntityService.findEntity(Query query,
          SearchScope searchScope)  | 
E | 
EntityService.findEntity(Query entityQuery,
          SearchScope searchScope)
Finds the entity that matches the given query in the given scope. 
 | 
E | 
BaseEntityService.findEntityByExternalId(String externalId,
                      SearchScope searchScope)  | 
E | 
EntityService.findEntityByExternalId(String externalId,
                      SearchScope searchScope)
Finds the entity with the given external entity id in the given scope. 
 | 
E | 
BaseEntityService.findEntityByGlobalId(String globalId,
                    SearchScope searchScope)  | 
E | 
EntityService.findEntityByGlobalId(String globalId,
                    SearchScope searchScope)
Finds the entity with the given entity global id in the given scope. 
 | 
E | 
BaseEntityService.findEntityById(String entityId,
              SearchScope searchScope)  | 
E | 
EntityService.findEntityById(String id,
              SearchScope searchScope)
Finds the entity with the given entity id in the given scope. 
 | 
String | 
BaseEntityService.findIdByExternalId(String externalId,
                  SearchScope searchScope)  | 
String | 
EntityService.findIdByExternalId(String externalId,
                  SearchScope searchScope)
Returns the id of the entity with the given external id in the given scope. 
 | 
E | 
BaseEntityService.getEntityByGlobalId(String globalId,
                   SearchScope searchScope)  | 
E | 
EntityService.getEntityByGlobalId(String globalId,
                   SearchScope searchScope)
Finds the entity with the given entity id in the given scope. 
 | 
E | 
BaseEntityService.getEntityById(String entityId,
             SearchScope searchScope)  | 
E | 
EntityService.getEntityById(String entityId,
             SearchScope searchScope)
Finds the entity with the given entity id in the given scope. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
BulkProcessor.process(String taskName,
       Predicate predicate,
       com.google.common.base.Function<T,Void> function,
       SearchScope searchScope)
Process all objects matched by the given predicate, applying the given function to each one. 
 | 
long | 
BulkProcessor.process(String taskName,
       Predicate predicate,
       Set<QueryHint> hints,
       com.google.common.base.Function<T,Void> function,
       SearchScope searchScope)
Process all objects matched by the given predicate, applying the given function to each one. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
BaseBulkEntityProcessor.process(String taskName,
       Predicate predicate,
       com.google.common.base.Function<T,Void> function,
       SearchScope searchScope)  | 
long | 
BaseBulkEntityProcessor.process(String taskName,
       Predicate predicate,
       Set<QueryHint> hints,
       com.google.common.base.Function<T,Void> function,
       SearchScope searchScope)  | 
| Modifier and Type | Method and Description | 
|---|---|
long | 
DefaultWorkObjectService.countWorkObjects(Predicate predicate,
                SearchScope searchScope)  | 
long | 
DefaultWorkObjectService.countWorkObjects(Query query,
                SearchScope searchScope)  | 
Optional<WorkObject> | 
DefaultWorkObjectService.findWorkObject(Predicate predicate,
              SearchScope searchScope)  | 
Optional<WorkObject> | 
DefaultWorkObjectService.findWorkObject(Query query,
              SearchScope searchScope)  | 
Optional<WorkObject> | 
DefaultWorkObjectService.findWorkObject(String id,
              SearchScope searchScope)  | 
List<WorkObject> | 
DefaultWorkObjectService.findWorkObjects(Predicate predicate,
               SearchScope searchScope)  | 
List<WorkObject> | 
DefaultWorkObjectService.findWorkObjects(Query query,
               SearchScope searchScope)  | 
WorkObject | 
DefaultWorkObjectService.getWorkObject(Predicate predicate,
             SearchScope searchScope)  | 
WorkObject | 
DefaultWorkObjectService.getWorkObject(Query query,
             SearchScope searchScope)  | 
WorkObject | 
DefaultWorkObjectService.getWorkObject(String id,
             SearchScope searchScope)  | 
| Modifier and Type | Method and Description | 
|---|---|
SearchScope | 
GroupService.GroupSearchScope.getQuerySearchScope()  | 
| Modifier and Type | Method and Description | 
|---|---|
SearchScope | 
UserService.UserSearchScope.getQuerySearchScope()  | 
Copyright © 2010 - 2019 edorasware ag. All Rights Reserved.