public class SingletonObjectFactory extends AbstractObjectFactory
ATTRIBUTE_OBJECT_CLASS, ATTRIBUTE_OBJECT_CLASS_NAME, initialisationCallbacks, logger, objectClass, objectClassName, propertiesPHASE_NAMEPHASE_NAME| Constructor and Description |
|---|
SingletonObjectFactory()
For Spring only
|
SingletonObjectFactory(Class objectClass) |
SingletonObjectFactory(Class objectClass,
Map properties) |
SingletonObjectFactory(Object instance)
Create the singleton based on a previously created object.
|
SingletonObjectFactory(String objectClassName) |
SingletonObjectFactory(String objectClassName,
Map properties) |
| Modifier and Type | Method and Description |
|---|---|
void |
dispose()
A lifecycle method where implementor should free up any resources.
|
Object |
getInstance()
Always returns the same instance of the object.
|
Class |
getObjectClass()
Returns the class of the object to be instantiated without actually creating
an instance.
|
void |
initialise()
Method used to perform any initialisation work.
|
boolean |
isSingleton()
Returns true if the ObjectFactory implementation always returns the same object
instance.
|
addObjectInitialisationCallback, fireInitialisationCallbacks, getObjectClassName, getProperties, setObjectClass, setObjectClassName, setPropertiespublic SingletonObjectFactory()
public SingletonObjectFactory(String objectClassName)
public SingletonObjectFactory(Class objectClass)
public SingletonObjectFactory(Object instance)
public void initialise()
throws InitialisationException
InitialisableInitialisationException should be thrown,
causing the Mule instance to shutdown. If the error is recoverable, say by
retrying to connect, a RecoverableException should be thrown.
There is no guarantee that by throwing a Recoverable exception that the Mule
instance will not shut down.initialise in interface Initialisableinitialise in class AbstractObjectFactoryInitialisationException - if a fatal error occurs causing the Mule instance to shutdownRecoverableException - if an error occurs that can be recovered frompublic void dispose()
Disposabledispose in interface Disposabledispose in class AbstractObjectFactorypublic Object getInstance() throws Exception
getInstance in interface ObjectFactorygetInstance in class AbstractObjectFactoryExceptionpublic Class getObjectClass()
ObjectFactorygetObjectClass in interface ObjectFactorygetObjectClass in class AbstractObjectFactorypublic boolean isSingleton()
ObjectFactoryisSingleton in interface ObjectFactoryisSingleton in class AbstractObjectFactoryCopyright © 2003-2012 MuleSource, Inc.. All Rights Reserved.