public enum ProcessInstancePermissions extends Enum<ProcessInstancePermissions> implements Permission
Permissions
for Process instances
in Camunda BPM.Enum Constant and Description |
---|
ALL
Indicates that all interactions are permitted.
|
CREATE
Indicates that CREATE interactions are permitted.
|
DELETE
Indicates that DELETE interactions are permitted.
|
NONE
The none permission means 'no action', 'doing nothing'.
|
READ
Indicates that READ interactions are permitted.
|
RETRY_JOB
Indicates that RETRY_JOB interactions are permitted.
|
SUSPEND
Indicates that SUSPEND interactions are permitted.
|
UPDATE
Indicates that UPDATE interactions are permitted.
|
UPDATE_VARIABLE
Indicates that UPDATE_VARIABLE interactions are permitted.
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
returns the name of the permission, ie.
|
Resource[] |
getTypes()
returns the resource types which are allowed for this permission
|
int |
getValue()
returns the unique numeric value of the permission.
|
static ProcessInstancePermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessInstancePermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessInstancePermissions NONE
public static final ProcessInstancePermissions ALL
public static final ProcessInstancePermissions READ
public static final ProcessInstancePermissions UPDATE
public static final ProcessInstancePermissions CREATE
public static final ProcessInstancePermissions DELETE
public static final ProcessInstancePermissions RETRY_JOB
public static final ProcessInstancePermissions SUSPEND
public static final ProcessInstancePermissions UPDATE_VARIABLE
public static ProcessInstancePermissions[] values()
for (ProcessInstancePermissions c : ProcessInstancePermissions.values()) System.out.println(c);
public static ProcessInstancePermissions valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getName()
Permission
getName
in interface Permission
public int getValue()
Permission
getValue
in interface Permission
public Resource[] getTypes()
Permission
getTypes
in interface Permission
Copyright © 2022. All rights reserved.