Package org.xmpp.component
Class ComponentManagerFactory
java.lang.Object
org.xmpp.component.ComponentManagerFactory
Factory to get a ComponentManager implementation. The ComponentManager implementation
used will determined in the following way:
- An external process can set the ComponentManager using
setComponentManager(ComponentManager). - If the component manager is
null, the factory will check for the Java system property "whack.componentManagerClass". The value of the property should be the fully qualified class name of a ComponentManager implementation (e.g. com.foo.MyComponentManager). The class must have a default constructor.
- Author:
- Matt Tucker
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentManagerReturns a ComponentManager instance.static voidsetComponentManager(ComponentManager manager) Sets the ComponentManager instance that will be used.
-
Constructor Details
-
ComponentManagerFactory
public ComponentManagerFactory()
-
-
Method Details
-
getComponentManager
Returns a ComponentManager instance.- Returns:
- a ComponentManager instance.
-
setComponentManager
Sets the ComponentManager instance that will be used.- Parameters:
manager- the ComponentManager instance.
-