Package com.mayam.wf.siteconfig
Enum Class SiteConfig.BpmnEditorMode
- All Implemented Interfaces:
Serializable
,Comparable<SiteConfig.BpmnEditorMode>
,Constable
- Enclosing class:
SiteConfig
Determines if the BPMN Editor is available (given that bpms.enabled is also true).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhile the process engine itself may be running, the editor is not available - even to administrators.Editor is available to administrators.The editor can only be used to look at deployed or previously deployed process definitions andd their instances. -
Method Summary
Modifier and TypeMethodDescriptionvalue()
static SiteConfig.BpmnEditorMode
Returns the enum constant of this class with the specified name.static SiteConfig.BpmnEditorMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ENABLED
Editor is available to administrators. -
DISABLED
While the process engine itself may be running, the editor is not available - even to administrators. -
LOCKED_DOWN
The editor can only be used to look at deployed or previously deployed process definitions andd their instances. This is typically used with production systems on sites where processes are only exclusively developed and tested on the staging system.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
-