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 Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum 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 Summary
Modifier and TypeMethodDescriptionint
Return the code for this enum instanceReturn the default description for the type for this enum instance.Return the default name for this enum instance.static GovernanceEngineStatus
Returns 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
-
ASSIGNED
The governance engine is assigned to the engine host server but has not yet been configured. -
CONFIGURING
The governance engine is retrieving its configuration from the metadata server. -
RUNNING
The governance engine is operational and able to service all defined governance requests on demand. -
FAILED
The governance engine is unable to run successfully due to an error in its configuration. -
DISABLED
The governance engine has been disabled. It is waiting to be enabled before it can service any more governance requests.
-
-
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
-
getOrdinal
public int getOrdinal()Return the code for this enum instance- Returns:
- int type code
-
getStatusName
Return the default name for this enum instance.- Returns:
- String default name
-
getStatusDescription
Return the default description for the type for this enum instance.- Returns:
- String default description
-