Package com.sun.xml.wss.provider.wsit
Class PacketMapMessageInfo
- java.lang.Object
-
- com.sun.xml.wss.provider.wsit.PacketMapMessageInfo
-
- All Implemented Interfaces:
PacketMessageInfo,MessageInfo
public class PacketMapMessageInfo extends Object implements PacketMessageInfo
-
-
Constructor Summary
Constructors Constructor Description PacketMapMessageInfo(Packet reqPacket, Packet resPacket)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MapgetMap()Get (a reference to) the Map object of this MessageInfo.ObjectgetRequestMessage()Get the request message object from this MessageInfo.PacketgetRequestPacket()ObjectgetResponseMessage()Get the response message object from this MessageInfo.PacketgetResponsePacket()SOAPAuthParamgetSOAPAuthParam()voidsetRequestMessage(Object request)Set the request message object in this MessageInfo.voidsetRequestPacket(Packet p)voidsetResponseMessage(Object response)Set the response message object in this MessageInfo.voidsetResponsePacket(Packet p)
-
-
-
Method Detail
-
getMap
public Map getMap()
Description copied from interface:MessageInfoGet (a reference to) the Map object of this MessageInfo. Operations performed on the acquired Map must effect the Map within the MessageInfo.- Specified by:
getMapin interfaceMessageInfo- Returns:
- the Map object of this MessageInfo. This method never returns null. If a Map has not been associated with the MessageInfo, this method instantiates a Map, associates it with this MessageInfo, and then returns it.
-
getRequestMessage
public Object getRequestMessage()
Description copied from interface:MessageInfoGet the request message object from this MessageInfo.- Specified by:
getRequestMessagein interfaceMessageInfo- Returns:
- An object representing the request message, or null if no request message is set within the MessageInfo.
-
getResponseMessage
public Object getResponseMessage()
Description copied from interface:MessageInfoGet the response message object from this MessageInfo.- Specified by:
getResponseMessagein interfaceMessageInfo- Returns:
- an object representing the response message, or null if no response message is set within the MessageInfo.
-
setRequestMessage
public void setRequestMessage(Object request)
Description copied from interface:MessageInfoSet the request message object in this MessageInfo.- Specified by:
setRequestMessagein interfaceMessageInfo- Parameters:
request- An object representing the request message.
-
setResponseMessage
public void setResponseMessage(Object response)
Description copied from interface:MessageInfoSet the response message object in this MessageInfo.- Specified by:
setResponseMessagein interfaceMessageInfo- Parameters:
response- An object representing the response message.
-
getSOAPAuthParam
public SOAPAuthParam getSOAPAuthParam()
- Specified by:
getSOAPAuthParamin interfacePacketMessageInfo
-
getRequestPacket
public Packet getRequestPacket()
- Specified by:
getRequestPacketin interfacePacketMessageInfo
-
getResponsePacket
public Packet getResponsePacket()
- Specified by:
getResponsePacketin interfacePacketMessageInfo
-
setRequestPacket
public void setRequestPacket(Packet p)
- Specified by:
setRequestPacketin interfacePacketMessageInfo
-
setResponsePacket
public void setResponsePacket(Packet p)
- Specified by:
setResponsePacketin interfacePacketMessageInfo
-
-