Constant.java
476 Bytes
package com.bsth.constant;
/**
* @author Hill
*/
public class Constant {
public final static int BYTE_INT = 0xFF;
public final static int SHORT_INT = 0xFFFF;
public final static long INT_LONG = 0xFFFFFFFF;
public final static byte ACK_FLAG_SUCCESS = (byte)0x01;
public final static byte ACK_FLAG_FAILURE = (byte)0x02;
public final static byte ACK_FLAG_DUPLICATE_VIN = (byte)0x03;
public final static byte ACK_FLAG_COMMAND = (byte)0xFE;
}