aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-common-configuration-management/openecomp-configuration-management-api/src/main/java/org/openecomp/config/api/ConfigurationChangeListener.java
blob: 57814bba4474c7b04b87d0be865fef64282ab595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.config.api;

public interface ConfigurationChangeListener {

  public default void notify(String tenantId, String component, String key, Object oldValue,
                             Object newValue) {
  }

  public default void notify(String component, String key, Object oldValue, Object newValue) {
    System.out.println("HIT");
  }

  public default void notify(String key, Object oldValue, Object newValue) {
  }
}