org.opends.server.admin.std.meta
Enum GlobalCfgDefn.WorkflowConfigurationMode

java.lang.Object
  extended by java.lang.Enum<GlobalCfgDefn.WorkflowConfigurationMode>
      extended by org.opends.server.admin.std.meta.GlobalCfgDefn.WorkflowConfigurationMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GlobalCfgDefn.WorkflowConfigurationMode>
Enclosing class:
GlobalCfgDefn

public static enum GlobalCfgDefn.WorkflowConfigurationMode
extends java.lang.Enum<GlobalCfgDefn.WorkflowConfigurationMode>

Defines the set of permissable values for the "workflow-configuration-mode" property.

Specifies the workflow configuration mode (auto vs. manual).


Enum Constant Summary
AUTO
          In the "auto" configuration mode, there is no workflow configuration.
MANUAL
          In the "manual" configuration mode, each workflow is created according to its description in the configuration.
 
Method Summary
 java.lang.String toString()
          
static GlobalCfgDefn.WorkflowConfigurationMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GlobalCfgDefn.WorkflowConfigurationMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AUTO

public static final GlobalCfgDefn.WorkflowConfigurationMode AUTO
In the "auto" configuration mode, there is no workflow configuration. The workflows are created automatically based on the backend configuration. There is one workflow per backend base DN.


MANUAL

public static final GlobalCfgDefn.WorkflowConfigurationMode MANUAL
In the "manual" configuration mode, each workflow is created according to its description in the configuration.

Method Detail

values

public static GlobalCfgDefn.WorkflowConfigurationMode[] 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 (GlobalCfgDefn.WorkflowConfigurationMode c : GlobalCfgDefn.WorkflowConfigurationMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GlobalCfgDefn.WorkflowConfigurationMode 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

toString

public java.lang.String toString()

Overrides:
toString in class java.lang.Enum<GlobalCfgDefn.WorkflowConfigurationMode>