add unit test for pdpstatistics provider
[policy/models.git] / models-dao / src / test / java / org / onap / policy / models / dao / DummyTimestampEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
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.models.dao;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import javax.persistence.Column;
27 import javax.persistence.EmbeddedId;
28 import javax.persistence.Entity;
29 import javax.persistence.Table;
30
31 import lombok.Data;
32 import lombok.EqualsAndHashCode;
33 import lombok.NonNull;
34
35 import org.onap.policy.common.utils.validation.Assertions;
36 import org.onap.policy.models.base.PfConcept;
37 import org.onap.policy.models.base.PfKey;
38 import org.onap.policy.models.base.PfTimestampKey;
39 import org.onap.policy.models.base.PfValidationResult;
40
41 @Entity
42 @Table(name = "DummyTimestampEntity")
43 @Data
44 @EqualsAndHashCode(callSuper = false)
45 public class DummyTimestampEntity extends PfConcept {
46     private static final long serialVersionUID = -2962570563281067895L;
47
48     @EmbeddedId()
49     @NonNull
50     private PfTimestampKey key;
51
52     @Column
53     private double doubleValue;
54
55     /**
56      * Default constructor.
57      */
58     public DummyTimestampEntity() {
59         this.key = new PfTimestampKey();
60         this.doubleValue = 123.45;
61     }
62
63     public DummyTimestampEntity(DummyTimestampEntity source) {
64         this.key = source.key;
65         this.doubleValue = source.doubleValue;
66     }
67
68     /**
69      * Constructor.
70      *
71      * @param key the key
72      * @param doubleValue the double value
73      */
74     public DummyTimestampEntity(final PfTimestampKey key, final double doubleValue) {
75         this.key = key;
76         this.doubleValue = doubleValue;
77     }
78
79     @Override
80     public List<PfKey> getKeys() {
81         final List<PfKey> keyList = new ArrayList<>();
82         keyList.add(getKey());
83         return keyList;
84     }
85
86     @Override
87     public PfValidationResult validate(final PfValidationResult result) {
88         return key.validate(result);
89     }
90
91     @Override
92     public void clean() {
93         key.clean();
94     }
95
96
97     @Override
98     public int compareTo(@NonNull final PfConcept otherObj) {
99         if (this == otherObj) {
100             return 0;
101         }
102         if (getClass() != otherObj.getClass()) {
103             return this.getClass().getName().compareTo(otherObj.getClass().getName());
104         }
105
106         final DummyTimestampEntity other = (DummyTimestampEntity) otherObj;
107
108         return Double.compare(doubleValue, other.doubleValue);
109     }
110 }