diff options
author | Stilwell, David (stilwelld) <stilwelld@att.com> | 2017-08-10 00:50:12 +0000 |
---|---|---|
committer | Stilwell, David (stilwelld) <stilwelld@att.com> | 2017-08-10 14:57:42 +0000 |
commit | 4515ffa52bc89b1bf40c791749fe518930441d82 (patch) | |
tree | d11fc5588a07a519df2b58db194e79d50a508580 /properties-node/provider/src/main | |
parent | 7dbb6441c95aa5691a59dc918f864b4bf4e2e2ed (diff) |
Refactor plugins to org onap ccsdk
Refactor code to use new package name org.onap.ccsdk.sli.plugins
Change-Id: Ia5399b21e95d556890aef5ad27437f1ac120ef8d
Issue-ID: CCSDK-21
Signed-off-by: Stilwell, David (stilwelld) <stilwelld@att.com>
Diffstat (limited to 'properties-node/provider/src/main')
-rw-r--r-- | properties-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/prop/PropertiesNode.java (renamed from properties-node/provider/src/main/java/org/openecomp/sdnc/prop/PropertiesNode.java) | 2 | ||||
-rw-r--r-- | properties-node/provider/src/main/resources/META-INF/spring/properties-node-context.xml | 2 | ||||
-rw-r--r-- | properties-node/provider/src/main/resources/META-INF/spring/properties-node-osgi-context.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/properties-node/provider/src/main/java/org/openecomp/sdnc/prop/PropertiesNode.java b/properties-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/prop/PropertiesNode.java index 9856b194..aa566306 100644 --- a/properties-node/provider/src/main/java/org/openecomp/sdnc/prop/PropertiesNode.java +++ b/properties-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/prop/PropertiesNode.java @@ -19,7 +19,7 @@ * ============LICENSE_END========================================================= */ -package org.openecomp.sdnc.prop; +package org.onap.ccsdk.sli.plugins.prop; import java.io.FileInputStream; import java.io.IOException; diff --git a/properties-node/provider/src/main/resources/META-INF/spring/properties-node-context.xml b/properties-node/provider/src/main/resources/META-INF/spring/properties-node-context.xml index a53ea141..048acc4a 100644 --- a/properties-node/provider/src/main/resources/META-INF/spring/properties-node-context.xml +++ b/properties-node/provider/src/main/resources/META-INF/spring/properties-node-context.xml @@ -26,7 +26,7 @@ xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - <bean id="propertiesNode" class="org.openecomp.sdnc.prop.PropertiesNode"> + <bean id="propertiesNode" class="org.onap.ccsdk.sli.plugins.prop.PropertiesNode"> </bean> </beans> diff --git a/properties-node/provider/src/main/resources/META-INF/spring/properties-node-osgi-context.xml b/properties-node/provider/src/main/resources/META-INF/spring/properties-node-osgi-context.xml index 7d74fd4f..ce17a461 100644 --- a/properties-node/provider/src/main/resources/META-INF/spring/properties-node-osgi-context.xml +++ b/properties-node/provider/src/main/resources/META-INF/spring/properties-node-osgi-context.xml @@ -27,6 +27,6 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - <service ref="propertiesNode" interface="org.openecomp.sdnc.prop.PropertiesNode" /> + <service ref="propertiesNode" interface="org.onap.ccsdk.sli.plugins.prop.PropertiesNode" /> </beans:beans> |