Package com.bea.wli.sb.transports
Class TransportOptions
java.lang.Object
com.bea.wli.sb.transports.TransportOptions
Used to supply options for sending or receiving a message.
Possibly other usages in the future.
There are two styles for using TransportOptions: multi-line setup,
and single-line use.
Here are two examples. First, multi-line style:
TransportOptions opts = new TransportOptions(); opts.setQoS(EXACTLY_ONCE); opts.setThrowOnError(true);The alternative is single-line usage:
new TransportOptions().setQoS(EXACTLY_ONCE).setThrowOnError()));
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
static enum
static enum
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Deprecated.use Option.URIstatic final String
Deprecated.use Option.BLOCKING_THROTTLINGstatic final String
Deprecated.use Option.CONTENT_STREAMINGstatic final int
static final String
Deprecated.use Option.INBOUND_ENDPOINTstatic final String
Deprecated.use Option.MESSAGE_PRIORITYstatic final String
Deprecated.use Option.MODEstatic final String
Deprecated.use Option.OPAQUE_DATAstatic final String
Deprecated.use Option.OPERATION_NAMEstatic final String
Deprecated.use Option.QOSstatic final String
Deprecated.use Option.REPLY_SYNCstatic final String
Deprecated.use Option.REPLY_WITH_FAILUREstatic final String
Deprecated.use Option.RETRY_COUNTstatic final String
Deprecated.use Option.RETRY_INTERVALstatic final String
Deprecated.use Option.THROW_ON_ERROR -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionget
(TransportOptions.Option option) int
getMode()
getQoS()
int
int
getURI()
boolean
hasOption
(TransportOptions.Option option) static boolean
hasOption
(TransportOptions options, Object option) utility methodboolean
boolean
boolean
boolean
boolean
boolean
put
(TransportOptions.Option option) set the value of the option with a given key to specified valueset the value of the option with a given key to specified valueremove
(TransportOptions.Option option) delete of the option with a given keyvoid
delete of the option with a given keystatic Object
safeGet
(TransportOptions options, Object option) utility methodsetMessagePriority
(int priority) specifies the type of the message being processed by OSB - one-way or request/response.setOpaqueData
(Map<String, Object> data) Stores opaque (i.e.setOperationName
(String val) specifies the name of the Web Service operation, when applicable for outbound requests.specifies whether or not "exactly-once" qualify of service can be achieved.setRetryCount
(int val) specifies the retry count is to used in case of delivery failure when sending outbound requests via a transport provider.setRetryInterval
(int val) specifies the retry interval is to used in case of delivery failure when sending outbound requests via a transport provider.if set, an exception will be thrown to the callee of method TransportManager.receiveMessage() due to an error that occurs during the OSB pipeline processing.specifies which URI is to be used when sending outbound requests via a transport providertoString()
-
Field Details
-
QOS
Deprecated.use Option.QOS -
THROW_ON_ERROR
Deprecated.use Option.THROW_ON_ERROR -
MODE
Deprecated.use Option.MODE -
_URI
Deprecated.use Option.URI -
RETRY_INTERVAL
Deprecated.use Option.RETRY_INTERVAL -
RETRY_COUNT
Deprecated.use Option.RETRY_COUNT -
OPERATION_NAME
Deprecated.use Option.OPERATION_NAME -
INBOUND_ENDPOINT
Deprecated.use Option.INBOUND_ENDPOINT -
OPAQUE_DATA
Deprecated.use Option.OPAQUE_DATA -
MESSAGE_PRIORITY
Deprecated.use Option.MESSAGE_PRIORITY -
BLOCKING_THROTTLING
Deprecated.use Option.BLOCKING_THROTTLING -
REPLY_WITH_FAILURE
Deprecated.use Option.REPLY_WITH_FAILURE -
REPLY_SYNC
Deprecated.use Option.REPLY_SYNC -
CONTENT_STREAMING
Deprecated.use Option.CONTENT_STREAMING -
DEFAULT_PRIORITY
public static final int DEFAULT_PRIORITY- See Also:
-
-
Constructor Details
-
TransportOptions
public TransportOptions()
-
-
Method Details
-
setQoS
specifies whether or not "exactly-once" qualify of service can be achieved. In case of transport providers that support transactional semantics this means whether transaction will be rolled back in case of an error.- Parameters:
val
- quality of service enum- Returns:
- updated transport options instance.
-
getQoS
- Returns:
- whether or not "exactly-once" quality of service can be achieved. In case of transport providers that support transactional semantics this means whether transaction will be rolled back in case of an error.
-
setMode
specifies the type of the message being processed by OSB - one-way or request/response.- Parameters:
val
- mode- Returns:
- updated transport options instance.
-
getMode
- Returns:
- the type of the message being processed by OSB - one-way or request/response.
-
setThrowOnError
if set, an exception will be thrown to the callee of method TransportManager.receiveMessage() due to an error that occurs during the OSB pipeline processing. The callee will presumably mark the current transaction for rollback. Otherwise, the router manager will send an appropriate response (e.g. a SOAP fault) in the inbound message context instead of throwing an exception.- Returns:
- updated transport options instance.
-
isThrowOnError
public boolean isThrowOnError()- Returns:
- whether or not an exception will be thrown to the callee of method TransportManager.receiveMessage() due to an error that occurs during the OSB pipeline processing.
-
setBlockingThrottling
-
isBlockingThrottling
public boolean isBlockingThrottling() -
isReplyWithFailure
public boolean isReplyWithFailure()- Returns:
- whether or not the user has chosen to reply with failure in the message flow of the service. This option gets set by the pipeline runtime and is passed to the inbound transport message context via the close() method
-
setReplyWithFailure
-
isReplySync
public boolean isReplySync()- Returns:
- whether or not the the response comes in a synchronous fashion. This option gets set by the pipeline runtime when the user enables 'use same Transaction For Response' flag and is passed to the inbound transport message context via the close() method
-
isContentStreamingEnabled
public boolean isContentStreamingEnabled()- Returns:
- whether or not outbound request and/or inbound response is used in a context of large messages (i.e. with content streaming enabled option)
-
setURI
specifies which URI is to be used when sending outbound requests via a transport provider- Parameters:
val
- uri- Returns:
- updated transport options instance
-
getURI
- Returns:
- which URI is to be used when sending outbound requests via a transport provider
-
setRetryInterval
specifies the retry interval is to used in case of delivery failure when sending outbound requests via a transport provider. If present, it overrides the service configuration setting- Parameters:
val
- retry interval- Returns:
- updated transports options instance.
-
getRetryInterval
public int getRetryInterval()- Returns:
- the retry interval is to used in case of delivery failure when sending outbound requests via a transport provider.
-
setRetryCount
specifies the retry count is to used in case of delivery failure when sending outbound requests via a transport provider. If present, it overrides the service configuration setting- Parameters:
val
- retry count- Returns:
- updated transports options instance.
-
getRetryCount
public int getRetryCount()- Returns:
- the retry count is to used in case of delivery failure when sending outbound requests via a transport provider. If present, it overrides the service configuration setting
-
setOperationName
specifies the name of the Web Service operation, when applicable for outbound requests. It is set my OSB runtime and passed to transport provider.- Parameters:
val
- operation name- Returns:
- updated transports options instance.
-
getOperationName
- Returns:
- the name of the Web Service operation, when applicable for outbound requests. It is set my OSB runtime and passed to transport provider.
-
setMessagePriority
-
getMessagePriority
public int getMessagePriority() -
setOpaqueData
Stores opaque (i.e. unspecified/unstructured) data from transport providers. A typical use case is when a transport provider XYZ receives an inbound message, passes it to OSB along with some opaque data and OSB eventually delivers this data to the outbound transport provider, which also happens to be XYZ so it knows precisely how to interpret the data.- Parameters:
data
- opaque data, a map of object keyed by string.- Returns:
- updated transport options instance
-
getOpaqueData
- Returns:
- opaque (i.e. unspecified/unstructured) data from transport providers.
-
hasOption
- Parameters:
option
- option key- Returns:
- whether or not an options with a given key exists
-
hasOption
- Parameters:
key
- option key- Returns:
- whether or not an options with a given key exists
-
get
- Parameters:
option
- option key- Returns:
- the value of the option with a given key
-
get
- Parameters:
key
- option key- Returns:
- the value of the option with a given key
-
put
- Parameters:
option
- option key- Returns:
- updated transport options instance set the value of the option with a given key to true
-
put
- Parameters:
option
- option key- Returns:
- updated transport options instance set the value of the option with a given key to true
-
put
set the value of the option with a given key to specified value- Parameters:
option
- object representing the option keyvalue
- int value for the given key- Returns:
- updated transport options instance
-
put
set the value of the option with a given key to specified value- Parameters:
option
- object representing the option keyvalue
- object value for the given key- Returns:
- updated transport options instance
-
remove
delete of the option with a given key- Parameters:
option
- key
-
remove
delete of the option with a given key- Parameters:
key
- key
-
safeGet
utility method- Parameters:
option
- keyoptions
- transport options to introspect- Returns:
- the value of the option with a given key
-
hasOption
utility method- Parameters:
option
- keyoptions
- transport options to introspect- Returns:
- whether or not the option with a given key exists
-
toString
-