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 the CoherenceConfigSource.
Since:
20.06
Author:
Aleks Seovic 2020.06.11
  • Method Details

    • 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 to null
    • 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 to null
    • toString

      public String toString()
      Overrides:
      toString in class Object