|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.mule.registry.AbstractRegistry
org.mule.config.spring.SpringRegistry
public class SpringRegistry
Field Summary | |
---|---|
protected org.springframework.context.ApplicationContext |
applicationContext
|
static String |
REGISTRY_ID
|
static String |
SPRING_APPLICATION_CONTEXT
Key used to lookup Spring Application Context from SpringRegistry via Mule's Registry interface. |
protected AtomicBoolean |
springContextInitialised
|
Fields inherited from class org.mule.registry.AbstractRegistry |
---|
lifecycleManager, logger, muleContext |
Fields inherited from interface org.mule.api.lifecycle.Initialisable |
---|
PHASE_NAME |
Fields inherited from interface org.mule.api.lifecycle.Disposable |
---|
PHASE_NAME |
Constructor Summary | |
---|---|
SpringRegistry(org.springframework.context.ApplicationContext applicationContext,
MuleContext muleContext)
|
|
SpringRegistry(org.springframework.context.ConfigurableApplicationContext applicationContext,
org.springframework.context.ApplicationContext parentContext,
MuleContext muleContext)
|
|
SpringRegistry(MuleContext muleContext)
|
|
SpringRegistry(String id,
org.springframework.context.ApplicationContext applicationContext,
MuleContext muleContext)
|
|
SpringRegistry(String id,
org.springframework.context.ConfigurableApplicationContext applicationContext,
org.springframework.context.ApplicationContext parentContext,
MuleContext muleContext)
|
|
SpringRegistry(String id,
MuleContext muleContext)
|
Method Summary | ||
---|---|---|
protected RegistryLifecycleManager |
createLifecycleManager()
|
|
void |
doDispose()
|
|
protected void |
doInitialise()
|
|
protected
|
internalLookupByType(Class<T> type,
boolean nonSingletons,
boolean eagerInit)
|
|
boolean |
isReadOnly()
|
|
boolean |
isRemote()
|
|
|
lookupByType(Class<T> type)
|
|
Object |
lookupObject(String key)
Look up a single object by name. |
|
|
lookupObjects(Class<T> type)
Look up all objects of a given type. |
|
|
lookupObjectsForLifecycle(Class<T> type)
For lifecycle we only want spring to return singleton objects from it's application context |
|
void |
registerObject(String key,
Object value)
Registers an object in the registry with a key. |
|
void |
registerObject(String key,
Object value,
Object metadata)
Registers an object in the registry with a key. |
|
void |
registerObjects(Map<String,Object> objects)
Registers a Map of objects into the registry |
|
void |
unregisterObject(String key)
Will remove an object by name from the registry. |
|
void |
unregisterObject(String key,
Object metadata)
Will remove an object by name from the registry. |
Methods inherited from class org.mule.registry.AbstractRegistry |
---|
dispose, fireLifecycle, get, getLifecycleManager, getRegistryId, initialise, lookupObject |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String REGISTRY_ID
public static final String SPRING_APPLICATION_CONTEXT
protected org.springframework.context.ApplicationContext applicationContext
protected AtomicBoolean springContextInitialised
Constructor Detail |
---|
public SpringRegistry(MuleContext muleContext)
public SpringRegistry(String id, MuleContext muleContext)
public SpringRegistry(org.springframework.context.ApplicationContext applicationContext, MuleContext muleContext)
public SpringRegistry(String id, org.springframework.context.ApplicationContext applicationContext, MuleContext muleContext)
public SpringRegistry(org.springframework.context.ConfigurableApplicationContext applicationContext, org.springframework.context.ApplicationContext parentContext, MuleContext muleContext)
public SpringRegistry(String id, org.springframework.context.ConfigurableApplicationContext applicationContext, org.springframework.context.ApplicationContext parentContext, MuleContext muleContext)
Method Detail |
---|
protected void doInitialise() throws InitialisationException
doInitialise
in class AbstractRegistry
InitialisationException
public void doDispose()
doDispose
in class AbstractRegistry
protected RegistryLifecycleManager createLifecycleManager()
createLifecycleManager
in class AbstractRegistry
public Object lookupObject(String key)
Registry
public <T> Collection<T> lookupObjects(Class<T> type)
Registry
public <T> Collection<T> lookupObjectsForLifecycle(Class<T> type)
lookupObjectsForLifecycle
in interface Registry
lookupObjectsForLifecycle
in class AbstractRegistry
public <T> Map<String,T> lookupByType(Class<T> type)
protected <T> Map<String,T> internalLookupByType(Class<T> type, boolean nonSingletons, boolean eagerInit)
public void registerObject(String key, Object value) throws RegistrationException
Registry
key
- the key to store the value against. This is a non-null valuevalue
- the object to store in the registry. This is a non-null value
RegistrationException
- if an object with the same key already existspublic void registerObject(String key, Object value, Object metadata) throws RegistrationException
Registry
key
- the key to store the value against. This is a non-null valuevalue
- the object to store in the registry. This is a non-null valuemetadata
- an implementation specific argument that can be passed into the method
RegistrationException
- if an object with the same key already existspublic void registerObjects(Map<String,Object> objects) throws RegistrationException
Registry
objects
- a map of key value pairs, each will individually be registered in the registry
RegistrationException
- if an object with the same key already existspublic void unregisterObject(String key)
Registry
key
- the name or key of the object to remove from the registrypublic void unregisterObject(String key, Object metadata) throws RegistrationException
Registry
key
- the name or key of the object to remove from the registrymetadata
- an implementation specific argument that can be passed into the method
RegistrationException
- if there is a problem unregistering the object. Typically this will be because
the object's lifecycle threw an exceptionpublic boolean isReadOnly()
public boolean isRemote()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |