Removed db-based statistics feature
[policy/models.git] / models-pdp / src / main / java / org / onap / policy / models / pdp / concepts / PdpStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2021 Nordix Foundation.
4  *  Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property.
5  *  Modifications Copyright (C) 2023 Bell Canada. 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.models.pdp.concepts;
24
25 import java.util.ArrayList;
26 import java.util.List;
27 import lombok.EqualsAndHashCode;
28 import lombok.Getter;
29 import lombok.Setter;
30 import lombok.ToString;
31 import org.onap.policy.models.base.PfUtils;
32 import org.onap.policy.models.pdp.enums.PdpHealthStatus;
33 import org.onap.policy.models.pdp.enums.PdpMessageType;
34 import org.onap.policy.models.pdp.enums.PdpState;
35 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
36
37 /**
38  * Class to represent the PDP_STATUS message that all the PDP's will send to PAP.
39  *
40  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
41  */
42 @Getter
43 @Setter
44 @ToString(callSuper = true)
45 @EqualsAndHashCode(callSuper = true)
46 public class PdpStatus extends PdpMessage {
47
48     private String pdpType;
49     private PdpState state;
50     private PdpHealthStatus healthy;
51
52     /**
53      * Description of the PDP or the PDP type. May be left {@code null}.
54      */
55     private String description;
56
57     private List<ToscaConceptIdentifier> policies;
58     private String deploymentInstanceInfo;
59     private String properties;
60     private PdpResponseDetails response;
61
62     /**
63      * Constructor for instantiating PdpStatus class with message name.
64      *
65      */
66     public PdpStatus() {
67         super(PdpMessageType.PDP_STATUS);
68     }
69
70     /**
71      * Constructs the object, making a deep copy.
72      *
73      * @param source source from which to copy
74      */
75     public PdpStatus(final PdpStatus source) {
76         super(source);
77
78         this.pdpType = source.pdpType;
79         this.state = source.state;
80         this.healthy = source.healthy;
81         this.description = source.description;
82         this.policies = PfUtils.mapList(source.policies, ToscaConceptIdentifier::new, new ArrayList<>(0));
83         this.deploymentInstanceInfo = source.deploymentInstanceInfo;
84         this.properties = source.properties;
85         this.response = (source.response == null ? null : new PdpResponseDetails(source.response));
86     }
87 }