4376df0d02bce107b42a85773b9a0b13347f28f5
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-tca / src / test / java / org / openecomp / dcae / apod / analytics / cdap / tca / settings / TCATestAppConfig.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *          http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.cdap.tca.settings;
22
23 /**
24  * TCA Test App Config is used for testing purposes only
25  *
26  * @author Rajiv Singla . Creation Date: 11/3/2016.
27  */
28 public class TCATestAppConfig extends TCAAppConfig {
29
30     public void setAppName(String appName) {
31         this.appName = appName;
32     }
33
34     public void setAppDescription(String appDescription) {
35         this.appDescription = appDescription;
36     }
37
38     public void setTcaSubscriberOutputStreamName(String tcaSubscriberOutputStreamName) {
39         this.tcaSubscriberOutputStreamName = tcaSubscriberOutputStreamName;
40     }
41
42     public void setThresholdCalculatorFlowletInstances(Integer thresholdCalculatorFlowletInstances) {
43         this.thresholdCalculatorFlowletInstances = thresholdCalculatorFlowletInstances;
44     }
45
46     public void setTcaVESMessageStatusTableName(String tcaVESMessageStatusTableName) {
47         this.tcaVESMessageStatusTableName = tcaVESMessageStatusTableName;
48     }
49
50     public void setTcaVESMessageStatusTableTTLSeconds(Integer tcaVESMessageStatusTableTTLSeconds) {
51         this.tcaVESMessageStatusTableTTLSeconds = tcaVESMessageStatusTableTTLSeconds;
52     }
53
54     public void setTcaVESAlertsTableName(String tcaVESAlertsTableName) {
55         this.tcaVESAlertsTableName = tcaVESAlertsTableName;
56     }
57
58     public void setTcaVESAlertsTableTTLSeconds(Integer tcaVESAlertsTableTTLSeconds) {
59         this.tcaVESAlertsTableTTLSeconds = tcaVESAlertsTableTTLSeconds;
60     }
61
62 }