Class OperationProviderErrorEvent
- java.lang.Object
-
- Event
-
- ComponentEvent
-
- OperationEvent
-
- OperationErrorEvent
-
- OperationProviderErrorEvent
-
public class OperationProviderErrorEvent extends OperationErrorEvent
Class that defines a Provider Error on a particular operation.When using the component-oriented event API, this class is fired with an event-type-name of
com.opencloud.slee.resources.cgin.OperationError
for any operation provider error.When using the messsage-oriented event API, this class is used as a component of a DialogMessageEvent for provider errors that result from receiving a network message. In the special case of an invoke timeout, which is a local timeout that does not result from receiving a network message, an OperationProviderErrorEvent is fired using the OperationInvokeTimeout event type.
-
-
Field Summary
Fields Modifier and Type Field Description static EventTypeID
INVOKE_TIMEOUT_ID
Common event type used when firing an OperationProviderErrorEvent to the SLEE when using the message-oriented event API.-
Fields inherited from class com.opencloud.slee.resources.cgin.OperationErrorEvent
ID
-
-
Constructor Summary
Constructors Constructor Description OperationProviderErrorEvent(Dialog dialog, TcapOperation operation, int invokeId, ProviderErrorReason reason, RejectProblem rejectProblem)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProviderErrorReason
getReason()
RejectProblem
getRejectProblem()
String
toString()
-
Methods inherited from class com.opencloud.slee.resources.cgin.OperationEvent
getInvokeId, getOperationInfo
-
-
-
-
Field Detail
-
INVOKE_TIMEOUT_ID
public static final EventTypeID INVOKE_TIMEOUT_ID
Common event type used when firing an OperationProviderErrorEvent to the SLEE when using the message-oriented event API. This event is fired only for invoke timeouts (i.e. a reason code ofNO_RESPONSE
orNO_LINKED_RESPONSE
)- Name: com.opencloud.slee.resources.cgin.OperationInvokeTimeout
- Vendor: OpenCloud
- Version: 3.1
-
-
Constructor Detail
-
OperationProviderErrorEvent
public OperationProviderErrorEvent(Dialog dialog, TcapOperation operation, int invokeId, ProviderErrorReason reason, RejectProblem rejectProblem)
-
-
Method Detail
-
getReason
public ProviderErrorReason getReason()
-
getRejectProblem
public RejectProblem getRejectProblem()
-
-