Migrate pap startup & controllers to spring boot
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / parameters / PdpRequestParameters.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pap.main.parameters;
23
24 import lombok.Getter;
25 import lombok.Setter;
26 import org.onap.policy.common.parameters.ParameterGroupImpl;
27 import org.onap.policy.common.parameters.annotations.Min;
28 import org.onap.policy.common.parameters.annotations.NotBlank;
29 import org.onap.policy.common.parameters.annotations.NotNull;
30
31 /**
32  * Parameters for communicating with PDPs.
33  */
34 @NotNull
35 @NotBlank
36 @Getter
37 @Setter
38 public class PdpRequestParameters extends ParameterGroupImpl {
39
40     // NOTE: these fields must not be "private" or the validator will skip them
41
42     /**
43      * Maximum number of times to re-send a request to a PDP.
44      */
45     @Min(value = 0)
46     protected int maxRetryCount;
47
48     /**
49      * Maximum time to wait, in milliseconds, for a PDP response.
50      */
51     @Min(value = 0)
52     protected long maxWaitMs;
53
54
55     /**
56      * Constructs the object.
57      *
58      * @param name name of this set of parameters
59      */
60     public PdpRequestParameters(String name) {
61         super(name);
62     }
63 }