Package org.jboss.ws.api.addressing
Interface MAPBuilder
-
public interface MAPBuilderMAPBuilder is a helper used to create objects used with classMAP.- Author:
- Andrew Dinn, Alessio Soldano
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MAPinboundMap(Map<String,Object> ctx)Retrieves the inbound server message address properties attached to a message contextMAPConstantsnewConstants()Creates a newMAPConstantsinstanceMAPEndpointnewEndpoint(String address)Creates a newMAPEndpointinstanceMAPnewMap()Creates a newMAPinstanceMAPRelatesTonewRelatesTo(String id, QName type)Creates a newMAPRelatesToinstanceMAPoutboundMap(Map<String,Object> ctx)Retrieves the outbound client message address properties attached to a message request map
-
-
-
Method Detail
-
inboundMap
MAP inboundMap(Map<String,Object> ctx)
Retrieves the inbound server message address properties attached to a message context- Parameters:
ctx- the server message context- Returns:
- the inbound server Message Addressing Properties instance
-
outboundMap
MAP outboundMap(Map<String,Object> ctx)
Retrieves the outbound client message address properties attached to a message request map- Parameters:
ctx- the client request properties map- Returns:
- the outbound server Message Addressing Properties instance
-
newConstants
MAPConstants newConstants()
Creates a newMAPConstantsinstance- Returns:
- a
MAPConstantsinstance
-
newEndpoint
MAPEndpoint newEndpoint(String address)
Creates a newMAPEndpointinstance- Parameters:
address- endpoint address- Returns:
- a
MAPEndpointinstance
-
newRelatesTo
MAPRelatesTo newRelatesTo(String id, QName type)
Creates a newMAPRelatesToinstance- Parameters:
id- identifiertype- Qname- Returns:
- a
MAPRelatesToinstance
-
-