| de.schlund.pfixcore.workflow.ContextResourceManager
All known Subclasses: de.schlund.pfixcore.workflow.ContextResourceManagerImpl,
ContextResourceManager | public interface ContextResourceManager (Code) | | |
Method Summary | |
public ContextResource | getResource(String name) Returns the stored object which implements the interface,
specified by the full qualified classname of the requested interface, or
null, if no object for the interface name is found. | public T | getResource(Class<T> clazz) Returns the ContextResource object which implements the interface
passed as argument (or null if no object found). | public Iterator<ContextResource> | getResourceIterator() Returns an iterator for all stored objects. |
getResource | public ContextResource getResource(String name)(Code) | | Returns the stored object which implements the interface,
specified by the full qualified classname of the requested interface, or
null, if no object for the interface name is found.
Parameters: name - the classname of the requested interface an object of a class implementing the requested interface, whichextends ContextResource |
getResource | public T getResource(Class<T> clazz)(Code) | | Returns the ContextResource object which implements the interface
passed as argument (or null if no object found).
Parameters: clazz - the interface class instance of the class implementing the interface |
|
|