nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / domain / UserIdRoleId.java
1 /*-
2  * ================================================================================
3  * eCOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.domain;
21
22 import java.io.Serializable;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.Id;
27
28 @Entity
29 public class UserIdRoleId implements Serializable{
30         
31         private static final long serialVersionUID = 1L;
32
33         @Id
34         @Column(name="USER_ID")
35         private String user_Id;
36         
37         @Column(name="ROLE_ID")
38         private String roleId;
39         
40         @Column(name="ORG_USER_ID")
41         private String orgUserId;
42         
43         @Column(name="APP_ID")
44         private String appId;
45
46         public String getUser_Id() {
47                 return user_Id;
48         }
49
50         public void setUser_Id(String id) {
51                 this.user_Id = id;
52         }
53
54         public String getRoleId() {
55                 return roleId;
56         }
57
58         public void setRoleId(String roleId) {
59                 this.roleId = roleId;
60         }
61         
62         public String getAppId() {
63                 return appId;
64         }
65
66         public void setAppId(String appId) {
67                 this.appId = appId;
68         }
69         
70         public String getOrgUserId() {
71                 return orgUserId;
72         }
73
74         public void setOrgUserId(String orgUserId) {
75                 this.orgUserId = orgUserId;
76         }
77 }