Rename packages from openecomp to onap.
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / src / main / java / org / onap / config / impl / ConfigurationChangeNotifier.java
@@ -1,12 +1,10 @@
-package org.openecomp.config.impl;
+package org.onap.config.impl;
 
-import static org.openecomp.config.ConfigurationUtils.isArray;
-
-import org.openecomp.config.ConfigurationUtils;
-import org.openecomp.config.Constants;
-import org.openecomp.config.api.ConfigurationChangeListener;
-import org.openecomp.config.api.ConfigurationManager;
-import org.openecomp.config.api.Hint;
+import org.onap.config.ConfigurationUtils;
+import org.onap.config.Constants;
+import org.onap.config.api.ConfigurationChangeListener;
+import org.onap.config.api.ConfigurationManager;
+import org.onap.config.api.Hint;
 
 import java.io.File;
 import java.io.IOException;
@@ -162,7 +160,7 @@ public final class ConfigurationChangeNotifier {
     MBeanServerConnection mbsc = ManagementFactory.getPlatformMBeanServer();
     ObjectName mbeanName = new ObjectName(Constants.MBEAN_NAME);
     ConfigurationManager conf =
-        JMX.newMBeanProxy(mbsc, mbeanName, org.openecomp.config.api.ConfigurationManager.class,
+        JMX.newMBeanProxy(mbsc, mbeanName, ConfigurationManager.class,
             true);
     conf.updateConfigurationValues(tenant, namespace, map);
   }
@@ -362,7 +360,7 @@ public final class ConfigurationChangeNotifier {
           .containsKey(key)) {
         throw new RuntimeException("Key[" + key + "] not found.");
       }
-      isArray = isArray(tenant, component, key, Hint.DEFAULT.value());
+      isArray = ConfigurationUtils.isArray(tenant, component, key, Hint.DEFAULT.value());
       if (isArray) {
         currentValue = ConfigurationManager.lookup().getAsStringValues(tenant, component, key);
       } else {
@@ -461,7 +459,7 @@ public final class ConfigurationChangeNotifier {
       } catch (Exception exception) {
         exception.printStackTrace();
       } finally {
-        isArray = isArray(tenant, namespace, key, Hint.DEFAULT.value());
+        isArray = ConfigurationUtils.isArray(tenant, namespace, key, Hint.DEFAULT.value());
         if (isArray) {
           currentValue = ConfigurationManager.lookup().getAsStringValues(tenant, namespace, key);
         } else {