aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN/src/main/webapp
diff options
context:
space:
mode:
authorRob Daugherty <rd472p@att.com>2018-03-28 18:00:39 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-28 18:00:39 +0000
commit21241fb1244e2554a55b4fad999e55ecf2e8e38c (patch)
tree7fc155f0cdcc7ced86c3d46ed91a0f074da76a3b /bpmn/MSOInfrastructureBPMN/src/main/webapp
parent8f394febaf7423e6ea66007565f8aeebe23991e6 (diff)
parent5c788af30b182a75979ea30c76eb83511f5c944d (diff)
Merge "Added subworkflow for Pnf pnp"
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN/src/main/webapp')
-rw-r--r--bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml
index 6f61c8fbf4..46cea5da63 100644
--- a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml
+++ b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml
@@ -4,5 +4,14 @@
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- Spring bean to be invoked through the ApplicationContextElResolver -->
+ <bean id="aaiConnection" class="org.openecomp.mso.bpmn.infrastructure.pnf.aai.AaiConnectionImpl"/>
+
+ <bean id="checkAaiForCorrelationIdDelegate" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CheckAaiForCorrelationIdDelegate">
+ <property name="aaiConnection" ref="aaiConnection"/>
+ </bean>
+
+ <bean id="createAaiEntryWithPnfIdDelegate" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CreateAaiEntryWithPnfIdDelegate">
+ <property name="aaiConnection" ref="aaiConnection"/>
+ </bean>
</beans>