Enum Class GovernanceEngineStatus
java.lang.Object
java.lang.Enum<GovernanceEngineStatus>
org.odpi.openmetadata.governanceservers.enginehostservices.properties.GovernanceEngineStatus
- All Implemented Interfaces:
- Serializable,- Comparable<GovernanceEngineStatus>,- Constable
GovernanceEngineStatus defines the status of a governance engine.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe governance engine is assigned to the engine host server but has not yet been configured.The governance engine is retrieving its configuration from the metadata server.The governance engine has been disabled.The governance engine is unable to run successfully due to an error in its configuration.The governance engine is operational and able to service all defined governance requests on demand.
- 
Method SummaryModifier and TypeMethodDescriptionintReturn the code for this enum instanceReturn the default description for the type for this enum instance.Return the default name for this enum instance.toString()toString() JSON-stylestatic GovernanceEngineStatusReturns the enum constant of this class with the specified name.static GovernanceEngineStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
ASSIGNEDThe governance engine is assigned to the engine host server but has not yet been configured.
- 
CONFIGURINGThe governance engine is retrieving its configuration from the metadata server.
- 
RUNNINGThe governance engine is operational and able to service all defined governance requests on demand.
- 
FAILEDThe governance engine is unable to run successfully due to an error in its configuration.
- 
DISABLEDThe governance engine has been disabled. It is waiting to be enabled before it can service any more governance requests.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
- 
getOrdinalpublic int getOrdinal()Return the code for this enum instance- Returns:
- int type code
 
- 
getStatusNameReturn the default name for this enum instance.- Returns:
- String default name
 
- 
getStatusDescriptionReturn the default description for the type for this enum instance.- Returns:
- String default description
 
- 
toStringtoString() JSON-style- Overrides:
- toStringin class- Enum<GovernanceEngineStatus>
- Returns:
- string description
 
 
-