TCA: Support for VES/A&AI enrichment
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / main / java / org / openecomp / dcae / apod / analytics / cdap / plugins / validator / SimpleTCAPluginConfigValidator.java
index e0942ff..97f3f24 100644 (file)
@@ -1,91 +1,91 @@
-/*
- * ===============================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.openecomp.dcae.apod.analytics.cdap.plugins.validator;
-
-import co.cask.cdap.api.data.schema.Schema;
-import org.openecomp.dcae.apod.analytics.cdap.common.utils.ValidationUtils;
-import org.openecomp.dcae.apod.analytics.cdap.common.validation.CDAPAppSettingsValidator;
-import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.tca.SimpleTCAPluginConfig;
-import org.openecomp.dcae.apod.analytics.cdap.plugins.utils.CDAPPluginUtils;
-import org.openecomp.dcae.apod.analytics.common.validation.GenericValidationResponse;
-
-/**
- * Validator that validate {@link SimpleTCAPluginConfig}
- * <p>
- * @author Rajiv Singla . Creation Date: 2/21/2017.
- */
-public class SimpleTCAPluginConfigValidator implements CDAPAppSettingsValidator<SimpleTCAPluginConfig,
-        GenericValidationResponse<SimpleTCAPluginConfig>> {
-
-    private static final long serialVersionUID = 1L;
-
-    @Override
-    public GenericValidationResponse<SimpleTCAPluginConfig> validateAppSettings(
-            final SimpleTCAPluginConfig tcaPluginConfig) {
-
-        final GenericValidationResponse<SimpleTCAPluginConfig> validationResponse = new GenericValidationResponse<>();
-
-        if (ValidationUtils.isEmpty(tcaPluginConfig.getVesMessageFieldName())) {
-            validationResponse.addErrorMessage("vesMessageFieldName",
-                    "Missing VES Message Field Name from plugin incoming schema");
-        }
-
-        if (ValidationUtils.isEmpty(tcaPluginConfig.getPolicyJson())) {
-            validationResponse.addErrorMessage("policyJson",
-                    "Missing tca Policy Json");
-        }
-
-        final String alertFieldValue = tcaPluginConfig.getAlertFieldName();
-        final String alertFieldName = "alertFieldName";
-        if (ValidationUtils.isEmpty(alertFieldValue)) {
-            validationResponse.addErrorMessage(alertFieldName,
-                    "Missing alert Field Name that will be placed in plugin outgoing schema");
-        }
-
-        if (ValidationUtils.isEmpty(tcaPluginConfig.getMessageTypeFieldName())) {
-            validationResponse.addErrorMessage("messageTypeField",
-                    "Missing message Type Field Name that will be placed in plugin outgoing schema");
-        }
-
-
-        final String outputSchemaJson = tcaPluginConfig.getSchema();
-        if (ValidationUtils.isEmpty(outputSchemaJson)) {
-            validationResponse.addErrorMessage("output schema", "Output schema is not present");
-        } else {
-            // validate output schema - alert field name is of type string
-            if (alertFieldValue != null &&
-                    !CDAPPluginUtils.validateSchemaFieldType(outputSchemaJson, alertFieldValue, Schema.Type.STRING)) {
-                validationResponse.addErrorMessage(alertFieldName,
-                        String.format(
-                                "Alert Field Name: %s must be String type", alertFieldValue));
-            }
-            // validate output schema - alert field name is nullable
-            if (alertFieldValue != null &&
-                    !CDAPPluginUtils.validateSchemaFieldType(outputSchemaJson, alertFieldValue, Schema.Type.NULL)) {
-                validationResponse.addErrorMessage(alertFieldName,
-                        String.format(
-                                "Alert Field Name: %s must be marked as nullable type", alertFieldValue));
-            }
-        }
-
-        return validationResponse;
-    }
-}
+/*\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.plugins.validator;\r
+\r
+import co.cask.cdap.api.data.schema.Schema;\r
+import org.openecomp.dcae.apod.analytics.cdap.common.utils.ValidationUtils;\r
+import org.openecomp.dcae.apod.analytics.cdap.common.validation.CDAPAppSettingsValidator;\r
+import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.tca.SimpleTCAPluginConfig;\r
+import org.openecomp.dcae.apod.analytics.cdap.plugins.utils.CDAPPluginUtils;\r
+import org.openecomp.dcae.apod.analytics.common.validation.GenericValidationResponse;\r
+\r
+/**\r
+ * Validator that validate {@link SimpleTCAPluginConfig}\r
+ * <p>\r
+ * @author Rajiv Singla . Creation Date: 2/21/2017.\r
+ */\r
+public class SimpleTCAPluginConfigValidator implements CDAPAppSettingsValidator<SimpleTCAPluginConfig,\r
+        GenericValidationResponse<SimpleTCAPluginConfig>> {\r
+\r
+    private static final long serialVersionUID = 1L;\r
+\r
+    @Override\r
+    public GenericValidationResponse<SimpleTCAPluginConfig> validateAppSettings(\r
+            final SimpleTCAPluginConfig tcaPluginConfig) {\r
+\r
+        final GenericValidationResponse<SimpleTCAPluginConfig> validationResponse = new GenericValidationResponse<>();\r
+\r
+        if (ValidationUtils.isEmpty(tcaPluginConfig.getVesMessageFieldName())) {\r
+            validationResponse.addErrorMessage("vesMessageFieldName",\r
+                    "Missing VES Message Field Name from plugin incoming schema");\r
+        }\r
+\r
+        if (ValidationUtils.isEmpty(tcaPluginConfig.getPolicyJson())) {\r
+            validationResponse.addErrorMessage("policyJson",\r
+                    "Missing tca Policy Json");\r
+        }\r
+\r
+        final String alertFieldValue = tcaPluginConfig.getAlertFieldName();\r
+        final String alertFieldName = "alertFieldName";\r
+        if (ValidationUtils.isEmpty(alertFieldValue)) {\r
+            validationResponse.addErrorMessage(alertFieldName,\r
+                    "Missing alert Field Name that will be placed in plugin outgoing schema");\r
+        }\r
+\r
+        if (ValidationUtils.isEmpty(tcaPluginConfig.getMessageTypeFieldName())) {\r
+            validationResponse.addErrorMessage("messageTypeField",\r
+                    "Missing message Type Field Name that will be placed in plugin outgoing schema");\r
+        }\r
+\r
+\r
+        final String outputSchemaJson = tcaPluginConfig.getSchema();\r
+        if (ValidationUtils.isEmpty(outputSchemaJson)) {\r
+            validationResponse.addErrorMessage("output schema", "Output schema is not present");\r
+        } else {\r
+            // validate output schema - alert field name is of type string\r
+            if (alertFieldValue != null &&\r
+                    !CDAPPluginUtils.validateSchemaFieldType(outputSchemaJson, alertFieldValue, Schema.Type.STRING)) {\r
+                validationResponse.addErrorMessage(alertFieldName,\r
+                        String.format(\r
+                                "Alert Field Name: %s must be String type", alertFieldValue));\r
+            }\r
+            // validate output schema - alert field name is nullable\r
+            if (alertFieldValue != null &&\r
+                    !CDAPPluginUtils.validateSchemaFieldType(outputSchemaJson, alertFieldValue, Schema.Type.NULL)) {\r
+                validationResponse.addErrorMessage(alertFieldName,\r
+                        String.format(\r
+                                "Alert Field Name: %s must be marked as nullable type", alertFieldValue));\r
+            }\r
+        }\r
+\r
+        return validationResponse;\r
+    }\r
+}\r