Move PAP database provider to spring boot default
[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-2022 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     private boolean savePdpStatisticsInDb;
54     @Valid
55     @ParameterGroupConstraint
56     private TopicParameterGroup topicParameterGroup;
57     // API, Distribution Health Check REST client parameters.
58     @ParameterGroupConstraint
59     private List<@NotNull @Valid RestClientParameters> healthCheckRestClientParameters;
60
61     public PapParameterGroup() {
62         super();
63     }
64
65     /**
66      * Create the pap parameter group.
67      *
68      * @param name the parameter group name
69      */
70     public PapParameterGroup(final String name) {
71         super(name);
72     }
73 }