commit | 59e4171c755943b1ac7e16d80980e8736045e5aa | [log] [tgz] |
---|---|---|
author | biniek <lukasz.biniek@nokia.com> | Thu May 17 12:11:50 2018 +0200 |
committer | biniek <lukasz.biniek@nokia.com> | Thu May 17 12:21:13 2018 +0200 |
tree | 7a403a18497e70d86edbd734d686c22a242d01c5 | |
parent | c82216b0be5e2fab57031056d386a192b6abbce2 [diff] [blame] |
Added checking input variables in pnf-pnp Change-Id: I1a4f4b9704385a17995e76d4b87484c2f588b889 Issue-ID: SO-506 Signed-off-by: biniek <lukasz.biniek@nokia.com>
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml index 13ab4f8..1273b30 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml +++ b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml
@@ -38,4 +38,12 @@ <property name="locations" value="classpath:dmaap.properties"/> </bean> + <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> + <property name="locations" value="classpath:pnf.properties"/> + </bean> + + <bean id="pnfCheckInputs" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.PnfCheckInputs"> + <property name="defaultTimeout" value="${defaultTimeout}"/> + </bean> + </beans>