org.apache.cxf.extension
Class RegistryImpl<K,T>
java.lang.Object
   org.apache.cxf.extension.RegistryImpl<K,T>
org.apache.cxf.extension.RegistryImpl<K,T>
- All Implemented Interfaces: 
- Registry<K,T>
- public class RegistryImpl<K,T> 
- extends Object- implements Registry<K,T>
 
 
| Method Summary | 
|  T | get(K k)Returns the object stored under the given key.
 | 
|  void | register(K k,
         T t)Registers an object of type T with this registry.
 | 
|  void | unregister(K k)Unregisters the object stored under the given key from this registry.
 | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
entries
protected final Map<K,T> entries
RegistryImpl
protected RegistryImpl()
RegistryImpl
protected RegistryImpl(Map<K,T> e)
register
public void register(K k,
                     T t)
- Description copied from interface: Registry
- Registers an object of type T with this registry.
 
- 
- Specified by:
- registerin interface- Registry<K,T>
 
- 
- Parameters:
- k- the key under which rto register the object
- t- the object to register
 
unregister
public void unregister(K k)
- Description copied from interface: Registry
- Unregisters the object stored under the given key from this registry.
 
- 
- Specified by:
- unregisterin interface- Registry<K,T>
 
- 
- Parameters:
- k- the key
 
get
public T get(K k)
- Description copied from interface: Registry
- Returns the object stored under the given key.
 
- 
- Specified by:
- getin interface- Registry<K,T>
 
- 
- Parameters:
- k- the  key
- Returns:
- the object stored under the key
 
Apache CXF