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>