java/sql-dk/src/info/globalcode/sql/dk/Constants.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 16 Dec 2013 20:39:07 +0100
branchv_0
changeset 18 7900bb1666f6
parent 17 d8ab8aece6f2
child 19 873669135d97
permissions -rw-r--r--
version info: option --version
franta-hg@17
     1
/**
franta-hg@17
     2
 * SQL-DK
franta-hg@17
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@17
     4
 *
franta-hg@17
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@17
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@17
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@17
     8
 * (at your option) any later version.
franta-hg@17
     9
 *
franta-hg@17
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@17
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@17
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@17
    13
 * GNU General Public License for more details.
franta-hg@17
    14
 *
franta-hg@17
    15
 * You should have received a copy of the GNU General Public License
franta-hg@17
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@17
    17
 */
franta-hg@17
    18
package info.globalcode.sql.dk;
franta-hg@17
    19
franta-hg@17
    20
/**
franta-hg@17
    21
 *
franta-hg@17
    22
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@17
    23
 */
franta-hg@17
    24
public class Constants {
franta-hg@17
    25
franta-hg@17
    26
	public static final String WEBSITE = "https://sql-dk.globalcode.info/";
franta-hg@18
    27
	public static final String LICENSE_FILE = "info/globalcode/sql/dk/license.txt";
franta-hg@18
    28
	public static final String VERSION_FILE = "info/globalcode/sql/dk/version.txt";
franta-hg@17
    29
franta-hg@17
    30
	private Constants() {
franta-hg@17
    31
	}
franta-hg@17
    32
}