Package com.bea.wli.sb.transports
Class EndPointOperations
java.lang.Object
com.bea.wli.sb.transports.EndPointOperations
This class describes different types of transport endpoint lifecycle-related
events that the transport provider gets notified with.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
This is base class for all end point operations.static interface
Represents an event when a new transport endpoint is being registeredstatic interface
Represents an event when an existing endpoint needs to be completely deletedstatic enum
A Java enumeration type that describes different endpoint operationsstatic interface
Represents an event when an existing endpoint in suspended or disabled state needs to be resumed (or re-enabled)static interface
Represents an event when an existing operational endpoint needs to be put in a suspended or disabled statestatic interface
Represents an event when a an existing transport endpoint is updated with a new configuration. -
Method Summary
Modifier and TypeMethodDescriptionstatic EndPointOperations.Create
utility method to get a "Create" operation context from "Update" operation This is typically used when a transport provider chooses to handle "Update" lifecycle event as a "delete" immediately followed by "create"static EndPointOperations.Delete
utility method to get a "Delete" operation context from an "Update" operation.
-
Method Details
-
getDeleteFromUpdate
utility method to get a "Delete" operation context from an "Update" operation. This is typically used when a transport provider chooses to handle "Update" lifecycle event as a "delete" immediately followed by "create"- Parameters:
context
- the Update operation- Returns:
- Delete operation based on Update operation
-
getCreateFromUpdate
utility method to get a "Create" operation context from "Update" operation This is typically used when a transport provider chooses to handle "Update" lifecycle event as a "delete" immediately followed by "create"- Parameters:
context
- the Update operation- Returns:
- Create operation based on Update operation
-