public abstract class MetadataStoreListenerAdapter extends Object implements MetadataStoreListener
MetadataStoreListener. Subclasses may override any of the methods.| Constructor and Description |
|---|
MetadataStoreListenerAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
onAdd(String key,
String value)
Invoked when a key is added to the store
|
void |
onRemove(String key,
String oldValue)
Invoked when a key is removed from the store
|
void |
onUpdate(String key,
String newValue)
Invoked when a key is updated into the store
|
public void onAdd(String key, String value)
MetadataStoreListeneronAdd in interface MetadataStoreListenerkey - the key being addedvalue - the value being addedpublic void onRemove(String key, String oldValue)
MetadataStoreListeneronRemove in interface MetadataStoreListenerkey - the key being removedoldValue - the value being removedpublic void onUpdate(String key, String newValue)
MetadataStoreListeneronUpdate in interface MetadataStoreListenerkey - the key being updatednewValue - the new value