update the package name
[dmaap/messagerouter/mirroragent.git] / src / main / java / org / onap / dmaap / mr / dmaapMMAgent / dao / MirrorMaker.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
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  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.mr.dmaapMMAgent.dao;
23
24 public class MirrorMaker {
25         public String name;
26         public String consumer;
27         public String producer;
28         public String whitelist;
29         public String status;
30         public int numStreams=1;
31         public boolean enablelogCheck = false;
32
33         public String getStatus() {
34                 return status;
35         }
36
37         public void setStatus(String status) {
38                 this.status = status;
39         }
40
41         public String getName() {
42                 return name;
43         }
44
45         public void setName(String name) {
46                 this.name = name;
47         }
48
49         public String getConsumer() {
50                 return consumer;
51         }
52
53         public void setConsumer(String consumer) {
54                 this.consumer = consumer;
55         }
56
57         public String getProducer() {
58                 return producer;
59         }
60
61         public void setProducer(String producer) {
62                 this.producer = producer;
63         }
64
65         public String getWhitelist() {
66                 return whitelist;
67         }
68
69         public void setWhitelist(String whitelist) {
70                 this.whitelist = whitelist;
71         }
72
73         public int getNumStreams() {
74                 return numStreams;
75         }
76
77         public void setNumStreams(int numStreams) {
78                 this.numStreams = numStreams;
79         }
80
81         public boolean isEnablelogCheck() {
82                 return enablelogCheck;
83         }
84
85         public void setEnablelogCheck(boolean enablelogCheck) {
86                 this.enablelogCheck = enablelogCheck;
87         }
88
89 }