add test cases after the kafka 11 upgrade changes
[dmaap/messagerouter/messageservice.git] / src / main / java / com / att / nsa / dmaap / mmagent / MirrorMaker.java
index f9e6d89..cb19a00 100644 (file)
@@ -8,14 +8,14 @@
  *  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=========================================================
- *
+ *  
  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
  *  
  *******************************************************************************/
@@ -27,6 +27,8 @@ public class MirrorMaker {
        public String producer;
        public String whitelist;
        public String status;
+       public int numStreams =1;
+       public boolean enablelogCheck = false;
 
        public String getStatus() {
                return status;
@@ -67,4 +69,20 @@ public class MirrorMaker {
        public void setWhitelist(String whitelist) {
                this.whitelist = whitelist;
        }
+
+       public int getNumStreams() {
+               return numStreams;
+       }
+
+       public void setNumStreams(int numStreams) {
+               this.numStreams = numStreams;
+       }
+
+       public boolean isEnablelogCheck() {
+               return enablelogCheck;
+       }
+
+       public void setEnablelogCheck(boolean enablelogCheck) {
+               this.enablelogCheck = enablelogCheck;
+       }
 }
\ No newline at end of file