Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / java / org / onap / vid / category / CategoryParameterOptionRep.java
1 package org.onap.vid.category;
2
3 /*-
4  * ============LICENSE_START=======================================================
5  * VID
6  * ================================================================================
7  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
8  * Modifications Copyright (C) 2018 - 2019 Nokia. All rights reserved.
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  * 
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  * 
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END=========================================================
22  */
23
24 import java.util.Objects;
25
26 public class CategoryParameterOptionRep {
27
28     private String id;
29     private String name;
30
31     public CategoryParameterOptionRep() {
32     }
33
34     public CategoryParameterOptionRep(String id, String name) {
35         this.id = id;
36         this.name = name;
37     }
38
39     public String getId() {
40         return id;
41     }
42
43     public void setId(String id) {
44         this.id = id;
45     }
46
47     public String getName() {
48         return name;
49     }
50
51     public void setName(String name) {
52         this.name = name;
53     }
54
55     @Override
56     public boolean equals(Object o) {
57         if (this == o) return true;
58         if (o == null || this.getClass() != o.getClass()) return false;
59         CategoryParameterOptionRep that = (CategoryParameterOptionRep) o;
60         return Objects.equals(this.id, that.id) &&
61                 Objects.equals(this.name, that.name);
62     }
63
64     @Override
65     public int hashCode() {
66         return Objects.hash(this.id, this.name);
67     }
68 }