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