SPV is failing if Admin state
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / util / MapperConstants.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.mapper.util;
20
21 public class MapperConstants {
22   public static final String HEART_BEAT_PERIOD = "heartbeatPeriod";
23   public static final String HEART_BEAT = "heartbeat";
24   public static final String COUNT_DOWN_TIMER = "countDownTimer";
25   public static final String COUNT_DOWN_TIMER_SET_VAL = "0";
26   public static final String INVALID_COUNT_DOWN_TIMER_MSG =
27       "Only 0 is allowed for countDownTimer value during set operation";
28   public static final String INVALID_PARAM_VAL_ERROR_CODE = "9007";
29
30   public static final int DEVICE_REACHABLE_STATUS_CODE = 100;
31   public static final int DEVICE_REACHABILITY_OP_FAILURE_CODE = 101;
32   public static final String DEVICE_TIMEOUT_STATUS_CODE = "8006";
33   public static final String DEVICE_REACHABLE_MSG = "Device is reachable";
34   public static final String DEFAULT_OP_TIMEOUT_MSG = "Operation Timed out";
35   public static final String RPC_SUCCESS = "0";
36   public static final String RPC_FAILED = "1";
37
38   public static final int RPC_SUCCESS_CODE = 0;
39   public static final int RPC_FAILED_CODE = 1;
40
41   public static final String ADMIN_STATE = "FAPControl.LTE.AdminState";
42   public static final String ADMIN_STATUS = "FAPControl.LTE.AdminStatus";
43 }