Package | Description |
---|---|
org.camunda.bpm.cockpit.plugin.resource | |
org.camunda.bpm.engine |
Public API of the camunda BPM engine.
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine , BPM and workflow operation
can be executed:RepositoryService :
Manages Deployment sRuntimeService :
For starting and searching ProcessInstance sTaskService :
Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService :
Used for managing User s,
Group s and the relations between themManagementService :
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService :
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.impl.cfg | |
org.camunda.bpm.engine.impl.cfg.auth | |
org.camunda.bpm.engine.impl.cmd | |
org.camunda.bpm.engine.impl.db | |
org.camunda.bpm.engine.impl.identity.db | |
org.camunda.bpm.engine.impl.persistence | |
org.camunda.bpm.engine.impl.persistence.entity | |
org.camunda.bpm.engine.rest.dto.converter | |
org.camunda.bpm.engine.rest.impl | |
org.camunda.bpm.engine.rest.util | |
org.camunda.bpm.identity.impl.ldap | |
org.camunda.bpm.qa.performance.engine.junit | |
org.camunda.bpm.qa.rolling.update.scenarios.authorization |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractCockpitPluginResource.addPermissionCheck(QueryParameters<?> query,
Resource resource,
String queryParam,
Permission permission)
Add a new
PermissionCheck with the given values. |
Modifier and Type | Method and Description |
---|---|
boolean |
AuthorizationService.isUserAuthorized(String userId,
List<String> groupIds,
Permission permission,
Resource resource)
Allows performing an authorization check.
|
boolean |
AuthorizationService.isUserAuthorized(String userId,
List<String> groupIds,
Permission permission,
Resource resource,
String resourceId)
Allows performing an authorization check.
|
Modifier and Type | Class and Description |
---|---|
class |
Permissions
The set of built-in
Permissions for camunda BPM. |
Modifier and Type | Method and Description |
---|---|
static Permission |
Permissions.forName(String name) |
Permission[] |
Authorization.getPermissions(Permission[] permissions)
Allows checking whether this authorization grants / revokes a set of permissions.
|
Modifier and Type | Method and Description |
---|---|
void |
Authorization.addPermission(Permission permission)
allows granting a permission.
|
Permission[] |
Authorization.getPermissions(Permission[] permissions)
Allows checking whether this authorization grants / revokes a set of permissions.
|
AuthorizationQuery |
AuthorizationQuery.hasPermission(Permission permission)
only selects authorizations which grant the permissions represented by the parameter.
|
boolean |
Authorization.isPermissionGranted(Permission permission)
Allows checking whether this authorization grants a specific permission.
|
boolean |
Authorization.isPermissionRevoked(Permission permission)
Allows checking whether this authorization revokes a specific permission.
|
void |
Authorization.removePermission(Permission permission)
allows removing a permission.
|
void |
Authorization.setPermissions(Permission[] permissions)
Sets the permissions to the provided value.
|
Modifier and Type | Method and Description |
---|---|
AuthorizationQuery |
AuthorizationQueryImpl.hasPermission(Permission p) |
boolean |
AuthorizationServiceImpl.isUserAuthorized(String userId,
List<String> groupIds,
Permission permission,
Resource resource) |
boolean |
AuthorizationServiceImpl.isUserAuthorized(String userId,
List<String> groupIds,
Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Field and Description |
---|---|
protected Permission |
ProcessEngineConfigurationImpl.defaultUserPermissionForTask |
Modifier and Type | Method and Description |
---|---|
Permission |
ProcessEngineConfigurationImpl.getDefaultUserPermissionForTask() |
Modifier and Type | Method and Description |
---|---|
ProcessEngineConfigurationImpl |
ProcessEngineConfigurationImpl.setDefaultUserPermissionForTask(Permission defaultUserPermissionForTask) |
Modifier and Type | Method and Description |
---|---|
protected Permission |
DefaultAuthorizationProvider.getDefaultUserPermissionForTask() |
Modifier and Type | Method and Description |
---|---|
protected AuthorizationEntity |
DefaultAuthorizationProvider.createGrantAuthorization(String userId,
String groupId,
Resource resource,
String resourceId,
Permission... permissions) |
protected AuthorizationEntity |
DefaultAuthorizationProvider.updateAuthorization(AuthorizationEntity authorization,
String userId,
String groupId,
Resource resource,
String resourceId,
Permission... permissions) |
Modifier and Type | Field and Description |
---|---|
protected Permission |
AuthorizationCheckCmd.permission |
Constructor and Description |
---|
AuthorizationCheckCmd(String userId,
List<String> groupIds,
Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Field and Description |
---|---|
protected Permission |
PermissionCheck.permission
the permission to check for
|
Modifier and Type | Method and Description |
---|---|
Permission |
PermissionCheck.getPermission() |
Modifier and Type | Method and Description |
---|---|
PermissionCheckBuilder |
PermissionCheckBuilder.atomicCheck(Resource resource,
String queryParam,
Permission permission) |
PermissionCheckBuilder |
PermissionCheckBuilder.atomicCheckForResourceId(Resource resource,
String resourceId,
Permission permission) |
void |
PermissionCheck.setPermission(Permission permission) |
Modifier and Type | Method and Description |
---|---|
protected void |
DbReadOnlyIdentityServiceProvider.checkAuthorization(Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractManager.checkAuthorization(Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Method and Description |
---|---|
Permission[] |
AuthorizationEntity.getPermissions(Permission[] permissions) |
Modifier and Type | Method and Description |
---|---|
void |
AuthorizationEntity.addPermission(Permission p) |
protected void |
AuthorizationManager.addPermissionCheck(ListQueryParameterObject query,
Resource resource,
String queryParam,
Permission permission) |
void |
AuthorizationManager.checkAuthorization(Permission permission,
Resource resource) |
void |
AuthorizationManager.checkAuthorization(Permission permission,
Resource resource,
String resourceId) |
void |
AuthorizationManager.configureQuery(AbstractQuery query,
Resource resource,
String queryParam,
Permission permission) |
Permission[] |
AuthorizationEntity.getPermissions(Permission[] permissions) |
boolean |
AuthorizationManager.isAuthorized(Permission permission,
Resource resource,
String resourceId) |
boolean |
AuthorizationManager.isAuthorized(String userId,
List<String> groupIds,
Permission permission,
Resource resource,
String resourceId) |
boolean |
AuthorizationEntity.isPermissionGranted(Permission p) |
boolean |
AuthorizationEntity.isPermissionRevoked(Permission p) |
void |
AuthorizationEntity.removePermission(Permission p) |
void |
AuthorizationEntity.setPermissions(Permission[] permissions) |
Modifier and Type | Method and Description |
---|---|
static Permission[] |
PermissionConverter.getAllPermissions() |
static Permission |
PermissionConverter.getPermissionForName(String name) |
static Permission[] |
PermissionConverter.getPermissionsForNames(String[] names) |
Modifier and Type | Method and Description |
---|---|
static String[] |
PermissionConverter.getNamesForPermissions(Authorization authorization,
Permission[] permissions) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractAuthorizedRestResource.isAuthorized(Permission permission) |
protected boolean |
AbstractAuthorizedRestResource.isAuthorized(Permission permission,
Resource resource) |
protected boolean |
AbstractAuthorizedRestResource.isAuthorized(Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Class and Description |
---|---|
class |
AuthorizationUtil |
Modifier and Type | Method and Description |
---|---|
protected boolean |
LdapIdentityProviderSession.isAuthorized(Permission permission,
Resource resource,
String resourceId) |
Modifier and Type | Method and Description |
---|---|
protected void |
AuthorizationPerformanceTestCase.grouptGrant(String groupId,
Resource resource,
Permission... perms) |
protected void |
AuthorizationPerformanceTestCase.userGrant(String userId,
Resource resource,
Permission... perms) |
Modifier and Type | Method and Description |
---|---|
protected static Authorization |
AuthorizationScenario.createAuthorization(AuthorizationService authorizationService,
Permission permission,
Resources resource,
String userId) |
Copyright © 2017. All rights reserved.