Package com.bea.wli.sb.transports
Class ResponseHeaders
java.lang.Object
com.bea.wli.sb.transports.ResponseHeaders
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DefaultResponseHeaders
Represents a union of standard and user-defined headers in a given inbound or
outbound response message. The set of standard headers is specific to each
transport provider. This is an abstract class to be extended by each transport
provider to implement their version of response headers.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
containsHeader
(String name) void
deleteHeader
(String name) removes the header with a given namevoid
Sets the header with the specified name to the given valuevoid
setXML
(com.bea.wli.sb.transports.ResponseHeadersXML xml) abstract com.bea.wli.sb.transports.ResponseHeadersXML
toXML()
-
Method Details
-
getHeaderNames
- Returns:
- an iterator for all the header names
-
containsHeader
- Parameters:
name
- header name- Returns:
- whether or not a header with a given name exists
-
getHeader
- Parameters:
name
- header name- Returns:
- the value of the header with a given name or null if it does not exist
-
setHeader
Sets the header with the specified name to the given value- Parameters:
name
- header namevalue
- value to set the specified header to
-
deleteHeader
removes the header with a given name- Parameters:
name
- header name
-
toXML
- Returns:
- XMLBean representation of these request headers
- Throws:
TransportException
-
setXML
public void setXML(com.bea.wli.sb.transports.ResponseHeadersXML xml)
-