Add ability to turn on/off pdp statistics
[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 org.onap.policy.common.endpoints.event.comm.bus.internal.BusTopicParams;
28 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
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.models.provider.PolicyModelsProviderParameters;
35
36 /**
37  * Class to hold all parameters needed for pap component.
38  *
39  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
40  */
41 @NotNull
42 @NotBlank
43 @Getter
44 public class PapParameterGroup extends ParameterGroupImpl {
45     @Valid
46     private RestServerParameters restServerParameters;
47     @Valid
48     private PdpParameters pdpParameters;
49     @Valid
50     private PolicyModelsProviderParameters databaseProviderParameters;
51     private boolean savePdpStatisticsInDb;
52     @Valid
53     private TopicParameterGroup topicParameterGroup;
54     // API, Distribution Health Check restClient parameters.
55     private List<@NotNull @Valid BusTopicParams> healthCheckRestClientParameters;
56
57     /**
58      * Create the pap parameter group.
59      *
60      * @param name the parameter group name
61      */
62     public PapParameterGroup(final String name) {
63         super(name);
64     }
65 }