aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/roles/Role.java
blob: 902da5bcd39dd7f6821cd64b4e36e04d0c0e2bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.onap.vid.roles;

/**
 * Created by Oren on 7/1/17.
 */

public class Role {

    private EcompRole ecompRole;

    private String subscribeName;

    private String serviceType;

    private String tenant;

    public Role(EcompRole ecompRole, String subscribeName, String serviceType, String tenant) {
        this.ecompRole = ecompRole;
        this.subscribeName = subscribeName;
        this.serviceType = serviceType;
        this.tenant = tenant;
    }

    public EcompRole getEcompRole() {
        return ecompRole;
    }


    public String getSubscribeName() {
        return subscribeName;
    }

    public void setSubscribeName(String subscribeName) {
        this.subscribeName = subscribeName;
    }

    public String getServiceType() {
        return serviceType;
    }


    public String getTenant() {
        return tenant;
    }



}