Added oparent to sdc main
[sdc.git] / utils / DmaapPublisher / src / main / java / org / openecomp / sdc / dmaap / TopicConfig.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdc.dmaap;
22
23 import com.google.common.base.MoreObjects;
24
25 import java.util.ArrayList;
26 import java.util.Collection;
27 import java.util.Collections;
28 import java.util.List;
29
30 public class TopicConfig {
31     
32     private String publisherPropertiesFilePath;
33     private String[] topicMessages; //messages from file
34     private final List<String> incomingTopicMessages = Collections.synchronizedList( new ArrayList<String>() );  //incoming messages from network stream|Main
35
36     public String getPublisherPropertiesFilePath() {
37         return publisherPropertiesFilePath;
38     }
39     public void setPublisherPropertiesFilePath(String publisherPropertiesFilePath) {
40         this.publisherPropertiesFilePath = publisherPropertiesFilePath;
41     }
42
43     public List<String> getIncomingTopicMessages() {
44         return incomingTopicMessages;
45     }
46     public String[] getTopicMessages() {
47         return topicMessages;
48     }
49     //add incoming message
50     public TopicConfig add( String notifications ){
51         incomingTopicMessages.add( notifications);
52         return this;
53     }
54
55     public TopicConfig addAll( Collection<String> notifications ){
56         incomingTopicMessages.addAll( notifications );
57         return this;
58     }
59
60     public void setTopicMessages(String[] topicMessages) {
61         this.topicMessages = topicMessages;
62     }
63     
64     @Override
65     public String toString() {
66         return MoreObjects.toStringHelper(this)
67                 .add("publisherPropertiesFilePath", publisherPropertiesFilePath)
68                 .add("topicMessages", topicMessages)
69                 .toString();
70     }   
71     
72 }