Enum Class SiteConfig.BpmnEditorMode

java.lang.Object
java.lang.Enum<SiteConfig.BpmnEditorMode>
com.mayam.wf.siteconfig.SiteConfig.BpmnEditorMode
All Implemented Interfaces:
Serializable, Comparable<SiteConfig.BpmnEditorMode>, Constable
Enclosing class:
SiteConfig

public static enum SiteConfig.BpmnEditorMode extends Enum<SiteConfig.BpmnEditorMode>
Determines if the BPMN Editor is available (given that bpms.enabled is also true).
  • Enum Constant Details

    • ENABLED

      public static final SiteConfig.BpmnEditorMode ENABLED
      Editor is available to administrators.
    • DISABLED

      public static final SiteConfig.BpmnEditorMode DISABLED
      While the process engine itself may be running, the editor is not available - even to administrators.
    • LOCKED_DOWN

      public static final SiteConfig.BpmnEditorMode 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

      public static SiteConfig.BpmnEditorMode[] 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

      public static SiteConfig.BpmnEditorMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()