5932769b3d196c7088502c2e158aa72e6b09f778
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.context.concepts;
23
24 import java.io.Serializable;
25
26 /**
27  * The Class TestContextItem002.
28  */
29 public class TestContextIntItem implements Serializable {
30     private static final long serialVersionUID = -8978435658277900984L;
31
32     private static final int HASH_PRIME_1 = 31;
33
34     private int intValue = 0;
35
36     /**
37      * The Constructor.
38      */
39     public TestContextIntItem() {}
40
41     /**
42      * The Constructor.
43      *
44      * @param intValue the int value
45      */
46     public TestContextIntItem(final Integer intValue) {
47         this.intValue = intValue;
48     }
49
50     /**
51      * The Constructor.
52      *
53      * @param original the original
54      */
55     public TestContextIntItem(final TestContextIntItem original) {
56         this.intValue = original.intValue;
57     }
58
59     /**
60      * Gets the int value.
61      *
62      * @return the int value
63      */
64     public int getIntValue() {
65         return intValue;
66     }
67
68     /**
69      * Sets the int value.
70      *
71      * @param intValue the int value
72      */
73     public void setIntValue(final int intValue) {
74         this.intValue = intValue;
75     }
76
77     /*
78      * (non-Javadoc)
79      *
80      * @see java.lang.Object#hashCode()
81      */
82     @Override
83     public int hashCode() {
84         final int prime = HASH_PRIME_1;
85         int result = 1;
86         result = prime * result + intValue;
87         return result;
88     }
89
90     /*
91      * (non-Javadoc)
92      *
93      * @see java.lang.Object#equals(java.lang.Object)
94      */
95     @Override
96     public boolean equals(final Object obj) {
97         if (this == obj) {
98             return true;
99         }
100         if (obj == null) {
101             return false;
102         }
103         if (getClass() != obj.getClass()) {
104             return false;
105         }
106         final TestContextIntItem other = (TestContextIntItem) obj;
107         return intValue == other.intValue;
108     }
109
110     /*
111      * (non-Javadoc)
112      *
113      * @see java.lang.Object#toString()
114      */
115     @Override
116     public String toString() {
117         return "TestContextItem002 [intValue=" + intValue + "]";
118     }
119 }