| java.lang.Object com.sun.xml.ws.policy.jaxws.PolicyConfigResolver
PolicyConfigResolver | public class PolicyConfigResolver implements XMLEntityResolver(Code) | | Assumes that a given XML entity holds a valid URL and returns an
XMLEntityResolver.Parser for that URL. An XMLEntityResolver.Parser is
essentially a wrapper around an XMLStreamReader.
author: Jakub Podlesak (jakub.podlesak at sun.com) |
Method Summary | |
public Parser | resolveEntity(String publicId, String systemId) Assumes that a given XML entity holds a valid URL and returns an
XMLEntityResolver.Parser for that URL.
Parameters: publicId - The public ID of the entity. |
resolveEntity | public Parser resolveEntity(String publicId, String systemId) throws XMLStreamException, IOException(Code) | | Assumes that a given XML entity holds a valid URL and returns an
XMLEntityResolver.Parser for that URL.
Parameters: publicId - The public ID of the entity. This parameter is ignored. Parameters: systemId - The system ID of the entity. Must be a valid URL. A parser (i.e. an XMLStreamReader) for the systemId URL. throws: XMLStreamException - If the XMLStreamReader could not be created throws: IOException - If the URL was invalid or a connection to the URLfailed See Also: javax.xml.stream.XMLStreamReader See Also: com.sun.xml.ws.api.wsdl.parser.XMLEntityResolver.Parser |
|
|