Null check for ClientResponse in PolicyUril.java
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / AppNameIdIsAdmin.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 public class AppNameIdIsAdmin {
41
42         public Long id;
43
44         public String appName;
45
46         public Boolean isAdmin;
47
48         public Boolean restrictedApp;
49
50         public Long getId() {
51                 return id;
52         }
53
54         public void setId(Long id) {
55                 this.id = id;
56         }
57
58         public String getAppName() {
59                 return appName;
60         }
61
62         public void setAppName(String appName) {
63                 this.appName = appName;
64         }
65
66         public Boolean getIsAdmin() {
67                 return isAdmin;
68         }
69
70         public void setIsAdmin(Boolean isAdmin) {
71                 this.isAdmin = isAdmin;
72         }
73
74         public Boolean getRestrictedApp() {
75                 return restrictedApp;
76         }
77
78         public void setRestrictedApp(Boolean restrictedApp) {
79                 this.restrictedApp = restrictedApp;
80         }
81
82         @Override
83         public int hashCode() {
84                 final int prime = 31;
85                 int result = 1;
86                 result = prime * result + ((appName == null) ? 0 : appName.hashCode());
87                 result = prime * result + ((id == null) ? 0 : id.hashCode());
88                 result = prime * result + ((isAdmin == null) ? 0 : isAdmin.hashCode());
89                 result = prime * result + ((restrictedApp == null) ? 0 : restrictedApp.hashCode());
90                 return result;
91         }
92
93         @Override
94         public boolean equals(Object obj) {
95                 if (this == obj)
96                         return true;
97                 if (obj == null)
98                         return false;
99                 if (getClass() != obj.getClass())
100                         return false;
101                 AppNameIdIsAdmin other = (AppNameIdIsAdmin) obj;
102                 if (appName == null) {
103                         if (other.appName != null)
104                                 return false;
105                 } else if (!appName.equals(other.appName))
106                         return false;
107                 if (id == null) {
108                         if (other.id != null)
109                                 return false;
110                 } else if (!id.equals(other.id))
111                         return false;
112                 if (isAdmin == null) {
113                         if (other.isAdmin != null)
114                                 return false;
115                 } else if (!isAdmin.equals(other.isAdmin))
116                         return false;
117                 if (restrictedApp == null) {
118                         if (other.restrictedApp != null)
119                                 return false;
120                 } else if (!restrictedApp.equals(other.restrictedApp))
121                         return false;
122                 return true;
123         }
124
125         @Override
126         public String toString() {
127                 return "AppNameIdIsAdmin [id=" + id + ", appName=" + appName + ", isAdmin=" + isAdmin + ", restrictedApp="
128                                 + restrictedApp + "]";
129         }
130         
131         
132 }