Package org.openiam.mq.constants
Enum RabbitMqExchange
- java.lang.Object
-
- java.lang.Enum<RabbitMqExchange>
-
- org.openiam.mq.constants.RabbitMqExchange
-
- All Implemented Interfaces:
Serializable
,Comparable<RabbitMqExchange>
public enum RabbitMqExchange extends Enum<RabbitMqExchange>
- Author:
- Alexander Dukkardt
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getType()
boolean
isAutoDelete()
boolean
isDelayed()
boolean
isDurable()
static RabbitMqExchange
valueOf(String name)
Returns the enum constant of this type with the specified name.static RabbitMqExchange[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMON_EXCHANGE
public static final RabbitMqExchange COMMON_EXCHANGE
-
AM_EXCHANGE
public static final RabbitMqExchange AM_EXCHANGE
-
PROPERTY_VALUE_CACHE_EXCAHNGE
public static final RabbitMqExchange PROPERTY_VALUE_CACHE_EXCAHNGE
-
REFRESH_OAUTH_CACHE_EXCHANGE
public static final RabbitMqExchange REFRESH_OAUTH_CACHE_EXCHANGE
-
URI_FEDERATION_CACHE_EXCHANGE
public static final RabbitMqExchange URI_FEDERATION_CACHE_EXCHANGE
-
AM_CACHE_EXCHANGE
public static final RabbitMqExchange AM_CACHE_EXCHANGE
-
ACTIVITI_EXCHANGE
public static final RabbitMqExchange ACTIVITI_EXCHANGE
-
AUDIT_EXCHANGE
public static final RabbitMqExchange AUDIT_EXCHANGE
-
IDM_EXCHANGE
public static final RabbitMqExchange IDM_EXCHANGE
-
SYNCHRONIZATION_EXCHANGE
public static final RabbitMqExchange SYNCHRONIZATION_EXCHANGE
-
RECONCILIATION_EXCHANGE
public static final RabbitMqExchange RECONCILIATION_EXCHANGE
-
SOURCE_ADAPTER
public static final RabbitMqExchange SOURCE_ADAPTER
-
CONNECTOR_EXCHANGE
public static final RabbitMqExchange CONNECTOR_EXCHANGE
-
CONNECTOR_BROADCAST_EXCHANGE
public static final RabbitMqExchange CONNECTOR_BROADCAST_EXCHANGE
-
BUSINESS_RULE_CACHE_EXCHANGE
public static final RabbitMqExchange BUSINESS_RULE_CACHE_EXCHANGE
-
BUSINESS_RULE_EXCHANGE
public static final RabbitMqExchange BUSINESS_RULE_EXCHANGE
-
ELASTIC_SEARCH_EXCHANGE
public static final RabbitMqExchange ELASTIC_SEARCH_EXCHANGE
-
USER_EXCHANGE
public static final RabbitMqExchange USER_EXCHANGE
-
GROOVY_MANAGER
public static final RabbitMqExchange GROOVY_MANAGER
-
EXT_LOG_EXCHANGE
public static final RabbitMqExchange EXT_LOG_EXCHANGE
-
DEVICE_EXCHANGE
public static final RabbitMqExchange DEVICE_EXCHANGE
-
PASSWORD_DICTIONARY_CACHE_EXCHANGE
public static final RabbitMqExchange PASSWORD_DICTIONARY_CACHE_EXCHANGE
-
SAS_AUTH_EXCHANGE
public static final RabbitMqExchange SAS_AUTH_EXCHANGE
-
BATCH_TASK_EXCHANGE
public static final RabbitMqExchange BATCH_TASK_EXCHANGE
-
-
Method Detail
-
values
public static RabbitMqExchange[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RabbitMqExchange c : RabbitMqExchange.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RabbitMqExchange valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getType
public String getType()
- Returns:
- the type
-
isDurable
public boolean isDurable()
-
isAutoDelete
public boolean isAutoDelete()
-
isDelayed
public boolean isDelayed()
-
-