Package org.apache.cxf.extension
Interface Registry<K,T> 
- All Known Implementing Classes:
- RegistryImpl
public interface Registry<K,T> 
- 
Method Summary
- 
Method Details- 
registerRegisters an object of type T with this registry.- Parameters:
- k- the key under which rto register the object
- t- the object to register
 
- 
unregisterUnregisters the object stored under the given key from this registry.- Parameters:
- k- the key
 
- 
getReturns the object stored under the given key.- Parameters:
- k- the key
- Returns:
- the object stored under the key
 
 
-