public enum OpenRefuseReason extends Enum<OpenRefuseReason>
Enum Constant and Description |
---|
INTERNAL_ERROR
Internal error
|
PROTOCOL_ERROR
Protocol error (e.g.
|
PROVIDER_ABORT
TC-ABORT with a pAbortCause
|
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
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-provider:no-reason-given or null
|
PROVIDER_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 sent
|
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.
|
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
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user:no-reason-given or null
|
USER_OTHER
TC-ABORT with result = reject-permanent and result-source-diagnostic = dialogue-service-user: (anything else)
or TC-ABORT with no dialogue portion
|
Modifier and Type | Method and 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.
|
public static final OpenRefuseReason INTERNAL_ERROR
public static final OpenRefuseReason PROTOCOL_ERROR
public static final OpenRefuseReason PROVIDER_ABORT
public static final OpenRefuseReason PROVIDER_NO_COMMON_DIALOGUE_PORTION
public static final OpenRefuseReason PROVIDER_NO_REASON_GIVEN
public static final OpenRefuseReason PROVIDER_OTHER
public static final OpenRefuseReason USER_ACN_NOT_SUPPORTED
public static final OpenRefuseReason USER_NO_REASON_GIVEN
public static final OpenRefuseReason USER_OTHER
public static final OpenRefuseReason REMOTE_NODE_UNREACHABLE
public static final OpenRefuseReason TIMEOUT
public static OpenRefuseReason[] values()
for (OpenRefuseReason c : OpenRefuseReason.values()) System.out.println(c);
public static OpenRefuseReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null