public enum CstaErrorCause extends java.lang.Enum<CstaErrorCause>
Enum Constant and Description |
---|
ApplicationSession
CSTA Application Session
|
Configuration
Configuration problem.
|
DemarshallingError
SDK fails to demarshall XML(CSTA Responses/Events)
|
MalformedUrlError
SDK fails to encapsulate XML(CSTA Requests)
|
NetworkFailure
All possible network failures.
|
OperationFailure
SDK fails to perform the operation.
|
SOAPException
For SOAP/HTTP connection use only
|
Timeout
If there is no response for a sent request within 9 seconds, it times out.
|
UnsupportedOperation
For SOAP/HTTP connection use only
|
Modifier and Type | Method and Description |
---|---|
static CstaErrorCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CstaErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CstaErrorCause Timeout
public static final CstaErrorCause OperationFailure
public static final CstaErrorCause NetworkFailure
public static final CstaErrorCause DemarshallingError
public static final CstaErrorCause MalformedUrlError
public static final CstaErrorCause SOAPException
public static final CstaErrorCause UnsupportedOperation
public static final CstaErrorCause Configuration
public static final CstaErrorCause ApplicationSession
public static CstaErrorCause[] values()
for (CstaErrorCause c : CstaErrorCause.values()) System.out.println(c);
public static CstaErrorCause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null