Package org.apache.cxf.extension
Class RegistryImpl<K,T>
- java.lang.Object
- 
- org.apache.cxf.extension.RegistryImpl<K,T>
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedRegistryImpl()protectedRegistryImpl(Map<K,T> e)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Tget(K k)Returns the object stored under the given key.protected voidloadDynamic()voidregister(K k, T t)Registers an object of type T with this registry.voidunregister(K k)Unregisters the object stored under the given key from this registry.
 
- 
- 
- 
Method Detail- 
loadDynamicprotected void loadDynamic() 
 - 
registerpublic void register(K k, T t) Description copied from interface:RegistryRegisters an object of type T with this registry.
 - 
unregisterpublic void unregister(K k) Description copied from interface:RegistryUnregisters the object stored under the given key from this registry.- Specified by:
- unregisterin interface- Registry<K,T>
- Parameters:
- k- the key
 
 
- 
 
-