Enum OptimizePermissions
- java.lang.Object
-
- java.lang.Enum<OptimizePermissions>
-
- org.camunda.bpm.engine.authorization.OptimizePermissions
-
- All Implemented Interfaces:
Serializable
,Comparable<OptimizePermissions>
,Permission
@Deprecated public enum OptimizePermissions extends Enum<OptimizePermissions> implements Permission
Deprecated.These permissions have no effectThe set of built-inPermissions
forOptimize resource
in Camunda Platform.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
Deprecated.Indicates that all interactions are permitted.EDIT
Deprecated.Indicates that EDIT interactions are permitted.NONE
Deprecated.The none permission means 'no action', 'doing nothing'.SHARE
Deprecated.Indicates that SHARE interactions are permitted.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getName()
Deprecated.returns the name of the permission, ie.Resource[]
getTypes()
Deprecated.returns the resource types which are allowed for this permissionint
getValue()
Deprecated.returns the unique numeric value of the permission.static OptimizePermissions
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static OptimizePermissions[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OptimizePermissions NONE
Deprecated.The none permission means 'no action', 'doing nothing'. It does not mean that no permissions are granted.
-
ALL
public static final OptimizePermissions ALL
Deprecated.Indicates that all interactions are permitted. If ALL is revoked it means that the user is not permitted to do everything, which means that at least one permission is revoked. This does not implicate that all individual permissions are revoked. Example: If the EDIT permission is revoked then the ALL permission is revoked as well, because the user is not authorized to execute all actions anymore.
-
EDIT
public static final OptimizePermissions EDIT
Deprecated.Indicates that EDIT interactions are permitted.
-
SHARE
public static final OptimizePermissions SHARE
Deprecated.Indicates that SHARE interactions are permitted.
-
-
Method Detail
-
values
public static OptimizePermissions[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OptimizePermissions c : OptimizePermissions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OptimizePermissions valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
public String getName()
Deprecated.Description copied from interface:Permission
returns the name of the permission, ie. 'UPDATE'- Specified by:
getName
in interfacePermission
-
getValue
public int getValue()
Deprecated.Description copied from interface:Permission
returns the unique numeric value of the permission. Must be a power of 2. ie 2^0, 2^1, 2^2, 2^3, 2^4 ...- Specified by:
getValue
in interfacePermission
-
getTypes
public Resource[] getTypes()
Deprecated.Description copied from interface:Permission
returns the resource types which are allowed for this permission- Specified by:
getTypes
in interfacePermission
-
-