Package org.keycloak.cluster
Enum Class ClusterProvider.DCNotify
- All Implemented Interfaces:
Serializable
,Comparable<ClusterProvider.DCNotify>
,Constable
- Enclosing interface:
- ClusterProvider
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSend message to all cluster nodes in all datacenters, but NOT to this datacenter.Send message to all cluster nodes in all DCsSend message to all cluster nodes on THIS datacenter only -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterProvider.DCNotify
Returns the enum constant of this class with the specified name.static ClusterProvider.DCNotify[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL_DCS
Send message to all cluster nodes in all DCs -
LOCAL_DC_ONLY
Send message to all cluster nodes on THIS datacenter only -
ALL_BUT_LOCAL_DC
Send message to all cluster nodes in all datacenters, but NOT to this datacenter. Option "ignoreSender" of methodObject.notify()
will be ignored as sender is ignored anyway due it is in this datacenter
-
-
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
-