Enum Class GovernanceServerEventType
java.lang.Object
java.lang.Enum<GovernanceServerEventType>
org.odpi.openmetadata.accessservices.governanceserver.events.GovernanceServerEventType
- All Implemented Interfaces:
Serializable
,Comparable<GovernanceServerEventType>
,Constable
GovernanceServerEventType describes the different types of events produced by the Governance Server OMAS.
Events are used to configure the Integration Daemon and Engine Host governance servers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNew request to run a governance service.The configuration for a Governance Engine has changed.The configuration for a governance service has changed.The configuration for an integration connector has changed.The configuration for an Integration Group has changed.New request to run a governance service.An event that is not recognized by the local server. -
Method Summary
Modifier and TypeMethodDescriptionint
Return the int identifier used for indexing based on the enum.Return the default description for the enum value - used when natural resource bundle is not available.Return the string name used for messages that include the enum.toString()
JSON-style toStringstatic GovernanceServerEventType
Returns the enum constant of this class with the specified name.static GovernanceServerEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN_GOVERNANCE_SERVER_EVENT
An event that is not recognized by the local server. -
REFRESH_GOVERNANCE_ENGINE_EVENT
The configuration for a Governance Engine has changed. -
REFRESH_GOVERNANCE_SERVICE_EVENT
The configuration for a governance service has changed. -
REFRESH_INTEGRATION_GROUP_EVENT
The configuration for an Integration Group has changed. -
REFRESH_INTEGRATION_CONNECTOR_EVENT
The configuration for an integration connector has changed. -
REQUESTED_ENGINE_ACTION_EVENT
New request to run a governance service. -
CANCELLED_ENGINE_ACTION_EVENT
New request to run a governance service.
-
-
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
-
getEventTypeCode
public int getEventTypeCode()Return the int identifier used for indexing based on the enum.- Returns:
- int identifier code
-
getEventTypeName
Return the string name used for messages that include the enum.- Returns:
- String name
-
getEventTypeDescription
Return the default description for the enum value - used when natural resource bundle is not available.- Returns:
- String default description
-
toString
JSON-style toString- Overrides:
toString
in classEnum<GovernanceServerEventType>
- Returns:
- return string containing the property names and values
-