java/sql-dk/src/info/globalcode/sql/dk/batch/BatchConstants.java
branchv_0
changeset 146 4f4f515df807
parent 144 d273d7c6dc0c
equal deleted inserted replaced
145:5f90decd3b59 146:4f4f515df807
    26  */
    26  */
    27 public class BatchConstants {
    27 public class BatchConstants {
    28 
    28 
    29 	public static final Charset CHARSET = StandardCharsets.UTF_8;
    29 	public static final Charset CHARSET = StandardCharsets.UTF_8;
    30 	public static final byte VERSION = 0x01;
    30 	public static final byte VERSION = 0x01;
    31 	public static final byte[] BATCH_START = {0x00, 0x53, 0x51, 0x4C, VERSION};
    31 	public static final byte[] BATCH_HEADER = {0x00, 0x53, 0x51, 0x4C, VERSION};
    32 
    32 
    33 	private BatchConstants() {
    33 	private BatchConstants() {
    34 	}
    34 	}
    35 }
    35 }