Package com.bea.wli.sb.transports
Class ResponseMetaData<T extends ResponseHeaders>
java.lang.Object
com.bea.wli.sb.transports.ResponseMetaData<T>
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DefaultResponseMetaData
public abstract class ResponseMetaData<T extends ResponseHeaders>
extends Object
implements Serializable
Represents inbound or outbound response message meta-data information (e.g.
headers, request character set encoding, etc.) Transport Providers will
provide an extension of this class that adds meta-data information applicable
to the transport provider. For example, HTTP transport provider will add
get/setHttpResponseCode() and other methods.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionint
boolean
void
setCacheOriginated
(Boolean cacheOriginated) sets whether this response originated from the cache or not (only set if caching enabled)void
setCacheToken
(String cacheToken) sets the cache token used for this responsevoid
setCharacterEncoding
(String encoding) sets character encoding to use for message payloadvoid
setHeaders
(T headers) sets provider-specific response headers POJO that represents transport-level headers for the messagevoid
setResponseCode
(int code) Sets response code to indicate success/failure.void
setResponseMessage
(String message) sets provider-specific response messageabstract com.bea.wli.sb.transports.ResponseMetaDataXML
toXML()
-
Method Details
-
getCharacterEncoding
- Returns:
- character encoding to use for message payload
-
setCharacterEncoding
sets character encoding to use for message payload -
getResponseCode
public int getResponseCode()- Returns:
- response code to indicate success/failure.
See
TransportManager
for response code constants
-
setResponseCode
public void setResponseCode(int code) Sets response code to indicate success/failure. SeeTransportManager
for response code constants -
getResponseMessage
- Returns:
- provider-specific response message
-
setResponseMessage
sets provider-specific response message -
isSetResponseMessage
public boolean isSetResponseMessage()- Returns:
- whether or not there is a provider-specific response message in meta data
-
getHeaders
- Returns:
- provider-specific response headers POJO that represents transport-level headers for the message
-
setHeaders
sets provider-specific response headers POJO that represents transport-level headers for the message -
getCacheToken
- Returns:
- the cache token used for this response or null
-
setCacheToken
sets the cache token used for this response- Parameters:
cacheToken
-
-
getCacheOriginated
- Returns:
- whether this response originated from the cache or not (can be null if caching is not enabled)
-
setCacheOriginated
sets whether this response originated from the cache or not (only set if caching enabled)- Parameters:
cacheOriginated
-
-
toXML
- Returns:
- XMLBean representation of this response meta data object
- Throws:
TransportException
-