Class WsDiscoveryMapper
- java.lang.Object
-
- org.somda.sdc.dpws.soap.wsdiscovery.WsDiscoveryMapper
-
public class WsDiscoveryMapper extends Object
Mapper to map between WS-Discovery JAXB elements andWsDiscoveryHeader.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmapFromJaxbSoapHeader(List<Object> src, WsDiscoveryHeader dest)The mapper function that takes a list of JAXB objects and populates the convenience WS-Discovery header.voidmapToJaxbSoapHeader(WsDiscoveryHeader src, List<Object> dest)The mapper function that takes a convenience WS-Discovery header and adds it to a list of JAXB objects.
-
-
-
Method Detail
-
mapToJaxbSoapHeader
public void mapToJaxbSoapHeader(WsDiscoveryHeader src, List<Object> dest)
The mapper function that takes a convenience WS-Discovery header and adds it to a list of JAXB objects.- Parameters:
src- the WS-Discovery source information.dest- the list of objects where to add the mapped JAXB element (typically the list of headers).
-
mapFromJaxbSoapHeader
public void mapFromJaxbSoapHeader(List<Object> src, WsDiscoveryHeader dest)
The mapper function that takes a list of JAXB objects and populates the convenience WS-Discovery header.- Parameters:
src- the list of objects where to get the WS-Discovery header information from.dest- the WS-Discovery mapper destination.
-
-