548c2625269ca77b73cec9dc17ce68bbc4665e74
[policy/models.git] / models-base / src / test / java / org / onap / policy / models / base / testconcepts / DummyPfConcept.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.List;
25 import javax.persistence.EmbeddedId;
26 import lombok.Data;
27 import lombok.EqualsAndHashCode;
28 import lombok.NonNull;
29 import org.apache.commons.lang3.ObjectUtils;
30 import org.onap.policy.common.parameters.annotations.NotBlank;
31 import org.onap.policy.common.parameters.annotations.NotNull;
32 import org.onap.policy.models.base.PfAuthorative;
33 import org.onap.policy.models.base.PfConcept;
34 import org.onap.policy.models.base.PfConceptKey;
35 import org.onap.policy.models.base.PfKey;
36 import org.onap.policy.models.base.validation.annotations.VerifyKey;
37
38 @Data
39 @EqualsAndHashCode(callSuper = false)
40 public class DummyPfConcept extends PfConcept implements PfAuthorative<DummyAuthorativeConcept> {
41     private static final long serialVersionUID = 1L;
42
43     @EmbeddedId
44     @VerifyKey
45     @NotNull
46     private PfConceptKey key;
47
48     @NotBlank
49     private String description;
50
51
52     /**
53      * The Default Constructor creates a {@link DummyPfConcept} object with a null key.
54      */
55     public DummyPfConcept() {
56         this(new PfConceptKey());
57     }
58
59     /**
60      * The Key Constructor creates a {@link DummyPfConcept} object with the given concept key.
61      *
62      * @param key the key
63      */
64     public DummyPfConcept(@NonNull final PfConceptKey key) {
65         this.key = key;
66     }
67
68     /**
69      * Copy constructor.
70      *
71      * @param copyConcept the concept to copy from
72      */
73     public DummyPfConcept(final DummyPfConcept copyConcept) {
74         super(copyConcept);
75         this.key = new PfConceptKey(copyConcept.key);
76         this.description = copyConcept.description;
77     }
78
79     @Override
80     public DummyAuthorativeConcept toAuthorative() {
81         DummyAuthorativeConcept dac = new DummyAuthorativeConcept();
82         dac.setName(key.getName());
83         dac.setVersion(key.getVersion());
84         dac.setDescription(description);
85
86         return dac;
87     }
88
89     @Override
90     public void fromAuthorative(DummyAuthorativeConcept dac) {
91         key.setName(dac.getName());
92         key.setVersion(dac.getVersion());
93         description = dac.getDescription();
94     }
95
96     @Override
97     public List<PfKey> getKeys() {
98         return getKey().getKeys();
99     }
100
101     @Override
102     public void clean() {
103         key.clean();
104
105         description = (description != null ? description.trim() : null);
106     }
107
108     @Override
109     public int compareTo(final PfConcept otherConcept) {
110         if (otherConcept == null) {
111             return -1;
112         }
113         if (this == otherConcept) {
114             return 0;
115         }
116         if (getClass() != otherConcept.getClass()) {
117             return this.hashCode() - otherConcept.hashCode();
118         }
119
120         final DummyPfConcept other = (DummyPfConcept) otherConcept;
121         if (!key.equals(other.key)) {
122             return key.compareTo(other.key);
123         }
124
125         return ObjectUtils.compare(description, other.description);
126     }
127 }