Replaced all tabs with spaces in java and pom.xml
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / client / test / rest / ASDCRestInterface.java
index e9e5372..14ea0cd 100644 (file)
@@ -24,7 +24,6 @@ package org.onap.so.asdc.client.test.rest;
 
 
 import java.io.IOException;
-
 import javax.transaction.Transactional;
 import javax.ws.rs.HeaderParam;
 import javax.ws.rs.POST;
@@ -32,7 +31,6 @@ import javax.ws.rs.Path;
 import javax.ws.rs.Produces;
 import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
-
 import org.onap.so.asdc.client.ASDCController;
 import org.onap.so.asdc.client.exceptions.ASDCControllerException;
 import org.onap.so.asdc.client.exceptions.ASDCParametersException;
@@ -49,8 +47,9 @@ import org.springframework.context.annotation.Profile;
 import org.springframework.stereotype.Component;
 
 /**
- * This is a TEST only rest interface.  It is not used in production, it is used to aid in testing the ASDC service on jboss without the need to be connected 
- * to the ASDC service broker.  It starts the test at the treatNotification step and simulates both the notification step as well as the artifact download step.
+ * This is a TEST only rest interface. It is not used in production, it is used to aid in testing the ASDC service on
+ * jboss without the need to be connected to the ASDC service broker. It starts the test at the treatNotification step
+ * and simulates both the notification step as well as the artifact download step.
  * 
  * i.e. http://localhost:8080/asdc/treatNotification/v1
  * 
@@ -65,57 +64,58 @@ import org.springframework.stereotype.Component;
 @Profile("test")
 public class ASDCRestInterface {
 
-       private static DistributionClientEmulator distributionClientEmulator;
-       
-       private static JsonStatusData statusData;
-       
-       private static final Logger logger = LoggerFactory.getLogger(ASDCRestInterface.class );
-       
-       @Autowired
-       private ASDCController asdcController;
-       
-       @Autowired
-       private ToscaResourceInstaller toscaInstaller;
+    private static DistributionClientEmulator distributionClientEmulator;
+
+    private static JsonStatusData statusData;
+
+    private static final Logger logger = LoggerFactory.getLogger(ASDCRestInterface.class);
+
+    @Autowired
+    private ASDCController asdcController;
+
+    @Autowired
+    private ToscaResourceInstaller toscaInstaller;
+
+    @POST
+    @Path("/treatNotification/v1")
+    @Produces(MediaType.APPLICATION_JSON)
+    @Transactional
+    public Response invokeASDCService(NotificationDataImpl request,
+            @HeaderParam("resource-location") String resourceLocation)
+            throws ASDCControllerException, ASDCParametersException, IOException {
+        distributionClientEmulator = new DistributionClientEmulator(resourceLocation);
+
+        asdcController.setControllerName("asdc-controller1");
+        asdcController.setDistributionClient(distributionClientEmulator);
+        asdcController.initASDC();
+        asdcController.treatNotification(request);
+        asdcController.closeASDC();
+        return Response.status(200).build();
+    }
+
+    @POST
+    @Path("/statusData/v1")
+    @Produces(MediaType.APPLICATION_JSON)
+    @Transactional
+    public Response invokeASDCStatusData(String request) {
+
+        try {
+            distributionClientEmulator = new DistributionClientEmulator("resource-examples/");
+            statusData = JsonStatusData.instantiateNotifFromJsonFile("resource-examples/");
 
-       @POST
-       @Path("/treatNotification/v1")
-       @Produces(MediaType.APPLICATION_JSON)
-       @Transactional
-       public Response invokeASDCService(NotificationDataImpl request, @HeaderParam("resource-location") String resourceLocation)
-                       throws ASDCControllerException, ASDCParametersException, IOException {
-               distributionClientEmulator = new DistributionClientEmulator(resourceLocation);
-               
-               asdcController.setControllerName("asdc-controller1");
-               asdcController.setDistributionClient(distributionClientEmulator);       
-               asdcController.initASDC();      
-               asdcController.treatNotification(request);
-               asdcController.closeASDC();
-               return Response.status(200).build();
-       }
-       
-       @POST
-       @Path("/statusData/v1")
-       @Produces(MediaType.APPLICATION_JSON)
-       @Transactional
-       public Response invokeASDCStatusData(String request) {
-                               
-               try{
-                       distributionClientEmulator = new DistributionClientEmulator("resource-examples/");
-                       statusData = JsonStatusData.instantiateNotifFromJsonFile("resource-examples/");
-               
-                       ASDCController asdcController = new ASDCController("asdc-controller1", distributionClientEmulator);
-                       asdcController.initASDC();
-                       toscaInstaller.installTheComponentStatus(statusData);
-                       asdcController.closeASDC();
-               }catch(Exception e){
-                       logger.info("Error caught " + e.getMessage());
-                       logger.error("{} {} {} {} {} {}", MessageEnum.ASDC_GENERAL_EXCEPTION.toString(),
-                               "Exception caught during ASDCRestInterface", "ASDC", "invokeASDCService",
-                               ErrorCode.BusinessProcesssError.getValue(), "Exception in invokeASDCService", e);
-               }
-               logger.info("ASDC Updates are complete");
-               logger.info("{} {} {} {}", MessageEnum.ASDC_ARTIFACT_DEPLOY_SUC.toString(), statusData.getDistributionID(), "ASDC",
-                       "ASDC Updates Are Complete");
-               return null;
-       }
+            ASDCController asdcController = new ASDCController("asdc-controller1", distributionClientEmulator);
+            asdcController.initASDC();
+            toscaInstaller.installTheComponentStatus(statusData);
+            asdcController.closeASDC();
+        } catch (Exception e) {
+            logger.info("Error caught " + e.getMessage());
+            logger.error("{} {} {} {} {} {}", MessageEnum.ASDC_GENERAL_EXCEPTION.toString(),
+                    "Exception caught during ASDCRestInterface", "ASDC", "invokeASDCService",
+                    ErrorCode.BusinessProcesssError.getValue(), "Exception in invokeASDCService", e);
+        }
+        logger.info("ASDC Updates are complete");
+        logger.info("{} {} {} {}", MessageEnum.ASDC_ARTIFACT_DEPLOY_SUC.toString(), statusData.getDistributionID(),
+                "ASDC", "ASDC Updates Are Complete");
+        return null;
+    }
 }