franta-hg@144: /** franta-hg@144: * SQL-DK franta-hg@144: * Copyright © 2014 František Kučera (frantovo.cz) franta-hg@144: * franta-hg@144: * This program is free software: you can redistribute it and/or modify franta-hg@144: * it under the terms of the GNU General Public License as published by franta-hg@250: * the Free Software Foundation, version 3 of the License. franta-hg@144: * franta-hg@144: * This program is distributed in the hope that it will be useful, franta-hg@144: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@144: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@144: * GNU General Public License for more details. franta-hg@144: * franta-hg@144: * You should have received a copy of the GNU General Public License franta-hg@144: * along with this program. If not, see . franta-hg@144: */ franta-hg@144: package info.globalcode.sql.dk.batch; franta-hg@144: franta-hg@144: import java.nio.charset.Charset; franta-hg@144: import java.nio.charset.StandardCharsets; franta-hg@144: franta-hg@144: /** franta-hg@144: * franta-hg@144: * @author Ing. František Kučera (frantovo.cz) franta-hg@144: */ franta-hg@144: public class BatchConstants { franta-hg@144: franta-hg@144: public static final Charset CHARSET = StandardCharsets.UTF_8; franta-hg@144: public static final byte VERSION = 0x01; franta-hg@146: public static final byte[] BATCH_HEADER = {0x00, 0x53, 0x51, 0x4C, VERSION}; franta-hg@144: franta-hg@144: private BatchConstants() { franta-hg@144: } franta-hg@144: }