aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/aai/SubscriberWithFilter.java
blob: abd9c0f326321ef7a387967c1d52f000f929c01e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.vid.aai;

import org.codehaus.jackson.annotate.JsonProperty;
import org.openecomp.vid.model.Subscriber;

/**
 * Created by Oren on 7/5/17.
 */
public class SubscriberWithFilter extends Subscriber{

    @JsonProperty("is-permitted")
    private boolean isPermitted;

    public boolean getIsPermitted() {
        return isPermitted;
    }

    public void setIsPermitted(boolean isPermitted) {
        this.isPermitted = isPermitted;
    }
}