Format java POLICY-SDK-APP
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / controller / CreateClosedLoopPMController.java
index d2b04e0..4862efd 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP Policy Engine
  * ================================================================================
  * ============LICENSE_START=======================================================
  * ONAP Policy Engine
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2019 Bell Canada
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * Modifications Copyright (C) 2019 Bell Canada
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
 
 package org.onap.policy.controller;
 
 
 package org.onap.policy.controller;
 
+import com.fasterxml.jackson.databind.ObjectMapper;
+
 import java.io.IOException;
 import java.util.LinkedHashMap;
 import java.util.List;
 import java.io.IOException;
 import java.util.LinkedHashMap;
 import java.util.List;
-
 import java.util.Objects;
 import java.util.Objects;
+
 import javax.json.JsonArray;
 import javax.json.JsonObject;
 
 import javax.json.JsonArray;
 import javax.json.JsonObject;
 
-import org.onap.policy.admin.PolicyManagerServlet;
-import org.onap.policy.common.logging.flexlogger.FlexLogger;
-import org.onap.policy.common.logging.flexlogger.Logger;
-import org.onap.policy.rest.adapter.ClosedLoopPMBody;
-import org.onap.policy.rest.adapter.PolicyRestAdapter;
-import org.onap.policy.rest.jpa.PolicyEntity;
-
-import com.fasterxml.jackson.databind.ObjectMapper;
-
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AllOfType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AttributeDesignatorType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AllOfType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AttributeDesignatorType;
@@ -45,6 +38,13 @@ import oasis.names.tc.xacml._3_0.core.schema.wd_17.AttributeValueType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.TargetType;
 
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
 import oasis.names.tc.xacml._3_0.core.schema.wd_17.TargetType;
 
+import org.onap.policy.admin.PolicyManagerServlet;
+import org.onap.policy.common.logging.flexlogger.FlexLogger;
+import org.onap.policy.common.logging.flexlogger.Logger;
+import org.onap.policy.rest.adapter.ClosedLoopPMBody;
+import org.onap.policy.rest.adapter.PolicyRestAdapter;
+import org.onap.policy.rest.jpa.PolicyEntity;
+
 public class CreateClosedLoopPMController {
 
     private static final Logger LOGGER = FlexLogger.getLogger(CreateClosedLoopPMController.class);
 public class CreateClosedLoopPMController {
 
     private static final Logger LOGGER = FlexLogger.getLogger(CreateClosedLoopPMController.class);
@@ -82,8 +82,8 @@ public class CreateClosedLoopPMController {
     }
 
     private void setPolicyAdapterNameValueAndDescription(PolicyRestAdapter policyAdapter, PolicyType policy) {
     }
 
     private void setPolicyAdapterNameValueAndDescription(PolicyRestAdapter policyAdapter, PolicyType policy) {
-        String policyNameValue = policyAdapter.getPolicyName()
-            .substring(policyAdapter.getPolicyName().indexOf("PM_") + 3);
+        String policyNameValue =
+                policyAdapter.getPolicyName().substring(policyAdapter.getPolicyName().indexOf("PM_") + 3);
         policyAdapter.setPolicyName(policyNameValue);
         String description;
         try {
         policyAdapter.setPolicyName(policyNameValue);
         String description;
         try {
@@ -98,8 +98,8 @@ public class CreateClosedLoopPMController {
     private void setClosedLoopJSONFile(PolicyRestAdapter policyAdapter, PolicyEntity entity) {
         ObjectMapper mapper = new ObjectMapper();
         try {
     private void setClosedLoopJSONFile(PolicyRestAdapter policyAdapter, PolicyEntity entity) {
         ObjectMapper mapper = new ObjectMapper();
         try {
-            ClosedLoopPMBody closedLoopBody = mapper
-                .readValue(entity.getConfigurationData().getConfigBody(), ClosedLoopPMBody.class);
+            ClosedLoopPMBody closedLoopBody =
+                    mapper.readValue(entity.getConfigurationData().getConfigBody(), ClosedLoopPMBody.class);
             policyAdapter.setJsonBodyData(closedLoopBody);
         } catch (IOException e) {
             LOGGER.error("Exception Occured" + e);
             policyAdapter.setJsonBodyData(closedLoopBody);
         } catch (IOException e) {
             LOGGER.error("Exception Occured" + e);
@@ -107,51 +107,50 @@ public class CreateClosedLoopPMController {
     }
 
     private void setPolicyAdapterMatchAttributes(final PolicyRestAdapter policyAdapter,
     }
 
     private void setPolicyAdapterMatchAttributes(final PolicyRestAdapter policyAdapter,
-        final List<AnyOfType> anyOfList) {
+            final List<AnyOfType> anyOfList) {
         anyOfList.stream()
         anyOfList.stream()
-            //Extract nonNull list of AllOfType objs from each AnyOfType obj
-            .map(AnyOfType::getAllOf).filter(Objects::nonNull)
-            .forEach(allOfList ->
-                //Extract nonNull list of MatchType objs from each AllOFType obj
+                // Extract nonNull list of AllOfType objs from each AnyOfType obj
+                .map(AnyOfType::getAllOf).filter(Objects::nonNull).forEach(allOfList ->
+                // Extract nonNull list of MatchType objs from each AllOFType obj
                 allOfList.stream().map(AllOfType::getMatch).filter(Objects::nonNull)
                 allOfList.stream().map(AllOfType::getMatch).filter(Objects::nonNull)
-                    .forEach(matchList -> matchList.forEach(match -> {
-                        // Under the match we have attribute value and
-                        // attributeDesignator. So,finally down to the actual attribute.
-                        AttributeValueType attributeValue = match.getAttributeValue();
-                        String value = (String) attributeValue.getContent().get(0);
-                        AttributeDesignatorType designator = match.getAttributeDesignator();
-                        String attributeId = designator.getAttributeId();
-                        // First match in the target is OnapName, so set that value.
-                        if ("ONAPName".equals(attributeId)) {
-                            policyAdapter.setOnapName(value);
-                        } else if ("RiskType".equals(attributeId)) {
-                            policyAdapter.setRiskType(value);
-                        } else if ("RiskLevel".equals(attributeId)) {
-                            policyAdapter.setRiskLevel(value);
-                        } else if ("guard".equals(attributeId)) {
-                            policyAdapter.setGuard(value);
-                        } else if ("TTLDate".equals(attributeId) && !value.contains("NA")) {
-                            PolicyController controller = new PolicyController();
-                            String newDate = controller.convertDate(value);
-                            policyAdapter.setTtlDate(newDate);
-                        } else if ("ServiceType".equals(attributeId)) {
-                            LinkedHashMap<String, String> serviceTypePolicyName1 = new LinkedHashMap<>();
-                            serviceTypePolicyName1.put(KEY_SERVICE_TYPE_POLICY_NAME, value);
-                            policyAdapter.setServiceTypePolicyName(serviceTypePolicyName1);
-                            LinkedHashMap<String, String> vertica = new LinkedHashMap<>();
-                            vertica.put("verticaMetrics", getVertica(value));
-                            policyAdapter.setVerticaMetrics(vertica);
-                            LinkedHashMap<String, String> desc = new LinkedHashMap<>();
-                            desc.put("policyDescription", getDescription(value));
-                            policyAdapter.setDescription(desc);
-                            LinkedHashMap<String, Object> attributes = new LinkedHashMap<>();
-                            attributes.put("attributes", getAttributes(value));
-                            policyAdapter.setAttributeFields(attributes);
-                        }
-                    })));
+                        .forEach(matchList -> matchList.forEach(match -> {
+                            // Under the match we have attribute value and
+                            // attributeDesignator. So,finally down to the actual attribute.
+                            AttributeValueType attributeValue = match.getAttributeValue();
+                            String value = (String) attributeValue.getContent().get(0);
+                            AttributeDesignatorType designator = match.getAttributeDesignator();
+                            String attributeId = designator.getAttributeId();
+                            // First match in the target is OnapName, so set that value.
+                            if ("ONAPName".equals(attributeId)) {
+                                policyAdapter.setOnapName(value);
+                            } else if ("RiskType".equals(attributeId)) {
+                                policyAdapter.setRiskType(value);
+                            } else if ("RiskLevel".equals(attributeId)) {
+                                policyAdapter.setRiskLevel(value);
+                            } else if ("guard".equals(attributeId)) {
+                                policyAdapter.setGuard(value);
+                            } else if ("TTLDate".equals(attributeId) && !value.contains("NA")) {
+                                PolicyController controller = new PolicyController();
+                                String newDate = controller.convertDate(value);
+                                policyAdapter.setTtlDate(newDate);
+                            } else if ("ServiceType".equals(attributeId)) {
+                                LinkedHashMap<String, String> serviceTypePolicyName1 = new LinkedHashMap<>();
+                                serviceTypePolicyName1.put(KEY_SERVICE_TYPE_POLICY_NAME, value);
+                                policyAdapter.setServiceTypePolicyName(serviceTypePolicyName1);
+                                LinkedHashMap<String, String> vertica = new LinkedHashMap<>();
+                                vertica.put("verticaMetrics", getVertica(value));
+                                policyAdapter.setVerticaMetrics(vertica);
+                                LinkedHashMap<String, String> desc = new LinkedHashMap<>();
+                                desc.put("policyDescription", getDescription(value));
+                                policyAdapter.setDescription(desc);
+                                LinkedHashMap<String, Object> attributes = new LinkedHashMap<>();
+                                attributes.put("attributes", getAttributes(value));
+                                policyAdapter.setAttributeFields(attributes);
+                            }
+                        })));
     }
 
     }
 
-    //get vertica metrics data from the table
+    // get vertica metrics data from the table
     private String getVertica(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {
     private String getVertica(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {
@@ -162,7 +161,7 @@ public class CreateClosedLoopPMController {
         return null;
     }
 
         return null;
     }
 
-    //get policy description from the table
+    // get policy description from the table
     private String getDescription(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {
     private String getDescription(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {
@@ -173,7 +172,7 @@ public class CreateClosedLoopPMController {
         return null;
     }
 
         return null;
     }
 
-    //get Attributes
+    // get Attributes
     private JsonObject getAttributes(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {
     private JsonObject getAttributes(String policyName) {
         JsonArray data = PolicyManagerServlet.getPolicyNames();
         for (int i = 0; i < data.size(); i++) {