Generic cds payload for vnf/vf-module/service.

Things done-
-Fixed review comments.
-Added logic to create payload using scope and action.
-Populate instance parameters from SO-request to CDS payload for VNF.
-Implementation of setting orchestration status after CDS completes its operation based on SO scope.
-Make use of ControllerRunnable interface.
-Changed actionname to actionName to action.value as per Oscar's suggestion.
-Setting orchestration status after CDS completes its operation for VF-Module.
-Populate instance paraneters from SO to CDS for VF-Module.

Issue-ID: SO-2312
Signed-off-by: prathamesh <prathamesh_morde@yahoo.ca>
Change-Id: I026d9f7909e486c68f274b7e56c8bd7c8fdcd521
Signed-off-by: prathamesh <prathamesh_morde@yahoo.ca>
Signed-off-by: tragait <rahul.tyagi@est.tech>
diff --git a/pom.xml b/pom.xml
index 0955338..0719b20 100644
--- a/pom.xml
+++ b/pom.xml
@@ -337,28 +337,28 @@
         </configuration>
       </plugin>
       <plugin>
-	<groupId>org.jacoco</groupId>
-	<artifactId>jacoco-maven-plugin</artifactId>
-	<version>${jacoco.version}</version>
-	<executions>
-	  <execution>
-	     <id>prepare-agent</id>
-             <goals>
-	       <goal>prepare-agent</goal>
-	     </goals>
-	  </execution>
-	  <execution>
-	     <id>report</id>
-	     <goals>
-	        <goal>report</goal>
-	     </goals>
-	     <configuration>
-		<dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
-		<outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
-	     </configuration>
-	   </execution>
-	</executions>
-      </plugin> 
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+        <version>${jacoco.version}</version>
+        <executions>
+          <execution>
+            <id>prepare-agent</id>
+            <goals>
+              <goal>prepare-agent</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>report</id>
+            <goals>
+              <goal>report</goal>
+            </goals>
+            <configuration>
+              <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
+              <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>license-maven-plugin</artifactId>