Fixed the Sonar technical debt.
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / WatchPolicyNotificationTable.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.rest.jpa;
22 /*
23  * 
24  * 
25  * */
26
27 import java.io.Serializable;
28 import java.util.Objects;
29
30 import javax.persistence.Column;
31 import javax.persistence.Entity;
32 import javax.persistence.GeneratedValue;
33 import javax.persistence.GenerationType;
34 import javax.persistence.Id;
35 import javax.persistence.NamedQuery;
36 import javax.persistence.OrderBy;
37 import javax.persistence.Table;
38
39 @Entity
40 @Table(name = "WatchPolicyNotificationTable")
41 @NamedQuery(name="WatchPolicyNotificationTable.findAll", query="SELECT e FROM WatchPolicyNotificationTable e ")
42 public class WatchPolicyNotificationTable implements Serializable{
43         private static final long serialVersionUID = 1L;
44         
45         @Id
46         @GeneratedValue(strategy = GenerationType.AUTO)
47         @Column(name="id")
48         private int id;
49         
50         @Column(name="policyName", nullable=false, unique=true)
51         @OrderBy("asc")
52         private String policyName;
53         
54         @Column(name="loginIds", nullable=false, unique=true)
55         @OrderBy("asc")
56         private String loginIds;
57
58         public int getId() {
59                 return id;
60         }
61
62         public void setId(int id) {
63                 this.id = id;
64         }
65
66         public String getPolicyName() {
67                 return policyName;
68         }
69
70         public void setPolicyName(String policyName) {
71                 this.policyName = policyName;
72         }
73
74         public String getLoginIds() {
75                 return loginIds;
76         }
77
78         public void setLoginIds(String loginIds) {
79                 this.loginIds = loginIds;
80         }
81
82         @Override
83         public int hashCode() {
84                 return Objects.hash(id, policyName, loginIds);
85         }
86
87         @Override
88         public boolean equals(Object obj) {
89                 if(obj == null){
90                         return false;
91                 }
92                 if(obj == this){
93                         return true;
94                 }
95                 if(!(obj instanceof WatchPolicyNotificationTable)){
96                         return false;
97                 }
98                 
99                 return id == ((WatchPolicyNotificationTable)obj).id &&
100                 policyName.equals(((WatchPolicyNotificationTable)obj).policyName) && 
101                 loginIds.equals(((WatchPolicyNotificationTable)obj).loginIds);
102         }
103         
104         
105 }