d2add21d96ef94fd7c2c6ec26c2aaa603cb8e842
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / BulkUploadUserRoles.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.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 BulkUploadUserRoles implements Serializable{
51
52         private static final long serialVersionUID = -7478654947593502185L;
53         
54         @Id
55         @Column(name="role_name")
56         private String roleName;
57         @Id
58         @Column(name="org_user_id")
59         private String orgUserId;
60         @Id
61         @Column(name="auth_namespace")
62         private String appNameSpace;
63         
64         public String getRoleName() {
65                 return roleName;
66         }
67         public void setRoleName(String roleName) {
68                 this.roleName = roleName;
69         }
70         public String getOrgUserId() {
71                 return orgUserId;
72         }
73         public void setOrgUserId(String orgUserId) {
74                 this.orgUserId = orgUserId;
75         }
76         public String getAppNameSpace() {
77                 return appNameSpace;
78         }
79         public void setAppNameSpace(String appNameSpace) {
80                 this.appNameSpace = appNameSpace;
81         }
82         @Override
83         public int hashCode() {
84                 final int prime = 31;
85                 int result = 1;
86                 result = prime * result + ((appNameSpace == null) ? 0 : appNameSpace.hashCode());
87                 result = prime * result + ((orgUserId == null) ? 0 : orgUserId.hashCode());
88                 result = prime * result + ((roleName == null) ? 0 : roleName.hashCode());
89                 return result;
90         }
91         @Override
92         public boolean equals(Object obj) {
93                 if (this == obj)
94                         return true;
95                 if (obj == null)
96                         return false;
97                 if (getClass() != obj.getClass())
98                         return false;
99                 BulkUploadUserRoles other = (BulkUploadUserRoles) obj;
100                 if (appNameSpace == null) {
101                         if (other.appNameSpace != null)
102                                 return false;
103                 } else if (!appNameSpace.equals(other.appNameSpace))
104                         return false;
105                 if (orgUserId == null) {
106                         if (other.orgUserId != null)
107                                 return false;
108                 } else if (!orgUserId.equals(other.orgUserId))
109                         return false;
110                 if (roleName == null) {
111                         if (other.roleName != null)
112                                 return false;
113                 } else if (!roleName.equals(other.roleName))
114                         return false;
115                 return true;
116         }
117         
118         
119         
120 }