Limit number of topics per mmagent whitelist
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / model / BrTopic.java
index a7041d0..7de42f1 100644 (file)
@@ -30,6 +30,7 @@ public class BrTopic {
        
        private String brSource;
        private String brTarget;
+       private String mmAgentName;
        private int topicCount;
        
        // no-op constructor used by framework
@@ -60,6 +61,14 @@ public class BrTopic {
                this.topicCount = topicCount;
        }
 
+       public String getMmAgentName() {
+               return mmAgentName;
+       }
+
+       public void setMmAgentName(String mmAgentName) {
+               this.mmAgentName = mmAgentName;
+       }
+
 
 
 }