public class RegistryImpl<K,T> extends Object implements Registry<K,T>
Modifier | Constructor and Description |
---|---|
protected |
RegistryImpl() |
protected |
RegistryImpl(Map<K,T> e) |
Modifier and Type | Method and Description |
---|---|
T |
get(K k)
Returns the object stored under the given key.
|
protected void |
loadDynamic() |
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.
|
protected void loadDynamic()
public void register(K k, T t)
Registry
public void unregister(K k)
Registry
unregister
in interface Registry<K,T>
k
- the keyApache CXF