cef1c7bc528aa15e96b8b9630726e854fcecd212
[policy/apex-pdp.git] / core / core-engine / src / test / java / org / onap / policy / apex / core / engine / event / DummyAxKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.core.engine.event;
22
23 import java.util.List;
24
25 import org.apache.commons.lang3.NotImplementedException;
26 import org.onap.policy.apex.model.basicmodel.concepts.AxConcept;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
29
30 /**
31  * Dummy Key Class.
32  */
33 public class DummyAxKey extends AxKey {
34     private static final long serialVersionUID = 964899169013353800L;
35
36     /**
37      * {@inheritDoc}.
38      */
39     @Override
40     public int compareTo(AxConcept concept) {
41         throw new NotImplementedException("Not implemented on dummy class");
42     }
43
44     /**
45      * {@inheritDoc}.
46      */
47     @Override
48     public String getId() {
49         throw new NotImplementedException("Not implemented on dummy class");
50     }
51
52     /**
53      * {@inheritDoc}.
54      */
55     @Override
56     public Compatibility getCompatibility(AxKey otherKey) {
57         throw new NotImplementedException("Not implemented on dummy class");
58     }
59
60     /**
61      * {@inheritDoc}.
62      */
63     @Override
64     public boolean isCompatible(AxKey otherKey) {
65         throw new NotImplementedException("Not implemented on dummy class");
66     }
67
68     /**
69      * {@inheritDoc}.
70      */
71     @Override
72     public AxKey getKey() {
73         throw new NotImplementedException("Not implemented on dummy class");
74     }
75
76     /**
77      * {@inheritDoc}.
78      */
79     @Override
80     public List<AxKey> getKeys() {
81         throw new NotImplementedException("Not implemented on dummy class");
82     }
83
84     /**
85      * {@inheritDoc}.
86      */
87     @Override
88     public AxValidationResult validate(AxValidationResult result) {
89         throw new NotImplementedException("Not implemented on dummy class");
90     }
91
92     /**
93      * {@inheritDoc}.
94      */
95     @Override
96     public void clean() {
97         throw new NotImplementedException("Not implemented on dummy class");
98
99     }
100
101     /**
102      * {@inheritDoc}.
103      */
104     @Override
105     public boolean equals(Object otherObject) {
106         throw new NotImplementedException("Not implemented on dummy class");
107     }
108
109     /**
110      * {@inheritDoc}.
111      */
112     @Override
113     public String toString() {
114         return "Dummy Key";
115     }
116
117     /**
118      * {@inheritDoc}.
119      */
120     @Override
121     public int hashCode() {
122         throw new NotImplementedException("Not implemented on dummy class");
123     }
124
125     /**
126      * {@inheritDoc}.
127      */
128     @Override
129     public AxConcept copyTo(AxConcept target) {
130         throw new NotImplementedException("Not implemented on dummy class");
131     }
132 }