org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / roles / Role.java
1 package org.onap.vid.roles;
2
3 /**
4  * Created by Oren on 7/1/17.
5  */
6
7 public class Role {
8
9     private EcompRole ecompRole;
10
11     private String subscribeName;
12
13     private String serviceType;
14
15     private String tenant;
16
17     public Role(EcompRole ecompRole, String subscribeName, String serviceType, String tenant) {
18         this.ecompRole = ecompRole;
19         this.subscribeName = subscribeName;
20         this.serviceType = serviceType;
21         this.tenant = tenant;
22     }
23
24     public EcompRole getEcompRole() {
25         return ecompRole;
26     }
27
28
29     public String getSubscribeName() {
30         return subscribeName;
31     }
32
33     public void setSubscribeName(String subscribeName) {
34         this.subscribeName = subscribeName;
35     }
36
37     public String getServiceType() {
38         return serviceType;
39     }
40
41
42     public String getTenant() {
43         return tenant;
44     }
45
46
47
48 }