Package com.sun.xml.ws.policy.spi
Interface PrefixMapper
-
- All Known Implementing Classes:
AddressingPrefixMapper,AtPrefixMapper,EncodingPrefixMapper,ManagementPrefixMapper,McPrefixMapper,RmPrefixMapper,SecurityPrefixMapper,TCPTransportPrefixMapper,WsawAddressingPrefixMapper
public interface PrefixMapperMaps an XML prefix to a namespace. This class allows policy domains to configure to which XML prefix an XML namespace is mapped.- Author:
- Fabian Ritzmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>getPrefixMap()Returns a map of XML prefixes to namespaces for the domain.
-
-
-
Method Detail
-
getPrefixMap
Map<String,String> getPrefixMap()
Returns a map of XML prefixes to namespaces for the domain. The keys of the map must be a name for an XML prefix, e.g. "wsrmp". The values must be the name of an XML namespace, e.g. "http://docs.oasis-open.org/ws-rx/wsrmp/200702".- Returns:
- A map of XML prefixes to namespaces for the domain.
-
-