Enum Resources
- java.lang.Object
- 
- java.lang.Enum<Resources>
- 
- org.camunda.bpm.engine.authorization.Resources
 
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description APPLICATIONAUTHORIZATIONBATCHDASHBOARDDECISION_DEFINITIONDECISION_REQUIREMENTS_DEFINITIONDEPLOYMENTFILTERGROUPGROUP_MEMBERSHIPHISTORIC_PROCESS_INSTANCEHISTORIC_TASKOPERATION_LOG_CATEGORYOPTIMIZEDeprecated.PROCESS_DEFINITIONPROCESS_INSTANCEREPORTSYSTEMTASKTENANTTENANT_MEMBERSHIPUSER
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringresourceName()returns the name of the resourceintresourceType()an integer representing the type of the resource.static ResourcesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Resources[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
APPLICATIONpublic static final Resources APPLICATION 
 - 
USERpublic static final Resources USER 
 - 
GROUPpublic static final Resources GROUP 
 - 
GROUP_MEMBERSHIPpublic static final Resources GROUP_MEMBERSHIP 
 - 
AUTHORIZATIONpublic static final Resources AUTHORIZATION 
 - 
FILTERpublic static final Resources FILTER 
 - 
PROCESS_DEFINITIONpublic static final Resources PROCESS_DEFINITION 
 - 
TASKpublic static final Resources TASK 
 - 
PROCESS_INSTANCEpublic static final Resources PROCESS_INSTANCE 
 - 
DEPLOYMENTpublic static final Resources DEPLOYMENT 
 - 
DECISION_DEFINITIONpublic static final Resources DECISION_DEFINITION 
 - 
TENANTpublic static final Resources TENANT 
 - 
TENANT_MEMBERSHIPpublic static final Resources TENANT_MEMBERSHIP 
 - 
BATCHpublic static final Resources BATCH 
 - 
DECISION_REQUIREMENTS_DEFINITIONpublic static final Resources DECISION_REQUIREMENTS_DEFINITION 
 - 
REPORTpublic static final Resources REPORT 
 - 
DASHBOARDpublic static final Resources DASHBOARD 
 - 
OPERATION_LOG_CATEGORYpublic static final Resources OPERATION_LOG_CATEGORY 
 - 
OPTIMIZE@Deprecated public static final Resources OPTIMIZE Deprecated.
 - 
HISTORIC_TASKpublic static final Resources HISTORIC_TASK 
 - 
HISTORIC_PROCESS_INSTANCEpublic static final Resources HISTORIC_PROCESS_INSTANCE 
 - 
SYSTEMpublic static final Resources SYSTEM 
 
- 
 - 
Method Detail- 
valuespublic static Resources[] values() 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 (Resources c : Resources.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Resources valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
resourceNamepublic java.lang.String resourceName() Description copied from interface:Resourcereturns the name of the resource- Specified by:
- resourceNamein interface- Resource
 
 - 
resourceTypepublic int resourceType() Description copied from interface:Resourcean integer representing the type of the resource.- Specified by:
- resourceTypein interface- Resource
- Returns:
- the type identitfyer of the resource
 
 
- 
 
-