Class CXFMAPBuilder
- java.lang.Object
-
- org.jboss.wsf.stack.cxf.extensions.addressing.map.CXFMAPBuilder
-
- All Implemented Interfaces:
MAPBuilder
public class CXFMAPBuilder extends Object implements MAPBuilder
MAPBuilder is a helper used to create objects used with class MAP. This is the JBossWS CXF implementation.- Since:
- 26-May-2009
- Author:
- Andrew Dinn - adinn@redhat.com, alessio.soldano@jboss.com
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MAPBuildergetBuilder()MAPinboundMap(Map<String,Object> ctx)retrieve 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)retrieve the outbound client message address properties attached to a message request map
-
-
-
Method Detail
-
getBuilder
public static MAPBuilder getBuilder()
-
newMap
public MAP newMap()
Description copied from interface:MAPBuilderCreates a newMAPinstance- Specified by:
newMapin interfaceMAPBuilder- Returns:
- a
MAPinstance
-
inboundMap
public MAP inboundMap(Map<String,Object> ctx)
retrieve the inbound server message address properties attached to a message context- Specified by:
inboundMapin interfaceMAPBuilder- Parameters:
ctx- the server message context- Returns:
-
outboundMap
public MAP outboundMap(Map<String,Object> ctx)
retrieve the outbound client message address properties attached to a message request map- Specified by:
outboundMapin interfaceMAPBuilder- Parameters:
ctx- the client request properties map- Returns:
-
newConstants
public MAPConstants newConstants()
Description copied from interface:MAPBuilderCreates a newMAPConstantsinstance- Specified by:
newConstantsin interfaceMAPBuilder- Returns:
- a
MAPConstantsinstance
-
newEndpoint
public MAPEndpoint newEndpoint(String address)
Description copied from interface:MAPBuilderCreates a newMAPEndpointinstance- Specified by:
newEndpointin interfaceMAPBuilder- Parameters:
address- endpoint address- Returns:
- a
MAPEndpointinstance
-
newRelatesTo
public MAPRelatesTo newRelatesTo(String id, QName type)
Description copied from interface:MAPBuilderCreates a newMAPRelatesToinstance- Specified by:
newRelatesToin interfaceMAPBuilder- Parameters:
id- identifiertype- Qname- Returns:
- a
MAPRelatesToinstance
-
-