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 / TCAAnalyticsApplication.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;\r
-\r
-import co.cask.cdap.api.app.AbstractApplication;\r
-import co.cask.cdap.api.data.stream.Stream;\r
-import co.cask.cdap.api.dataset.DatasetProperties;\r
-import co.cask.cdap.api.dataset.lib.ObjectMappedTable;\r
-import org.openecomp.dcae.apod.analytics.cdap.common.CDAPComponentsConstants;\r
-import org.openecomp.dcae.apod.analytics.cdap.common.persistance.tca.TCAAlertsAbatementPersister;\r
-import org.openecomp.dcae.apod.analytics.cdap.common.persistance.tca.TCAMessageStatusPersister;\r
-import org.openecomp.dcae.apod.analytics.cdap.common.persistance.tca.TCAVESAlertsPersister;\r
-import org.openecomp.dcae.apod.analytics.cdap.common.utils.ValidationUtils;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.flow.TCAVESCollectorFlow;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.settings.TCAAppConfig;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.validator.TCAAppConfigValidator;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.worker.TCADMaaPMockSubscriberWorker;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.worker.TCADMaaPPublisherWorker;\r
-import org.openecomp.dcae.apod.analytics.cdap.tca.worker.TCADMaaPSubscriberWorker;\r
-import org.slf4j.Logger;\r
-import org.slf4j.LoggerFactory;\r
-\r
-/**\r
- * @author Rajiv Singla . Creation Date: 10/21/2016.\r
- */\r
-public class TCAAnalyticsApplication extends AbstractApplication<TCAAppConfig> {\r
-\r
-    private static final Logger LOG = LoggerFactory.getLogger(TCAAnalyticsApplication.class);\r
-\r
-    @Override\r
-    @SuppressWarnings("unchecked")\r
-    public void configure() {\r
-\r
-\r
-        // ========= Application configuration Setup ============== //\r
-        final TCAAppConfig tcaAppConfig = getConfig();\r
-\r
-        LOG.info("Configuring TCA Application with startup application configuration: {}", tcaAppConfig);\r
-\r
-        // Validate application configuration\r
-        ValidationUtils.validateSettings(tcaAppConfig, new TCAAppConfigValidator());\r
-\r
-        // App Setup\r
-        setName(tcaAppConfig.getAppName());\r
-        setDescription(tcaAppConfig.getAppDescription());\r
-\r
-        // ========== Streams Setup ============== //\r
-        // Create DMaaP MR Subscriber CDAP output stream\r
-        final String tcaSubscriberOutputStreamName = tcaAppConfig.getTcaSubscriberOutputStreamName();\r
-        LOG.info("Creating TCA VES Output Stream: {}", tcaSubscriberOutputStreamName);\r
-        final Stream subscriberOutputStream = new Stream(tcaSubscriberOutputStreamName,\r
-                CDAPComponentsConstants.TCA_FIXED_SUBSCRIBER_OUTPUT_DESCRIPTION_STREAM);\r
-        addStream(subscriberOutputStream);\r
-\r
-\r
-        // ============ Datasets Setup ======== //\r
-        // Create TCA Message Status Table\r
-        final String tcaVESMessageStatusTableName = tcaAppConfig.getTcaVESMessageStatusTableName();\r
-        final Integer messageStatusTableTTLSeconds = tcaAppConfig.getTcaVESMessageStatusTableTTLSeconds();\r
-        LOG.info("Creating TCA Message Status Table: {} with TTL: {}",\r
-                tcaVESMessageStatusTableName, messageStatusTableTTLSeconds);\r
-        final DatasetProperties messageStatusTableProperties =\r
-                TCAMessageStatusPersister.getDatasetProperties(messageStatusTableTTLSeconds);\r
-        createDataset(tcaVESMessageStatusTableName, ObjectMappedTable.class, messageStatusTableProperties);\r
-\r
-\r
-        // Create TCA Alerts Abatement Table\r
-        final String tcaAlertsAbatementTableName = tcaAppConfig.getTcaAlertsAbatementTableName();\r
-        final Integer tcaAlertsAbatementTableTTLSeconds = tcaAppConfig.getTcaAlertsAbatementTableTTLSeconds();\r
-        LOG.info("Creating Alerts Abatement Table: {} with TTL: {}",\r
-                tcaAlertsAbatementTableName, tcaAlertsAbatementTableTTLSeconds);\r
-        final DatasetProperties alertsAbatementTableProperties =\r
-                TCAAlertsAbatementPersister.getDatasetProperties(tcaAlertsAbatementTableTTLSeconds);\r
-        createDataset(tcaAlertsAbatementTableName, ObjectMappedTable.class, alertsAbatementTableProperties);\r
-\r
-        // Create TCA VES Alerts Table\r
-        final String tcaVESAlertsTableName = tcaAppConfig.getTcaVESAlertsTableName();\r
-        final Integer alertsTableTTLSeconds = tcaAppConfig.getTcaVESAlertsTableTTLSeconds();\r
-        LOG.info("Creating TCA Alerts Table: {} with TTL: {}",\r
-                tcaVESAlertsTableName, alertsTableTTLSeconds);\r
-        final DatasetProperties alertTableProperties =\r
-                TCAVESAlertsPersister.getDatasetProperties(alertsTableTTLSeconds);\r
-        createDataset(tcaVESAlertsTableName, ObjectMappedTable.class, alertTableProperties);\r
-\r
-        // =========== Flow Setup ============= //\r
-        addFlow(new TCAVESCollectorFlow(tcaAppConfig));\r
-\r
-        // ========== Workers Setup =========== //\r
-        LOG.info("Creating TCA DMaaP Subscriber Worker");\r
-        addWorker(new TCADMaaPSubscriberWorker(tcaAppConfig.getTcaSubscriberOutputStreamName()));\r
-        LOG.info("Creating TCA DMaaP Publisher Worker");\r
-        addWorker(new TCADMaaPPublisherWorker(tcaAppConfig.getTcaVESAlertsTableName()));\r
-        // TODO: Remove this before going to production\r
-        addWorker(new TCADMaaPMockSubscriberWorker(tcaAppConfig.getTcaSubscriberOutputStreamName()));\r
-    }\r
-\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;
+
+import co.cask.cdap.api.app.AbstractApplication;
+import co.cask.cdap.api.data.stream.Stream;
+import co.cask.cdap.api.dataset.DatasetProperties;
+import co.cask.cdap.api.dataset.lib.ObjectMappedTable;
+import org.onap.dcae.apod.analytics.cdap.common.CDAPComponentsConstants;
+import org.onap.dcae.apod.analytics.cdap.common.persistance.tca.TCAAlertsAbatementPersister;
+import org.onap.dcae.apod.analytics.cdap.common.persistance.tca.TCAMessageStatusPersister;
+import org.onap.dcae.apod.analytics.cdap.common.persistance.tca.TCAVESAlertsPersister;
+import org.onap.dcae.apod.analytics.cdap.common.utils.ValidationUtils;
+import org.onap.dcae.apod.analytics.cdap.tca.flow.TCAVESCollectorFlow;
+import org.onap.dcae.apod.analytics.cdap.tca.settings.TCAAppConfig;
+import org.onap.dcae.apod.analytics.cdap.tca.validator.TCAAppConfigValidator;
+import org.onap.dcae.apod.analytics.cdap.tca.worker.TCADMaaPMockSubscriberWorker;
+import org.onap.dcae.apod.analytics.cdap.tca.worker.TCADMaaPPublisherWorker;
+import org.onap.dcae.apod.analytics.cdap.tca.worker.TCADMaaPSubscriberWorker;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * @author Rajiv Singla . Creation Date: 10/21/2016.
+ */
+public class TCAAnalyticsApplication extends AbstractApplication<TCAAppConfig> {
+
+    private static final Logger LOG = LoggerFactory.getLogger(TCAAnalyticsApplication.class);
+
+    @Override
+    @SuppressWarnings("unchecked")
+    public void configure() {
+
+
+        // ========= Application configuration Setup ============== //
+        final TCAAppConfig tcaAppConfig = getConfig();
+
+        LOG.info("Configuring TCA Application with startup application configuration: {}", tcaAppConfig);
+
+        // Validate application configuration
+        ValidationUtils.validateSettings(tcaAppConfig, new TCAAppConfigValidator());
+
+        // App Setup
+        setName(tcaAppConfig.getAppName());
+        setDescription(tcaAppConfig.getAppDescription());
+
+        // ========== Streams Setup ============== //
+        // Create DMaaP MR Subscriber CDAP output stream
+        final String tcaSubscriberOutputStreamName = tcaAppConfig.getTcaSubscriberOutputStreamName();
+        LOG.info("Creating TCA VES Output Stream: {}", tcaSubscriberOutputStreamName);
+        final Stream subscriberOutputStream = new Stream(tcaSubscriberOutputStreamName,
+                CDAPComponentsConstants.TCA_FIXED_SUBSCRIBER_OUTPUT_DESCRIPTION_STREAM);
+        addStream(subscriberOutputStream);
+
+
+        // ============ Datasets Setup ======== //
+        // Create TCA Message Status Table
+        final String tcaVESMessageStatusTableName = tcaAppConfig.getTcaVESMessageStatusTableName();
+        final Integer messageStatusTableTTLSeconds = tcaAppConfig.getTcaVESMessageStatusTableTTLSeconds();
+        LOG.info("Creating TCA Message Status Table: {} with TTL: {}",
+                tcaVESMessageStatusTableName, messageStatusTableTTLSeconds);
+        final DatasetProperties messageStatusTableProperties =
+                TCAMessageStatusPersister.getDatasetProperties(messageStatusTableTTLSeconds);
+        createDataset(tcaVESMessageStatusTableName, ObjectMappedTable.class, messageStatusTableProperties);
+
+
+        // Create TCA Alerts Abatement Table
+        final String tcaAlertsAbatementTableName = tcaAppConfig.getTcaAlertsAbatementTableName();
+        final Integer tcaAlertsAbatementTableTTLSeconds = tcaAppConfig.getTcaAlertsAbatementTableTTLSeconds();
+        LOG.info("Creating Alerts Abatement Table: {} with TTL: {}",
+                tcaAlertsAbatementTableName, tcaAlertsAbatementTableTTLSeconds);
+        final DatasetProperties alertsAbatementTableProperties =
+                TCAAlertsAbatementPersister.getDatasetProperties(tcaAlertsAbatementTableTTLSeconds);
+        createDataset(tcaAlertsAbatementTableName, ObjectMappedTable.class, alertsAbatementTableProperties);
+
+        // Create TCA VES Alerts Table
+        final String tcaVESAlertsTableName = tcaAppConfig.getTcaVESAlertsTableName();
+        final Integer alertsTableTTLSeconds = tcaAppConfig.getTcaVESAlertsTableTTLSeconds();
+        LOG.info("Creating TCA Alerts Table: {} with TTL: {}",
+                tcaVESAlertsTableName, alertsTableTTLSeconds);
+        final DatasetProperties alertTableProperties =
+                TCAVESAlertsPersister.getDatasetProperties(alertsTableTTLSeconds);
+        createDataset(tcaVESAlertsTableName, ObjectMappedTable.class, alertTableProperties);
+
+        // =========== Flow Setup ============= //
+        addFlow(new TCAVESCollectorFlow(tcaAppConfig));
+
+        // ========== Workers Setup =========== //
+        LOG.info("Creating TCA DMaaP Subscriber Worker");
+        addWorker(new TCADMaaPSubscriberWorker(tcaAppConfig.getTcaSubscriberOutputStreamName()));
+        LOG.info("Creating TCA DMaaP Publisher Worker");
+        addWorker(new TCADMaaPPublisherWorker(tcaAppConfig.getTcaVESAlertsTableName()));
+        // TODO: Remove this before going to production
+        addWorker(new TCADMaaPMockSubscriberWorker(tcaAppConfig.getTcaSubscriberOutputStreamName()));
+    }
+
+
+}