Package com.oracle.coherence.mp.config
Class ConfigPropertyChanged
- java.lang.Object
-
- com.oracle.coherence.mp.config.ConfigPropertyChanged
-
public class ConfigPropertyChanged extends Object
An event that will be raised whenever any config property is added to, updated in, or removed from theCoherenceConfigSource
.- Since:
- 20.06
- Author:
- Aleks Seovic 2020.06.11
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
The key of the configuration property that was modified.String
getOldValue()
The old value of the configuration property that was modified.String
getValue()
The new value of the configuration property that was modified.String
toString()
-
-
-
Method Detail
-
getKey
public String getKey()
The key of the configuration property that was modified.- Returns:
- the key of the configuration property that was modified
-
getValue
public String getValue()
The new value of the configuration property that was modified.- Returns:
- the new value of the configuration property that was modified;
can be
null
if the property was removed, or the value explicitly set tonull
-
getOldValue
public String getOldValue()
The old value of the configuration property that was modified.- Returns:
- the old value of the configuration property that was modified;
can be
null
if the property was inserted, or the previous value was explicitly set tonull
-
-