TCA: Replace any openecomp reference by onap
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-tca / src / main / java / org / onap / dcae / apod / analytics / cdap / tca / validator / TCAPolicyPreferencesValidator.java
-/*\r
- * ===============================LICENSE_START======================================\r
- *  dcae-analytics\r
- * ================================================================================\r
- *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
- * ================================================================================\r
- *  Licensed under the Apache License, Version 2.0 (the "License");\r
- *  you may not use this file except in compliance with the License.\r
- *   You may obtain a copy of the License at\r
- *\r
- *          http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- *  Unless required by applicable law or agreed to in writing, software\r
- *  distributed under the License is distributed on an "AS IS" BASIS,\r
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- *  See the License for the specific language governing permissions and\r
- *  limitations under the License.\r
- *  ============================LICENSE_END===========================================\r
- */\r
-\r
-package org.openecomp.dcae.apod.analytics.cdap.tca.validator;\r
-\r
-import org.openecomp.dcae.apod.analytics.cdap.common.validation.CDAPAppSettingsValidator;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.settings.TCAPolicyPreferences;\r
-import org.openecomp.dcae.apod.analytics.common.validation.GenericValidationResponse;\r
-import org.openecomp.dcae.apod.analytics.model.domain.cef.EventSeverity;\r
-import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.ClosedLoopEventStatus;\r
-import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.ControlLoopSchemaType;\r
-import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.Direction;\r
-import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.MetricsPerEventName;\r
-import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.Threshold;\r
-import org.openecomp.dcae.apod.analytics.tca.utils.TCAUtils;\r
-\r
-import java.util.List;\r
-\r
-import static org.openecomp.dcae.apod.analytics.cdap.common.utils.ValidationUtils.isEmpty;\r
-\r
-/**\r
- * Validates TCA Policy Preferences\r
- * <p>\r
- *\r
- * @author Rajiv Singla . Creation Date: 11/29/2016.\r
- */\r
-public class TCAPolicyPreferencesValidator implements CDAPAppSettingsValidator<TCAPolicyPreferences,\r
-        GenericValidationResponse<TCAPolicyPreferences>> {\r
-\r
-    private static final long serialVersionUID = 1L;\r
-\r
-    @Override\r
-    public GenericValidationResponse<TCAPolicyPreferences> validateAppSettings(\r
-            final TCAPolicyPreferences tcaPolicyPreferences) {\r
-\r
-        final GenericValidationResponse<TCAPolicyPreferences> validationResponse = new GenericValidationResponse<>();\r
-\r
-        // validate TCA Policy must domain present\r
-        final String domain = tcaPolicyPreferences.getDomain();\r
-        if (isEmpty(domain)) {\r
-            validationResponse.addErrorMessage("domain", "TCA Policy must have only one domain present");\r
-        }\r
-\r
-        // validate TCA Policy must have at least one event name\r
-        final List<String> policyEventNames = TCAUtils.getPolicyEventNames(tcaPolicyPreferences);\r
-        if (policyEventNames.isEmpty()) {\r
-            validationResponse.addErrorMessage("metricsPerEventNames",\r
-                    "TCA Policy must have at least one or more event names");\r
-        }\r
-\r
-        final List<MetricsPerEventName> metricsPerEventNames =\r
-                tcaPolicyPreferences.getMetricsPerEventName();\r
-\r
-        // validate Metrics Per Event Name\r
-        for (MetricsPerEventName metricsPerEventName : metricsPerEventNames) {\r
-\r
-            // event name must be present\r
-            final String eventName = metricsPerEventName.getEventName();\r
-            if (isEmpty(eventName)) {\r
-                validationResponse.addErrorMessage("eventName",\r
-                        "TCA Policy eventName is not present for metricsPerEventName:" + metricsPerEventName);\r
-            }\r
-\r
-            // control Loop Schema type must be present\r
-            final ControlLoopSchemaType controlLoopSchemaType = metricsPerEventName.getControlLoopSchemaType();\r
-            if (controlLoopSchemaType == null) {\r
-                validationResponse.addErrorMessage("controlLoopEventType",\r
-                        "TCA Policy controlLoopSchemaType is not present for metricsPerEventName:"\r
-                                + metricsPerEventName);\r
-            }\r
-\r
-            // must have at least 1 threshold defined\r
-            if (metricsPerEventName.getThresholds() == null || metricsPerEventName.getThresholds().isEmpty()) {\r
-                validationResponse.addErrorMessage("thresholds",\r
-                        "TCA Policy event Name must have at least one threshold. " +\r
-                                "Event Name causing this validation error:" + metricsPerEventName);\r
-            } else {\r
-                // validate each threshold must have non null - fieldPath, thresholdValue, direction and severity\r
-                final List<Threshold> eventNameThresholds = metricsPerEventName.getThresholds();\r
-                for (Threshold eventNameThreshold : eventNameThresholds) {\r
-                    final String fieldPath = eventNameThreshold.getFieldPath();\r
-                    final Long thresholdValue = eventNameThreshold.getThresholdValue();\r
-                    final Direction direction = eventNameThreshold.getDirection();\r
-                    final EventSeverity severity = eventNameThreshold.getSeverity();\r
-                    final ClosedLoopEventStatus closedLoopEventStatus = eventNameThreshold.getClosedLoopEventStatus();\r
-                    if (isEmpty(fieldPath) || thresholdValue == null || direction == null || severity == null ||\r
-                            closedLoopEventStatus == null) {\r
-                        validationResponse.addErrorMessage("threshold",\r
-                                "TCA Policy threshold must have fieldPath,thresholdValue,direction, " +\r
-                                        "closedLoopEventStatus and severity defined." +\r
-                                        "Threshold causing this validation error:" + eventNameThreshold);\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        return validationResponse;\r
-    }\r
-}\r
+/*
+ * ===============================LICENSE_START======================================
+ *  dcae-analytics
+ * ================================================================================
+ *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *          http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *  ============================LICENSE_END===========================================
+ */
+
+package org.onap.dcae.apod.analytics.cdap.tca.validator;
+
+import org.onap.dcae.apod.analytics.cdap.common.validation.CDAPAppSettingsValidator;
+import org.onap.dcae.apod.analytics.cdap.tca.settings.TCAPolicyPreferences;
+import org.onap.dcae.apod.analytics.common.validation.GenericValidationResponse;
+import org.onap.dcae.apod.analytics.model.domain.cef.EventSeverity;
+import org.onap.dcae.apod.analytics.model.domain.policy.tca.ClosedLoopEventStatus;
+import org.onap.dcae.apod.analytics.model.domain.policy.tca.ControlLoopSchemaType;
+import org.onap.dcae.apod.analytics.model.domain.policy.tca.Direction;
+import org.onap.dcae.apod.analytics.model.domain.policy.tca.MetricsPerEventName;
+import org.onap.dcae.apod.analytics.model.domain.policy.tca.Threshold;
+import org.onap.dcae.apod.analytics.tca.utils.TCAUtils;
+
+import java.util.List;
+
+import static org.onap.dcae.apod.analytics.cdap.common.utils.ValidationUtils.isEmpty;
+
+/**
+ * Validates TCA Policy Preferences
+ * <p>
+ *
+ * @author Rajiv Singla . Creation Date: 11/29/2016.
+ */
+public class TCAPolicyPreferencesValidator implements CDAPAppSettingsValidator<TCAPolicyPreferences,
+        GenericValidationResponse<TCAPolicyPreferences>> {
+
+    private static final long serialVersionUID = 1L;
+
+    @Override
+    public GenericValidationResponse<TCAPolicyPreferences> validateAppSettings(
+            final TCAPolicyPreferences tcaPolicyPreferences) {
+
+        final GenericValidationResponse<TCAPolicyPreferences> validationResponse = new GenericValidationResponse<>();
+
+        // validate TCA Policy must domain present
+        final String domain = tcaPolicyPreferences.getDomain();
+        if (isEmpty(domain)) {
+            validationResponse.addErrorMessage("domain", "TCA Policy must have only one domain present");
+        }
+
+        // validate TCA Policy must have at least one event name
+        final List<String> policyEventNames = TCAUtils.getPolicyEventNames(tcaPolicyPreferences);
+        if (policyEventNames.isEmpty()) {
+            validationResponse.addErrorMessage("metricsPerEventNames",
+                    "TCA Policy must have at least one or more event names");
+        }
+
+        final List<MetricsPerEventName> metricsPerEventNames =
+                tcaPolicyPreferences.getMetricsPerEventName();
+
+        // validate Metrics Per Event Name
+        for (MetricsPerEventName metricsPerEventName : metricsPerEventNames) {
+
+            // event name must be present
+            final String eventName = metricsPerEventName.getEventName();
+            if (isEmpty(eventName)) {
+                validationResponse.addErrorMessage("eventName",
+                        "TCA Policy eventName is not present for metricsPerEventName:" + metricsPerEventName);
+            }
+
+            // control Loop Schema type must be present
+            final ControlLoopSchemaType controlLoopSchemaType = metricsPerEventName.getControlLoopSchemaType();
+            if (controlLoopSchemaType == null) {
+                validationResponse.addErrorMessage("controlLoopEventType",
+                        "TCA Policy controlLoopSchemaType is not present for metricsPerEventName:"
+                                + metricsPerEventName);
+            }
+
+            // must have at least 1 threshold defined
+            if (metricsPerEventName.getThresholds() == null || metricsPerEventName.getThresholds().isEmpty()) {
+                validationResponse.addErrorMessage("thresholds",
+                        "TCA Policy event Name must have at least one threshold. " +
+                                "Event Name causing this validation error:" + metricsPerEventName);
+            } else {
+                // validate each threshold must have non null - fieldPath, thresholdValue, direction and severity
+                final List<Threshold> eventNameThresholds = metricsPerEventName.getThresholds();
+                for (Threshold eventNameThreshold : eventNameThresholds) {
+                    final String fieldPath = eventNameThreshold.getFieldPath();
+                    final Long thresholdValue = eventNameThreshold.getThresholdValue();
+                    final Direction direction = eventNameThreshold.getDirection();
+                    final EventSeverity severity = eventNameThreshold.getSeverity();
+                    final ClosedLoopEventStatus closedLoopEventStatus = eventNameThreshold.getClosedLoopEventStatus();
+                    if (isEmpty(fieldPath) || thresholdValue == null || direction == null || severity == null ||
+                            closedLoopEventStatus == null) {
+                        validationResponse.addErrorMessage("threshold",
+                                "TCA Policy threshold must have fieldPath,thresholdValue,direction, " +
+                                        "closedLoopEventStatus and severity defined." +
+                                        "Threshold causing this validation error:" + eventNameThreshold);
+                    }
+                }
+            }
+        }
+        return validationResponse;
+    }
+}