aboutsummaryrefslogtreecommitdiffstats
path: root/appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2017-12-13 11:09:30 -0800
committerPatrick Brady <pb071s@att.com>2017-12-13 11:09:41 -0800
commit0756759f39e125b02d63b4e93de83b3c6b13beea (patch)
tree274e9830e522007c590ace136a57efaa806e19d5 /appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF
parentcb81f75d84c1df021730341cd61ed650adc7ba3a (diff)
First part of onap rename
This is the first commit of the rename. This commit changes refereces to org.openecomp.appc > org.onap.appc that occur within files. The package folder structure is not changed in this commit. Change-Id: Ic95d749eb99d8a6f4f2b9ee9b06eb41c5cfa7e1c Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-13
Diffstat (limited to 'appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF')
-rw-r--r--appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF/blueprint/blueprint.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF/blueprint/blueprint.xml b/appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF/blueprint/blueprint.xml
index 5474dcc6f..d0ee8cd05 100644
--- a/appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF/blueprint/blueprint.xml
+++ b/appc-dispatcher/appc-command-executor/appc-command-executor-core/src/main/resources/OSGI-INF/blueprint/blueprint.xml
@@ -29,14 +29,14 @@
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
- <bean id="commandExecutorBean" class="org.openecomp.appc.executor.impl.CommandExecutorImpl"
+ <bean id="commandExecutorBean" class="org.onap.appc.executor.impl.CommandExecutorImpl"
scope="singleton" init-method="initialize">
<property name="executionQueueService" ref="ExecutionQueueServiceRef"/>
<property name="executionTaskFactory" ref="CommandExecutionTaskFactory"/>
<property name="expiredMessageHandler" ref="expiredMessageHandlerBean"/>
</bean>
- <bean id="CommandExecutionTaskFactory" class="org.openecomp.appc.executor.impl.CommandTaskFactory"
+ <bean id="CommandExecutionTaskFactory" class="org.onap.appc.executor.impl.CommandTaskFactory"
scope="singleton">
<property name="vnfRequestHandler" ref="vnfRequestHandlerService"/>
<property name="vmRequestHandler" ref="vmRequestHandlerService"/>
@@ -44,23 +44,23 @@
<property name="lifecyclemanager" ref="LifecyclemanagerRef"/>
</bean>
- <bean id="expiredMessageHandlerBean" class="org.openecomp.appc.executor.impl.ExpiredMessageHandler"
+ <bean id="expiredMessageHandlerBean" class="org.onap.appc.executor.impl.ExpiredMessageHandler"
scope="singleton">
<property name="vnfRequestHandler" ref="vnfRequestHandlerService"/>
<property name="vmRequestHandler" ref="vmRequestHandlerService"/>
</bean>
<reference id="WorkFlowManagerRef" availability="mandatory" activation="eager"
- interface="org.openecomp.appc.workflow.WorkFlowManager"/>
+ interface="org.onap.appc.workflow.WorkFlowManager"/>
<reference id="vnfRequestHandlerService" availability="optional" activation="eager"
- interface="org.openecomp.appc.requesthandler.RequestHandler" filter="(level=VNF)"/>
+ interface="org.onap.appc.requesthandler.RequestHandler" filter="(level=VNF)"/>
<reference id="vmRequestHandlerService" availability="optional" activation="eager"
- interface="org.openecomp.appc.requesthandler.RequestHandler" filter="(level=VM)"/>
+ interface="org.onap.appc.requesthandler.RequestHandler" filter="(level=VM)"/>
<reference id="LifecyclemanagerRef" availability="mandatory" activation="eager"
- interface="org.openecomp.appc.lifecyclemanager.LifecycleManager"/>
+ interface="org.onap.appc.lifecyclemanager.LifecycleManager"/>
<reference id="ExecutionQueueServiceRef" availability="mandatory" activation="eager"
- interface="org.openecomp.appc.executionqueue.ExecutionQueueService"/>
+ interface="org.onap.appc.executionqueue.ExecutionQueueService"/>
- <service id="commandExecutorService" interface="org.openecomp.appc.executor.CommandExecutor"
+ <service id="commandExecutorService" interface="org.onap.appc.executor.CommandExecutor"
ref="commandExecutorBean"/>
</blueprint>