[POLICY-22] Reorganizing drools-apps
[policy/drools-applications.git] / controlloop / common / model-impl / aai / src / main / java / org / onap / policy / aai / PNF.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
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.aai;
22
23 import java.io.Serializable;
24
25 public class PNF implements Serializable {
26
27         /**
28          * 
29          */
30         private static final long serialVersionUID = -3535108358668248501L;
31
32         public String   PNFName;
33         public PNFType  PNFType;
34         
35         public PNF() {
36                 
37         }
38         
39         public PNF(PNF pnf) {
40                 this.PNFName = pnf.PNFName;
41                 this.PNFType = pnf.PNFType;
42         }
43         
44         @Override
45         public String toString() {
46                 return "PNF [PNFName=" + PNFName + ", PNFType=" + PNFType + "]";
47         }
48         @Override
49         public int hashCode() {
50                 final int prime = 31;
51                 int result = 1;
52                 result = prime * result + ((PNFName == null) ? 0 : PNFName.hashCode());
53                 result = prime * result + ((PNFType == null) ? 0 : PNFType.hashCode());
54                 return result;
55         }
56         @Override
57         public boolean equals(Object obj) {
58                 if (this == obj)
59                         return true;
60                 if (obj == null)
61                         return false;
62                 if (getClass() != obj.getClass())
63                         return false;
64                 PNF other = (PNF) obj;
65                 if (PNFName == null) {
66                         if (other.PNFName != null)
67                                 return false;
68                 } else if (!PNFName.equals(other.PNFName))
69                         return false;
70                 if (PNFType != other.PNFType)
71                         return false;
72                 return true;
73         }
74         
75 }