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 aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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 AuthorizationQuery
AuthorizationService. 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 AuthorizationQuery
AuthorizationQuery. authorizationId(String id)
only selects authorizations for the given idAuthorizationQuery
AuthorizationQuery. authorizationType(Integer type)
only selects authorizations for the given type.AuthorizationQuery
AuthorizationQuery. groupIdIn(String... groupIds)
only selects authorizations for the given group idsAuthorizationQuery
AuthorizationQuery. hasPermission(Permission permission)
only selects authorizations which grant the permissions represented by the parameter.AuthorizationQuery
AuthorizationQuery. orderByResourceId()
Order by resource id (needs to be followed byQuery.asc()
orQuery.desc()
).AuthorizationQuery
AuthorizationQuery. orderByResourceType()
Order by resource type (needs to be followed byQuery.asc()
orQuery.desc()
).AuthorizationQuery
AuthorizationQuery. resourceId(String resourceId)
only selects authorizations for the given resource idAuthorizationQuery
AuthorizationQuery. resourceType(int resourceType)
only selects authorizations for the given resource typeAuthorizationQuery
AuthorizationQuery. resourceType(Resource resource)
only selects authorizations for the given resource typeAuthorizationQuery
AuthorizationQuery. userIdIn(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 class
AuthorizationQueryImpl
Methods in org.camunda.bpm.engine.impl that return AuthorizationQuery Modifier and Type Method Description AuthorizationQuery
AuthorizationQueryImpl. authorizationId(String id)
AuthorizationQuery
AuthorizationQueryImpl. authorizationType(Integer type)
AuthorizationQuery
AuthorizationServiceImpl. createAuthorizationQuery()
AuthorizationQuery
AuthorizationQueryImpl. groupIdIn(String... groupIdIn)
AuthorizationQuery
AuthorizationQueryImpl. hasPermission(Permission p)
AuthorizationQuery
AuthorizationQueryImpl. orderByResourceId()
AuthorizationQuery
AuthorizationQueryImpl. orderByResourceType()
AuthorizationQuery
AuthorizationQueryImpl. resourceId(String resourceId)
AuthorizationQuery
AuthorizationQueryImpl. resourceType(int resourceType)
AuthorizationQuery
AuthorizationQueryImpl. resourceType(Resource resource)
AuthorizationQuery
AuthorizationQueryImpl. userIdIn(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 AuthorizationQuery
AuthorizationQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.authorization with parameters of type AuthorizationQuery Modifier and Type Method Description protected void
AuthorizationQueryDto. applyFilters(AuthorizationQuery query)
protected void
AuthorizationQueryDto. applySortBy(AuthorizationQuery query, String sortBy, Map<String,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 List<Authorization>
AuthorizationRestServiceImpl. executePaginatedQuery(AuthorizationQuery query, Integer firstResult, Integer maxResults)
-