dbf483010ef859d331e3c4cf7478ba68caefcd33
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / EPUserAppCurrentRoles.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.transport;
39
40 import java.io.Serializable;
41
42 import javax.persistence.Column;
43 import javax.persistence.Entity;
44 import javax.persistence.Id;
45
46 import com.fasterxml.jackson.annotation.JsonInclude;
47
48 @Entity
49 @JsonInclude(JsonInclude.Include.NON_NULL)
50 public class EPUserAppCurrentRoles implements Serializable{
51
52         private static final long serialVersionUID = -8145807875293949759L;
53         
54         @Id
55         @Column(name="role_name")
56         private String roleName;
57         @Id
58         @Column(name="user_id")
59         private Long userId;
60         @Id
61         @Column(name="priority")
62         private String priority ;
63         @Id
64         @Column(name="role_id")
65         private Long roleId;
66         public String getRoleName() {
67                 return roleName;
68         }
69         public void setRoleName(String roleName) {
70                 this.roleName = roleName;
71         }
72         public Long getUserId() {
73                 return userId;
74         }
75         public void setUserId(Long userId) {
76                 this.userId = userId;
77         }
78         public String getPriority() {
79                 return priority;
80         }
81         public void setPriority(String priority) {
82                 this.priority = priority;
83         }
84         public Long getRoleId() {
85                 return roleId;
86         }
87         public void setRoleId(Long roleId) {
88                 this.roleId = roleId;
89         }
90         @Override
91         public int hashCode() {
92                 final int prime = 31;
93                 int result = 1;
94                 result = prime * result + ((priority == null) ? 0 : priority.hashCode());
95                 result = prime * result + ((roleId == null) ? 0 : roleId.hashCode());
96                 result = prime * result + ((roleName == null) ? 0 : roleName.hashCode());
97                 result = prime * result + ((userId == null) ? 0 : userId.hashCode());
98                 return result;
99         }
100         @Override
101         public boolean equals(Object obj) {
102                 if (this == obj)
103                         return true;
104                 if (obj == null)
105                         return false;
106                 if (getClass() != obj.getClass())
107                         return false;
108                 EPUserAppCurrentRoles other = (EPUserAppCurrentRoles) obj;
109                 if (priority == null) {
110                         if (other.priority != null)
111                                 return false;
112                 } else if (!priority.equals(other.priority))
113                         return false;
114                 if (roleId == null) {
115                         if (other.roleId != null)
116                                 return false;
117                 } else if (!roleId.equals(other.roleId))
118                         return false;
119                 if (roleName == null) {
120                         if (other.roleName != null)
121                                 return false;
122                 } else if (!roleName.equals(other.roleName))
123                         return false;
124                 if (userId == null) {
125                         if (other.userId != null)
126                                 return false;
127                 } else if (!userId.equals(other.userId))
128                         return false;
129                 return true;
130         }
131         
132         
133
134 }
135