aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/roles/Role.java
blob: d4ded530359b1b70f8dde39ba2bed8baf19f2fff (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.openecomp.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 serviceName, String serviceType, String tenant) {
        this.ecompRole = ecompRole;
        this.subscribeName = serviceName;
        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;
    }



}