Package org.apache.axis2.jaxws.registry
Class InvocationListenerRegistry
java.lang.Object
org.apache.axis2.jaxws.registry.InvocationListenerRegistry
This class will provide a means for JAX-WS users to register
InvocationListenerFactory implementations. This will manage
the factory implementations such that they list of factories
is only built when necessary so as to reduce the overhead of
doing this on a per-request basis.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidaddFactory(InvocationListenerFactory facInstance) This method accepts an object instance that is an implementation of the InvocationListenerFactory.static Collection<InvocationListenerFactory>This method will return all the InvocationListenerFactory instances that have been registered.
-
Constructor Details
-
InvocationListenerRegistry
public InvocationListenerRegistry()
-
-
Method Details
-
addFactory
This method accepts an object instance that is an implementation of the InvocationListenerFactory. The instance will be stored in an internal map by its class name. -
getFactories
This method will return all the InvocationListenerFactory instances that have been registered.
-