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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.context.test.concepts;
24 import java.io.Serializable;
27 * The Class TestContextItem002.
29 public class TestContextIntItem implements Serializable {
30 private static final long serialVersionUID = -8978435658277900984L;
32 private static final int HASH_PRIME_1 = 31;
34 private int intValue = 0;
39 public TestContextIntItem() {
40 // Default constructor
46 * @param intValue the int value
48 public TestContextIntItem(final Integer intValue) {
49 this.intValue = intValue;
55 * @param original the original
57 public TestContextIntItem(final TestContextIntItem original) {
58 this.intValue = original.intValue;
64 * @return the int value
66 public int getIntValue() {
73 * @param intValue the int value
75 public void setIntValue(final int intValue) {
76 this.intValue = intValue;
83 public int hashCode() {
84 final int prime = HASH_PRIME_1;
86 result = prime * result + intValue;
94 public boolean equals(final Object obj) {
101 if (getClass() != obj.getClass()) {
104 final TestContextIntItem other = (TestContextIntItem) obj;
105 return intValue == other.intValue;
112 public String toString() {
113 return "TestContextItem002 [intValue=" + intValue + "]";