Java 17 Upgrade
[policy/models.git] / models-base / src / test / java / org / onap / policy / models / base / testconcepts / DummyPfKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019, 2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
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.models.base.testconcepts;
23
24 import java.io.Serial;
25 import java.util.List;
26 import lombok.NonNull;
27 import org.onap.policy.common.parameters.BeanValidationResult;
28 import org.onap.policy.models.base.PfConcept;
29 import org.onap.policy.models.base.PfKey;
30
31 public class DummyPfKey extends PfKey {
32     @Serial
33     private static final long serialVersionUID = 1L;
34
35     public DummyPfKey() {
36         // Default constructor
37     }
38
39     public DummyPfKey(DummyPfKey source) {
40         super(source);
41     }
42
43     @Override
44     public int compareTo(@NonNull PfConcept arg0) {
45         return 0;
46     }
47
48     @Override
49     public String getId() {
50         return null;
51     }
52
53     @Override
54     public boolean isNullKey() {
55         return false;
56     }
57
58     @Override
59     public Compatibility getCompatibility(@NonNull PfKey otherKey) {
60         return null;
61     }
62
63     @Override
64     public boolean isCompatible(@NonNull PfKey otherKey) {
65         return false;
66     }
67
68     @Override
69     public PfKey getKey() {
70         return null;
71     }
72
73     @Override
74     public List<PfKey> getKeys() {
75         return List.of(getKey());
76     }
77
78     @Override
79     public BeanValidationResult validate(@NonNull String fieldName) {
80         return null;
81     }
82
83     @Override
84     public void clean() {
85         // nothing to do
86     }
87
88     @Override
89     public boolean equals(Object otherObject) {
90         return false;
91     }
92
93     @Override
94     public String toString() {
95         return "";
96     }
97
98     @Override
99     public int hashCode() {
100         return 0;
101     }
102
103     @Override
104     public boolean isNewerThan(@NonNull PfKey otherKey) {
105         // TODO Auto-generated method stub
106         return false;
107     }
108
109     @Override
110     public int getMajorVersion() {
111         return 0;
112     }
113
114     @Override
115     public int getMinorVersion() {
116         return 0;
117     }
118
119     @Override
120     public int getPatchVersion() {
121         return 0;
122     }
123 }