TCA: Support for VES/A&AI enrichment
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / test / java / org / openecomp / dcae / apod / analytics / cdap / plugins / domain / config / dmaap / TestDMaaPMRSourcePluginConfig.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap;\r
22 \r
23 import javax.annotation.Nullable;\r
24 \r
25 /**\r
26  * Test {@link DMaaPMRSourcePluginConfig} for testing purposes only\r
27  * <p>\r
28  * @author Rajiv Singla . Creation Date: 1/23/2017.\r
29  */\r
30 public class TestDMaaPMRSourcePluginConfig extends DMaaPMRSourcePluginConfig {\r
31 \r
32     public void setReferenceName(String referenceName) {\r
33         this.referenceName = referenceName;\r
34     }\r
35 \r
36     public void setHostName(String hostName) {\r
37         this.hostName = hostName;\r
38     }\r
39 \r
40     public void setPortNumber(@Nullable Integer portNumber) {\r
41         this.portNumber = portNumber;\r
42     }\r
43 \r
44     public void setTopicName(String topicName) {\r
45         this.topicName = topicName;\r
46     }\r
47 \r
48     public void setPollingInterval(Integer pollingInterval) {\r
49         this.pollingInterval = pollingInterval;\r
50     }\r
51 \r
52     public void setProtocol(@Nullable String protocol) {\r
53         this.protocol = protocol;\r
54     }\r
55 \r
56     public void setUserName(@Nullable String userName) {\r
57         this.userName = userName;\r
58     }\r
59 \r
60     public void setUserPassword(@Nullable String userPassword) {\r
61         this.userPassword = userPassword;\r
62     }\r
63 \r
64     public void setContentType(@Nullable String contentType) {\r
65         this.contentType = contentType;\r
66     }\r
67 \r
68     public void setConsumerId(@Nullable String consumerId) {\r
69         this.consumerId = consumerId;\r
70     }\r
71 \r
72     public void setConsumerGroup(@Nullable String consumerGroup) {\r
73         this.consumerGroup = consumerGroup;\r
74     }\r
75 \r
76     public void setTimeoutMS(@Nullable Integer timeoutMS) {\r
77         this.timeoutMS = timeoutMS;\r
78     }\r
79 \r
80     public void setMessageLimit(@Nullable Integer messageLimit) {\r
81         this.messageLimit = messageLimit;\r
82     }\r
83 \r
84 }\r