Migrate pap startup & controllers to spring boot
[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 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.onap.policy.models.provider.PolicyModelsProviderParameters;
36 import org.springframework.boot.context.properties.ConfigurationProperties;
37 import org.springframework.context.annotation.Configuration;
38
39 /**
40  * Class to hold all parameters needed for pap component.
41  *
42  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
43  */
44 @NotNull
45 @NotBlank
46 @Getter
47 @Setter
48 @Configuration
49 @ConfigurationProperties(prefix = "pap")
50 public class PapParameterGroup extends ParameterGroupImpl {
51     @Valid
52     @ParameterGroupConstraint
53     private PdpParameters pdpParameters;
54     @Valid
55     @ParameterGroupConstraint
56     private PolicyModelsProviderParameters databaseProviderParameters;
57     private boolean savePdpStatisticsInDb;
58     @Valid
59     @ParameterGroupConstraint
60     private TopicParameterGroup topicParameterGroup;
61     // API, Distribution Health Check REST client parameters.
62     @ParameterGroupConstraint
63     private List<@NotNull @Valid RestClientParameters> healthCheckRestClientParameters;
64
65     public PapParameterGroup() {
66         super();
67     }
68
69     /**
70      * Create the pap parameter group.
71      *
72      * @param name the parameter group name
73      */
74     public PapParameterGroup(final String name) {
75         super(name);
76     }
77 }