Remove GroupValidationResult
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / parameters / PdpParameters.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019-2021 AT&T Intellectual Property. 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pap.main.parameters;
22
23 import java.util.concurrent.TimeUnit;
24 import lombok.Getter;
25 import org.onap.policy.common.parameters.ParameterGroupImpl;
26 import org.onap.policy.common.parameters.annotations.Min;
27 import org.onap.policy.common.parameters.annotations.NotBlank;
28 import org.onap.policy.common.parameters.annotations.NotNull;
29 import org.onap.policy.common.parameters.annotations.Valid;
30
31 /**
32  * Parameters for communicating with PDPs.
33  */
34 @NotNull
35 @NotBlank
36 @Getter
37 public class PdpParameters extends ParameterGroupImpl {
38
39     /**
40      * Default maximum message age, in milliseconds, that should be examined. Any message
41      * older than this is discarded.
42      */
43     public static final long DEFAULT_MAX_AGE_MS = TimeUnit.MILLISECONDS.convert(10, TimeUnit.MINUTES);
44
45
46     @Min(1)
47     private long heartBeatMs;
48
49     @Min(1)
50     private long maxMessageAgeMs =  DEFAULT_MAX_AGE_MS;
51
52     @Valid
53     private PdpUpdateParameters updateParameters;
54     @Valid
55     private PdpStateChangeParameters stateChangeParameters;
56
57
58     /**
59      * Constructs the object.
60      */
61     public PdpParameters() {
62         super(PdpParameters.class.getSimpleName());
63     }
64 }