Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / appc / ApplicationControllerClientV2.java
index d4599a5..dc5b630 100644 (file)
@@ -32,7 +32,6 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
-
 import javax.annotation.PostConstruct;
 import java.lang.reflect.InvocationTargetException;
 import java.lang.reflect.Method;
@@ -44,111 +43,111 @@ import java.util.UUID;
 @Deprecated
 public class ApplicationControllerClientV2 {
 
-       private static final String CLIENT_NAME = "MSO";
-       private static final String API_VER = "2.00";
-       private static final String ORIGINATOR_ID = "MSO";
-       private static final int FLAGS_TTL = 65000;
-       private static Logger logger = LoggerFactory.getLogger(ApplicationControllerClientV2.class);
+    private static final String CLIENT_NAME = "MSO";
+    private static final String API_VER = "2.00";
+    private static final String ORIGINATOR_ID = "MSO";
+    private static final int FLAGS_TTL = 65000;
+    private static Logger logger = LoggerFactory.getLogger(ApplicationControllerClientV2.class);
+
+    // @Autowired
+    ApplicationControllerConfiguration applicationControllerConfiguration;
 
-       //@Autowired
-       ApplicationControllerConfiguration applicationControllerConfiguration;
+    // @Autowired
+    private ApplicationControllerSupport appCSupport;
 
-       //@Autowired
-       private ApplicationControllerSupport appCSupport;
+    private static LifeCycleManagerStateful client;
 
-       private static LifeCycleManagerStateful client;
+    // @PostConstruct
+    public void buildClient() {
+        client = this.getAppCClient("");
+    }
 
-       //@PostConstruct
-       public void buildClient() {
-               client = this.getAppCClient("");
-       }
-       
-       //@PostConstruct
-       public void buildClient(String controllerType) {
-               client = this.getAppCClient(controllerType);
-       }
+    // @PostConstruct
+    public void buildClient(String controllerType) {
+        client = this.getAppCClient(controllerType);
+    }
 
-       public Status runCommand(Action action, ActionIdentifiers actionIdentifiers, Payload payload, String requestID)
-                       throws ApplicationControllerOrchestratorException {
-               Object requestObject;
-               requestObject = createRequest(action, actionIdentifiers, payload, requestID);
-               appCSupport.logLCMMessage(requestObject);
-               Method lcmMethod = appCSupport.getAPIMethod(action.name(), client, false);
-               try {
-                       Object response = lcmMethod.invoke(client, requestObject);
-                       return appCSupport.getStatusFromGenericResponse(response);
-               } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
-                       throw new RuntimeException(String.format("%s : %s", "Unable to invoke action", action.toString()), e);
-               }
-       }
+    public Status runCommand(Action action, ActionIdentifiers actionIdentifiers, Payload payload, String requestID)
+            throws ApplicationControllerOrchestratorException {
+        Object requestObject;
+        requestObject = createRequest(action, actionIdentifiers, payload, requestID);
+        appCSupport.logLCMMessage(requestObject);
+        Method lcmMethod = appCSupport.getAPIMethod(action.name(), client, false);
+        try {
+            Object response = lcmMethod.invoke(client, requestObject);
+            return appCSupport.getStatusFromGenericResponse(response);
+        } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
+            throw new RuntimeException(String.format("%s : %s", "Unable to invoke action", action.toString()), e);
+        }
+    }
 
-       public LifeCycleManagerStateful getAppCClient(String controllerType) {
-               if (client == null)
-                       try {
-                               client = AppcClientServiceFactoryProvider.getFactory(AppcLifeCycleManagerServiceFactory.class)
-                                               .createLifeCycleManagerStateful(new ApplicationContext(), getLCMProperties(controllerType));
-                       } catch (AppcClientException e) {
-                               logger.error("Error in getting LifeCycleManagerStateful Client", e);
-                       }
-               return client;
-       }
+    public LifeCycleManagerStateful getAppCClient(String controllerType) {
+        if (client == null)
+            try {
+                client = AppcClientServiceFactoryProvider.getFactory(AppcLifeCycleManagerServiceFactory.class)
+                        .createLifeCycleManagerStateful(new ApplicationContext(), getLCMProperties(controllerType));
+            } catch (AppcClientException e) {
+                logger.error("Error in getting LifeCycleManagerStateful Client", e);
+            }
+        return client;
+    }
 
-       protected Properties getLCMProperties(String controllerType) {
-               Properties properties = new Properties();
-               properties.put("topic.read", applicationControllerConfiguration.getReadTopic());
-               properties.put("topic.read.timeout", applicationControllerConfiguration.getReadTimeout());
-               properties.put("client.response.timeout",  applicationControllerConfiguration.getResponseTimeout());
-               properties.put("topic.write",  applicationControllerConfiguration.getWrite());
-               properties.put("poolMembers", applicationControllerConfiguration.getPoolMembers());
-               properties.put("client.key", applicationControllerConfiguration.getClientKey());
-               properties.put("client.secret", applicationControllerConfiguration.getClientSecret());
-               properties.put("client.name", CLIENT_NAME);
-               properties.put("service", applicationControllerConfiguration.getService());
-               return properties;
-       }
+    protected Properties getLCMProperties(String controllerType) {
+        Properties properties = new Properties();
+        properties.put("topic.read", applicationControllerConfiguration.getReadTopic());
+        properties.put("topic.read.timeout", applicationControllerConfiguration.getReadTimeout());
+        properties.put("client.response.timeout", applicationControllerConfiguration.getResponseTimeout());
+        properties.put("topic.write", applicationControllerConfiguration.getWrite());
+        properties.put("poolMembers", applicationControllerConfiguration.getPoolMembers());
+        properties.put("client.key", applicationControllerConfiguration.getClientKey());
+        properties.put("client.secret", applicationControllerConfiguration.getClientSecret());
+        properties.put("client.name", CLIENT_NAME);
+        properties.put("service", applicationControllerConfiguration.getService());
+        return properties;
+    }
 
-       public Object createRequest(Action action, ActionIdentifiers identifier, Payload payload, String requestId) {
-               Object requestObject = appCSupport.getInput(action.name());
-               try {
-                       CommonHeader commonHeader = buildCommonHeader(requestId);
-                       requestObject.getClass().getDeclaredMethod("setCommonHeader", CommonHeader.class).invoke(requestObject,
-                                       commonHeader);
-                       requestObject.getClass().getDeclaredMethod("setAction", Action.class).invoke(requestObject, action);
-                       requestObject.getClass().getDeclaredMethod("setActionIdentifiers", ActionIdentifiers.class)
-                                       .invoke(requestObject, identifier);
-                       if (payload != null) {
-                               requestObject.getClass().getDeclaredMethod("setPayload", Payload.class).invoke(requestObject, payload);
-                       }
-               } catch (IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
-                       logger.error("Error building Appc request", e);
-               }
-               return requestObject;
-       }
+    public Object createRequest(Action action, ActionIdentifiers identifier, Payload payload, String requestId) {
+        Object requestObject = appCSupport.getInput(action.name());
+        try {
+            CommonHeader commonHeader = buildCommonHeader(requestId);
+            requestObject.getClass().getDeclaredMethod("setCommonHeader", CommonHeader.class).invoke(requestObject,
+                    commonHeader);
+            requestObject.getClass().getDeclaredMethod("setAction", Action.class).invoke(requestObject, action);
+            requestObject.getClass().getDeclaredMethod("setActionIdentifiers", ActionIdentifiers.class)
+                    .invoke(requestObject, identifier);
+            if (payload != null) {
+                requestObject.getClass().getDeclaredMethod("setPayload", Payload.class).invoke(requestObject, payload);
+            }
+        } catch (IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
+            logger.error("Error building Appc request", e);
+        }
+        return requestObject;
+    }
 
-       private CommonHeader buildCommonHeader(String requestId) {
-               CommonHeader commonHeader = new CommonHeader();
-               commonHeader.setApiVer(API_VER);
-               commonHeader.setOriginatorId(ORIGINATOR_ID);
-               commonHeader.setRequestId(requestId == null ? UUID.randomUUID().toString() : requestId);
-               commonHeader.setSubRequestId(requestId);
-               Flags flags = new Flags();
-               String flagsMode = "NORMAL";
-               Mode mode = Mode.valueOf(flagsMode);
-               flags.setMode(mode);
-               String flagsForce = "FALSE";
-               Force force = Force.valueOf(flagsForce);
-               flags.setForce(force);
-               flags.setTtl(FLAGS_TTL);
-               commonHeader.setFlags(flags);
-               Instant timestamp = Instant.now();
-               ZULU zulu = new ZULU(timestamp.toString());
-               commonHeader.setTimestamp(zulu);
-               return commonHeader;
-       }
+    private CommonHeader buildCommonHeader(String requestId) {
+        CommonHeader commonHeader = new CommonHeader();
+        commonHeader.setApiVer(API_VER);
+        commonHeader.setOriginatorId(ORIGINATOR_ID);
+        commonHeader.setRequestId(requestId == null ? UUID.randomUUID().toString() : requestId);
+        commonHeader.setSubRequestId(requestId);
+        Flags flags = new Flags();
+        String flagsMode = "NORMAL";
+        Mode mode = Mode.valueOf(flagsMode);
+        flags.setMode(mode);
+        String flagsForce = "FALSE";
+        Force force = Force.valueOf(flagsForce);
+        flags.setForce(force);
+        flags.setTtl(FLAGS_TTL);
+        commonHeader.setFlags(flags);
+        Instant timestamp = Instant.now();
+        ZULU zulu = new ZULU(timestamp.toString());
+        commonHeader.setTimestamp(zulu);
+        return commonHeader;
+    }
 
-       public Flags createRequestFlags() {
-               Flags flags = new Flags();
-               flags.setTtl(6000);
-               return flags;
-       }
+    public Flags createRequestFlags() {
+        Flags flags = new Flags();
+        flags.setTtl(6000);
+        return flags;
+    }
 }