49 lines
2.8 KiB
Java
49 lines
2.8 KiB
Java
package com.tridium.ccn.util;
|
|
|
|
public interface CcnErrorCodes {
|
|
public static final int ERROR_GETTING_OPTS = -4;
|
|
public static final int ERROR_SETTING_OPTS = -5;
|
|
public static final int E_CCN_ALARM_NOT_EXTENDED_ALARM = 6488172;
|
|
public static final int E_CCN_ALARM_NOT_STANDARD_WITH_DATE = 6488171;
|
|
public static final int E_CCN_BAD_DEVICE_STATUS = 6488278;
|
|
public static final int E_CCN_COMM_COMMAND_NOT_ACK = 6488166;
|
|
public static final int E_CCN_DUPLICATE_TABLE_GROUP_EXCEPTION = 6488264;
|
|
public static final int E_CCN_ERROR_GETTING_OPTS = 6488272;
|
|
public static final int E_CCN_ERROR_NATIVE_UNKOWN_WHY = 6488273;
|
|
public static final int E_CCN_ERROR_SETTING_OPTS = 6488271;
|
|
public static final int E_CCN_FID_UNSUPPORTED_EUC = 6488180;
|
|
public static final int E_CCN_FIELD_INDEX_OUT_OF_RANGE = 6488269;
|
|
public static final int E_CCN_MISMATCHED_REQ_RSP_TABLE_TYPE = 6488169;
|
|
public static final int E_CCN_NATIVE_DRIVER_NOT_STARTED = 6488165;
|
|
public static final int E_CCN_NO_SUCH_COMM_PORT = 6488279;
|
|
public static final int E_CCN_READ_NOT_SUCCESSFUL = 6488177;
|
|
public static final int E_CCN_TABLE_NOT_LICENSED = 6488275;
|
|
public static final int E_CCN_TUNNEL_COULD_NOT_SEND_ACK_02 = 6488276;
|
|
public static final int E_CCN_TUNNEL_COULD_NOT_SEND_TBL20_B02 = 6488277;
|
|
public static final int E_CCN_TUNNEL_MSG_TOO_SHORT = 6488178;
|
|
public static final int E_CCN_TUNNEL_UNSUPPORTED_COMMAND = 6488179;
|
|
public static final int E_CCN_UNSUPPORTED_BAUD_RATE_EXCEPTION = 6488274;
|
|
public static final int E_CCN_UPDATE_TABLE_GROUP_EXCEPTION = 6488164;
|
|
public static final int E_CCN_VALUE_FORMAT_NOT_8_BIT_FLAG = 6488181;
|
|
public static final int E_CCN_VALUE_FORMAT_NOT_FLOAT = 6488174;
|
|
public static final int E_CCN_VALUE_OUT_OF_RANGE = 6488176;
|
|
public static final int E_CCN_WRITE_NOT_SUCCESSFUL = 6488175;
|
|
public static final int E_CCN_WRONG_ALARM_DATA_WRAPPER = 6488173;
|
|
public static final int E_CCN_WRONG_BLOCK = 6488167;
|
|
public static final int E_CCN_WRONG_COMMAND_TYPE = 6488170;
|
|
public static final int E_CCN_WRONG_TABLE_TYPE = 6488168;
|
|
public static final int E_INVALID_DEVICE_NAME = 6488270;
|
|
public static final int E_METHOD_OBSOLETE = 6488266;
|
|
public static final int E_PANIC_ENTERED_BAD_BLOCK = 6488267;
|
|
public static final int E_PLATFORM_NOT_IMPLEMENTED = 6488268;
|
|
public static final int E_TABLE_GROUP_NOT_REG_TO_CCN_DEVICE = 6488265;
|
|
public static final int NO_OPERATION_NODE_OOS = 1;
|
|
public static final int OPTS_SETUP_SUCCESS = 0;
|
|
public static final int POLL_ACTION = 0;
|
|
public static final int SUB = 6488064;
|
|
public static final int SUCCESSFUL_OPERATION = 0;
|
|
public static final int UNRESPONSIVE_OPERATION = 2;
|
|
public static final int UNSUCCESSFUL_OPERATION = 3;
|
|
public static final int WRITE_ACTION = 1;
|
|
}
|