Uses of Interface
org.camunda.bpm.engine.authorization.AuthorizationQuery
-
Packages that use AuthorizationQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.authorization org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.rest.dto.authorization org.camunda.bpm.engine.rest.impl -
-
Uses of AuthorizationQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return AuthorizationQuery Modifier and Type Method Description AuthorizationQueryAuthorizationService. createAuthorizationQuery()Constructs an authorization query. -
Uses of AuthorizationQuery in org.camunda.bpm.engine.authorization
Methods in org.camunda.bpm.engine.authorization that return AuthorizationQuery Modifier and Type Method Description AuthorizationQueryAuthorizationQuery. authorizationId(java.lang.String id)only selects authorizations for the given idAuthorizationQueryAuthorizationQuery. authorizationType(java.lang.Integer type)only selects authorizations for the given type.AuthorizationQueryAuthorizationQuery. groupIdIn(java.lang.String... groupIds)only selects authorizations for the given group idsAuthorizationQueryAuthorizationQuery. hasPermission(Permission permission)only selects authorizations which grant the permissions represented by the parameter.AuthorizationQueryAuthorizationQuery. orderByResourceId()Order by resource id (needs to be followed byQuery.asc()orQuery.desc()).AuthorizationQueryAuthorizationQuery. orderByResourceType()Order by resource type (needs to be followed byQuery.asc()orQuery.desc()).AuthorizationQueryAuthorizationQuery. resourceId(java.lang.String resourceId)only selects authorizations for the given resource idAuthorizationQueryAuthorizationQuery. resourceType(int resourceType)only selects authorizations for the given resource typeAuthorizationQueryAuthorizationQuery. resourceType(Resource resource)only selects authorizations for the given resource typeAuthorizationQueryAuthorizationQuery. userIdIn(java.lang.String... userIds)only selects authorizations for the given user ids -
Uses of AuthorizationQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement AuthorizationQuery Modifier and Type Class Description classAuthorizationQueryImplMethods in org.camunda.bpm.engine.impl that return AuthorizationQuery Modifier and Type Method Description AuthorizationQueryAuthorizationQueryImpl. authorizationId(java.lang.String id)AuthorizationQueryAuthorizationQueryImpl. authorizationType(java.lang.Integer type)AuthorizationQueryAuthorizationServiceImpl. createAuthorizationQuery()AuthorizationQueryAuthorizationQueryImpl. groupIdIn(java.lang.String... groupIdIn)AuthorizationQueryAuthorizationQueryImpl. hasPermission(Permission p)AuthorizationQueryAuthorizationQueryImpl. orderByResourceId()AuthorizationQueryAuthorizationQueryImpl. orderByResourceType()AuthorizationQueryAuthorizationQueryImpl. resourceId(java.lang.String resourceId)AuthorizationQueryAuthorizationQueryImpl. resourceType(int resourceType)AuthorizationQueryAuthorizationQueryImpl. resourceType(Resource resource)AuthorizationQueryAuthorizationQueryImpl. userIdIn(java.lang.String... userIdIn) -
Uses of AuthorizationQuery in org.camunda.bpm.engine.rest.dto.authorization
Methods in org.camunda.bpm.engine.rest.dto.authorization that return AuthorizationQuery Modifier and Type Method Description protected AuthorizationQueryAuthorizationQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.authorization with parameters of type AuthorizationQuery Modifier and Type Method Description protected voidAuthorizationQueryDto. applyFilters(AuthorizationQuery query)protected voidAuthorizationQueryDto. applySortBy(AuthorizationQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine) -
Uses of AuthorizationQuery in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with parameters of type AuthorizationQuery Modifier and Type Method Description protected java.util.List<Authorization>AuthorizationRestServiceImpl. executePaginatedQuery(AuthorizationQuery query, java.lang.Integer firstResult, java.lang.Integer maxResults)
-