Removed db-based statistics feature
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / parameters / PapParameterGroup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property.
5  *  Modifications Copyright (C) 2021-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.pap.main.parameters;
24
25 import java.util.List;
26 import lombok.Getter;
27 import lombok.Setter;
28 import org.onap.policy.common.endpoints.parameters.RestClientParameters;
29 import org.onap.policy.common.endpoints.parameters.TopicParameterGroup;
30 import org.onap.policy.common.parameters.ParameterGroupImpl;
31 import org.onap.policy.common.parameters.annotations.NotBlank;
32 import org.onap.policy.common.parameters.annotations.NotNull;
33 import org.onap.policy.common.parameters.annotations.Valid;
34 import org.onap.policy.common.parameters.validation.ParameterGroupConstraint;
35 import org.springframework.boot.context.properties.ConfigurationProperties;
36 import org.springframework.context.annotation.Configuration;
37
38 /**
39  * Class to hold all parameters needed for pap component.
40  *
41  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
42  */
43 @NotNull
44 @NotBlank
45 @Getter
46 @Setter
47 @Configuration
48 @ConfigurationProperties(prefix = "pap")
49 public class PapParameterGroup extends ParameterGroupImpl {
50     @Valid
51     @ParameterGroupConstraint
52     private PdpParameters pdpParameters;
53     @Valid
54     @ParameterGroupConstraint
55     private TopicParameterGroup topicParameterGroup;
56     // API, Distribution Health Check REST client parameters.
57     @ParameterGroupConstraint
58     private List<@NotNull @Valid RestClientParameters> healthCheckRestClientParameters;
59
60     public PapParameterGroup() {
61         super();
62     }
63
64     /**
65      * Create the pap parameter group.
66      *
67      * @param name the parameter group name
68      */
69     public PapParameterGroup(final String name) {
70         super(name);
71     }
72 }