2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * Modifications Copyright (C) 2019 Nordix Foundation.
5 * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
19 * SPDX-License-Identifier: Apache-2.0
20 * ============LICENSE_END=========================================================
23 package org.onap.policy.apex.testsuites.integration.context.entities;
25 import java.util.Arrays;
26 import java.util.List;
27 import javax.persistence.EmbeddedId;
28 import javax.persistence.Entity;
29 import javax.persistence.Table;
30 import javax.xml.bind.annotation.XmlElement;
31 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
32 import lombok.AllArgsConstructor;
33 import lombok.EqualsAndHashCode;
36 import lombok.ToString;
37 import org.apache.commons.lang3.builder.CompareToBuilder;
38 import org.onap.policy.apex.model.basicmodel.concepts.AxConcept;
39 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
40 import org.onap.policy.apex.model.basicmodel.concepts.AxReferenceKey;
41 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
42 import org.onap.policy.apex.model.basicmodel.xml.AxReferenceKeyAdapter;
45 * The Class ReferenceKeyTestEntity provides a reference key test concept.
48 @Table(name = "ReferenceKeyTestEntity")
52 @EqualsAndHashCode(callSuper = false)
54 public class ReferenceKeyTestEntity extends AxConcept {
55 private static final long serialVersionUID = -2962570563281067895L;
58 @XmlElement(name = "key", required = true)
59 @XmlJavaTypeAdapter(AxReferenceKeyAdapter.class)
60 protected AxReferenceKey key;
62 private double doubleValue;
65 * Instantiates a new reference key test entity.
67 public ReferenceKeyTestEntity() {
68 this.key = new AxReferenceKey();
73 * Instantiates a new reference key test entity.
75 * @param doubleValue the double value
77 public ReferenceKeyTestEntity(final Double doubleValue) {
78 this.key = new AxReferenceKey();
79 this.doubleValue = doubleValue;
86 public List<AxKey> getKeys() {
87 return Arrays.asList((AxKey) getKey());
93 * @return true, if successful
95 public boolean checkSetKey() {
96 return (this.key != null);
103 public AxValidationResult validate(final AxValidationResult result) {
104 return key.validate(result);
111 public void clean() {
119 public AxConcept copyTo(final AxConcept target) {
120 final Object copyObject = ((target == null) ? new ReferenceKeyTestEntity() : target);
121 if (copyObject instanceof ReferenceKeyTestEntity) {
122 final ReferenceKeyTestEntity copy = ((ReferenceKeyTestEntity) copyObject);
123 if (this.checkSetKey()) {
124 copy.setKey(new AxReferenceKey(key));
128 copy.doubleValue = doubleValue;
139 public int compareTo(final AxConcept otherObj) {
140 if (otherObj == null) {
143 if (this == otherObj) {
146 if (getClass() != otherObj.getClass()) {
149 final ReferenceKeyTestEntity other = (ReferenceKeyTestEntity) otherObj;
150 return new CompareToBuilder()
151 .append(key, other.key)
152 .append(doubleValue, other.doubleValue)