e491fa716f387b4759a95470ef411a441eba99bb
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / model / HeartbeatFields.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.vesagent.model;\r
20 \r
21 import com.fasterxml.jackson.annotation.JsonInclude;\r
22 \r
23 @JsonInclude(JsonInclude.Include.NON_NULL)\r
24 public class HeartbeatFields {\r
25   public String heartbeatFieldsVersion;\r
26   public int heartbeatInterval;\r
27 \r
28   public String getHeartbeatFieldsVersion() {\r
29     return heartbeatFieldsVersion;\r
30   }\r
31 \r
32   public void setHeartbeatFieldsVersion(String heartbeatFieldsVersion) {\r
33     this.heartbeatFieldsVersion = heartbeatFieldsVersion;\r
34   }\r
35 \r
36   public int getHeartbeatInterval() {\r
37     return heartbeatInterval;\r
38   }\r
39 \r
40   public void setHeartbeatInterval(int heartbeatInterval) {\r
41     this.heartbeatInterval = heartbeatInterval;\r
42   }\r
43 }\r