Package com.bea.wli.sb.transports
Class RequestMetaData<T extends RequestHeaders>
java.lang.Object
com.bea.wli.sb.transports.RequestMetaData<T>
- Direct Known Subclasses:
DefaultRequestMetaData
Represents inbound or outbound request 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/setQueryString(), get/setClientHost() and other methods.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setCacheToken
(String cacheToken) sets the cache token to use for this requestvoid
setCacheTTL
(String cacheTTL) sets the cache time to live to use for this request.void
setCharacterEncoding
(String encoding) sets the character encoding to use in message payloadvoid
setHeaders
(T headers) sets provider-specific request headers POJO that represent the headers for request messagevoid
setJavaContentMap
(Map<String, Object> map) Passed map can be used to refer java-content element's object of the respective ref-id.abstract com.bea.wli.sb.transports.RequestMetaDataXML
toXML()
-
Method Details
-
getJavaContentMap
- Returns:
- returns a map of java-content-ref-id vs object. Metadata's java-content elements will have ref-id which is mapped to the actual object that it represents in this map. This map is generally retreived by pipeline when refering java-content elements of the metadata.
-
setJavaContentMap
Passed map can be used to refer java-content element's object of the respective ref-id. It is generaly set by the pipeline.- Parameters:
map
- ref-id vs Object map.
-
getUserMetaData
-
getCharacterEncoding
- Returns:
- character encoding used in message payload or null
-
setCharacterEncoding
sets the character encoding to use in message payload- Parameters:
encoding
-
-
getCacheToken
- Returns:
- the cache token to use for this request or null
-
setCacheToken
sets the cache token to use for this request- Parameters:
cacheToken
-
-
getCacheTTL
- Returns:
- the cache time to live to use for this request or null. This will either be an integer (representing seconds) or an XML Schema duration value.
-
setCacheTTL
sets the cache time to live to use for this request. This will either be an integer (representing seconds) or an XML Schema duration value- Parameters:
cacheTTL
-
-
getHeaders
- Returns:
- provider-specific request headers POJO that represent the headers for request message
-
setHeaders
sets provider-specific request headers POJO that represent the headers for request message -
toXML
- Returns:
- XMLBean representation of meta data for this request message
- Throws:
TransportException
-