Enum Class OMRSEventCategory
- All Implemented Interfaces:
Serializable
,Comparable<OMRSEventCategory>
,Constable
OMRSEventCategory defines the different categories of events that pass through the OMRS Topic.
- UNKNOWN: this is either an uninitialized event, or the incoming event is not supported by the local server.
- REGISTRY: this is an event used by the cohort registries to manage the membership of the cohort.
- TYPEDEF: this is an event used by the metadata repository connectors to synchronize the metadata types (stored in TypeDefs) across the metadata repository cohort.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionGeneric Event - Event used for sending generic messages, typically error messages.Instance Event - Event used to manage the replication of metadata instances within the metadata repository cohort.Registry Event - Event used to manage the membership of the metadata repository cohort.TypeDef Event - Event used to manage the synchronization of TypeDefs within the metadata repository cohort.Unknown Event - Unknown event category. -
Method Summary
Modifier and TypeMethodDescriptionReturn the default description of the event category.getName()
Return the name of the event category.int
Return the code number for the event category.toString()
toString() JSON-stylestatic OMRSEventCategory
Returns the enum constant of this class with the specified name.static OMRSEventCategory[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Unknown Event - Unknown event category. -
REGISTRY
Registry Event - Event used to manage the membership of the metadata repository cohort. -
TYPEDEF
TypeDef Event - Event used to manage the synchronization of TypeDefs within the metadata repository cohort. -
INSTANCE
Instance Event - Event used to manage the replication of metadata instances within the metadata repository cohort. -
GENERIC
Generic Event - Event used for sending generic messages, typically error messages.
-
-
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 number for the event category.- Returns:
- int code number
-
getName
Return the name of the event category.- Returns:
- String name
-
getDescription
Return the default description of the event category. This description is in English and is a default value for the situation when the natural language resource bundle for Event Category is not available.- Returns:
- String default description
-
toString
toString() JSON-style- Overrides:
toString
in classEnum<OMRSEventCategory>
- Returns:
- string description
-