7fe33c82232c8e972e08ef48c36c3d0fec3f5858
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / util / VesAgentConstants.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.util;\r
20 \r
21 /**\r
22  * \r
23  * @version 1.0\r
24  * @since June 5, 2020\r
25  * @author Prashant Kumar\r
26  */\r
27 \r
28 public class VesAgentConstants {\r
29 \r
30   public static final String HEART_BEAT = "heartbeat";\r
31 \r
32   public static final String HEART_BEAT_PERIOD = "heartbeat.heartbeatPeriod";\r
33   public static final String HEART_BEAT_PERIOD_DEFAULT_VAL = "5"; // IN MIUTES\r
34 \r
35   public static final String COUNT_DOWN_TIMER = "heartbeat.countDownTimer";\r
36 \r
37   public static final String ENODEB_NAME = "ENODEB_NAME";\r
38 \r
39   public static final String OBJECT_DATA_TYPE = "object";\r
40 \r
41   public static final String REMOVE_HEART_BEAT_TIMER_VAL = "0";\r
42   public static final int DEVICE_IS_REACHABLE = 100;\r
43   public static final String ABORTED_BY_BOOT_BOOTSTRAP = "8002";\r
44 \r
45   public static final int RPC_SUCCESS = 0;\r
46   public static final int RPC_FAILED = 1;\r
47   public static final String INVALID_ARGUMENTS = "9003";\r
48   public static final String INVALID_PARAMETER_NAME = "9005";\r
49   public static final String INVALID_PARAMETER_VALUE = "9007";\r
50 \r
51 \r
52 }\r