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