Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / SubscriberWithFilter.java
1 package org.onap.vid.aai;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4 import org.onap.vid.model.Subscriber;
5
6 /**
7  * Created by Oren on 7/5/17.
8  */
9 public class SubscriberWithFilter extends Subscriber{
10
11     @JsonProperty("is-permitted")
12     private boolean isPermitted;
13
14     public boolean getIsPermitted() {
15         return isPermitted;
16     }
17
18     public void setIsPermitted(boolean isPermitted) {
19         this.isPermitted = isPermitted;
20     }
21 }