Package org.jboss.ws.api.addressing
Interface MAP
-
public interface MAPMessage Addressing Properties is a wrapper for the stack-specific JSR-261 addressing properties classes implemented by JBossWS Native and CXF. It is used to localize dependence upon the WS stack.- Author:
- Andrew Dinn, Alessio Soldano
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddReferenceParameter(Element refParam)StringgetAction()MAPEndpointgetFaultTo()MAPEndpointgetFrom()StringgetMessageID()List<Object>getReferenceParameters()MAPRelatesTogetRelatesTo()MAPEndpointgetReplyTo()StringgetTo()voidinitializeAsDestination(MAPEndpoint epref)voidinstallOutboundMapOnClientSide(Map<String,Object> requestContext, MAP map)voidinstallOutboundMapOnServerSide(Map<String,Object> requestContext, MAP map)voidsetAction(String action)voidsetFaultTo(MAPEndpoint epref)voidsetFrom(MAPEndpoint epref)voidsetMessageID(String messageID)voidsetRelatesTo(MAPRelatesTo relatesTo)voidsetReplyTo(MAPEndpoint epref)voidsetTo(String address)
-
-
-
Method Detail
-
getTo
String getTo()
-
getFrom
MAPEndpoint getFrom()
-
getMessageID
String getMessageID()
-
getAction
String getAction()
-
getFaultTo
MAPEndpoint getFaultTo()
-
getReplyTo
MAPEndpoint getReplyTo()
-
getRelatesTo
MAPRelatesTo getRelatesTo()
-
setTo
void setTo(String address)
-
setFrom
void setFrom(MAPEndpoint epref)
-
setMessageID
void setMessageID(String messageID)
-
setAction
void setAction(String action)
-
setReplyTo
void setReplyTo(MAPEndpoint epref)
-
setFaultTo
void setFaultTo(MAPEndpoint epref)
-
setRelatesTo
void setRelatesTo(MAPRelatesTo relatesTo)
-
addReferenceParameter
void addReferenceParameter(Element refParam)
-
initializeAsDestination
void initializeAsDestination(MAPEndpoint epref)
-
installOutboundMapOnServerSide
void installOutboundMapOnServerSide(Map<String,Object> requestContext, MAP map)
-
-