72b11d76d6d67c44e2719d1d695ddb98ec32b759
[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-2020 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
30 /**
31  * Parameters for communicating with PDPs.
32  */
33 @NotNull
34 @NotBlank
35 @Getter
36 public class PdpParameters extends ParameterGroupImpl {
37
38     /**
39      * Default maximum message age, in milliseconds, that should be examined. Any message
40      * older than this is discarded.
41      */
42     public static final long DEFAULT_MAX_AGE_MS = TimeUnit.MILLISECONDS.convert(10, TimeUnit.MINUTES);
43
44
45     @Min(1)
46     private long heartBeatMs;
47
48     @Min(1)
49     private long maxMessageAgeMs =  DEFAULT_MAX_AGE_MS;
50
51     private PdpUpdateParameters updateParameters;
52     private PdpStateChangeParameters stateChangeParameters;
53
54
55     /**
56      * Constructs the object.
57      */
58     public PdpParameters() {
59         super(PdpParameters.class.getSimpleName());
60     }
61 }