Package com.sun.xml.ws.xmlfilter
Interface InvocationProcessorFactory
-
public interface InvocationProcessorFactoryThe interface provides API contract forInvocationProcessorfactory implementations. Implementations of this interface may be passed intoEnhancedXmlStreamWriterProxy- Author:
- Marek Potociar (marek.potociar at sun.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InvocationProcessorcreateInvocationProcessor(XMLStreamWriter writer)Factory method createsInvocationProcessorinstance that implements additionalXMLStreamWriterfeature or enhancement.
-
-
-
Method Detail
-
createInvocationProcessor
InvocationProcessor createInvocationProcessor(XMLStreamWriter writer) throws XMLStreamException
Factory method createsInvocationProcessorinstance that implements additionalXMLStreamWriterfeature or enhancement.- Parameters:
writer- underlyingXMLStreamWriterinstance that should be enhanced with the new feature(s).- Returns:
- newly created
InvocationProcessorinstance. - Throws:
XMLStreamException- in case of any problems with creation of newInvocationProcessorinstance.
-
-