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