Package org.apache.cxf.extension
Interface Registry<K,T>
- 
- All Known Implementing Classes:
- RegistryImpl
 
 public interface Registry<K,T>
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Tget(K k)Returns the object stored under the given key.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- 
registervoid register(K k, T t) Registers an object of type T with this registry.- Parameters:
- k- the key under which rto register the object
- t- the object to register
 
 - 
unregistervoid unregister(K k) Unregisters the object stored under the given key from this registry.- Parameters:
- k- the key
 
 
- 
 
-