Enum OpenRefuseReason
- java.lang.Object
-
- java.lang.Enum<OpenRefuseReason>
-
- OpenRefuseReason
-
- All Implemented Interfaces:
Serializable
,Comparable<OpenRefuseReason>
public enum OpenRefuseReason extends Enum<OpenRefuseReason>
Enumeration of reasons for an open refuse.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTERNAL_ERROR
Internal errorPROTOCOL_ERROR
Protocol error (e.g.PROVIDER_ABORT
TC-ABORT with a pAbortCausePROVIDER_NO_COMMON_DIALOGUE_PORTION
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider:no-common-dialogue-portionPROVIDER_NO_REASON_GIVEN
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider:no-reason-given or nullPROVIDER_OTHER
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider: (anything else)REMOTE_NODE_UNREACHABLE
TC-NOTICE informing us a SCCP message could not be sentTIMEOUT
No response to a TC-BEGIN was received within the configured open timeout, or an operation invoke sent in the TC-BEGIN timed out before a response to the TC-BEGIN was received.USER_ACN_NOT_SUPPORTED
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user:application-context-name-not-supportedUSER_NO_REASON_GIVEN
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user:no-reason-given or nullUSER_OTHER
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user: (anything else) or TC-ABORT with no dialogue portion
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OpenRefuseReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static OpenRefuseReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNAL_ERROR
public static final OpenRefuseReason INTERNAL_ERROR
Internal error
-
PROTOCOL_ERROR
public static final OpenRefuseReason PROTOCOL_ERROR
Protocol error (e.g. unparseable dialogue portion)
-
PROVIDER_ABORT
public static final OpenRefuseReason PROVIDER_ABORT
TC-ABORT with a pAbortCause
-
PROVIDER_NO_COMMON_DIALOGUE_PORTION
public static final OpenRefuseReason PROVIDER_NO_COMMON_DIALOGUE_PORTION
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider:no-common-dialogue-portion
-
PROVIDER_NO_REASON_GIVEN
public static final OpenRefuseReason PROVIDER_NO_REASON_GIVEN
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider:no-reason-given or null
-
PROVIDER_OTHER
public static final OpenRefuseReason PROVIDER_OTHER
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider: (anything else)
-
USER_ACN_NOT_SUPPORTED
public static final OpenRefuseReason USER_ACN_NOT_SUPPORTED
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user:application-context-name-not-supported
-
USER_NO_REASON_GIVEN
public static final OpenRefuseReason USER_NO_REASON_GIVEN
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user:no-reason-given or null
-
USER_OTHER
public static final OpenRefuseReason USER_OTHER
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user: (anything else) or TC-ABORT with no dialogue portion
-
REMOTE_NODE_UNREACHABLE
public static final OpenRefuseReason REMOTE_NODE_UNREACHABLE
TC-NOTICE informing us a SCCP message could not be sent
-
TIMEOUT
public static final OpenRefuseReason TIMEOUT
No response to a TC-BEGIN was received within the configured open timeout, or an operation invoke sent in the TC-BEGIN timed out before a response to the TC-BEGIN was received.
-
-
Method Detail
-
values
public static OpenRefuseReason[] 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 (OpenRefuseReason c : OpenRefuseReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpenRefuseReason 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
-
-