java/sql-dk/src/main/java/info/globalcode/sql/dk/Xmlns.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 30 Apr 2019 20:04:06 +0200
branchv_0
changeset 249 7655df0622ee
parent 245 b6ff5b7a8422
child 250 aae5009bd0af
permissions -rw-r--r--
change XMLNS for the configuration
Use The 'tag' URI Scheme <http://www.faqs.org/rfcs/rfc4151.html>
Upgrade local configuration:
sed 's@https://sql-dk.globalcode.info/xmlns/configuration@tag:globalcode.info,2018:sqldk/configuration@g' -i ~/.sql-dk/config.xml
franta-hg@30
     1
/**
franta-hg@30
     2
 * SQL-DK
franta-hg@30
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@30
     4
 *
franta-hg@30
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@30
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@30
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@30
     8
 * (at your option) any later version.
franta-hg@30
     9
 *
franta-hg@30
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@30
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@30
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@30
    13
 * GNU General Public License for more details.
franta-hg@30
    14
 *
franta-hg@30
    15
 * You should have received a copy of the GNU General Public License
franta-hg@30
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@30
    17
 */
franta-hg@30
    18
package info.globalcode.sql.dk;
franta-hg@30
    19
franta-hg@30
    20
/**
franta-hg@30
    21
 * XML namespaces
franta-hg@30
    22
 *
franta-hg@30
    23
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@30
    24
 */
franta-hg@30
    25
public class Xmlns {
franta-hg@30
    26
franta-hg@249
    27
	public static final String CONFIGURATION = "tag:globalcode.info,2018:sqldk/configuration";
franta-hg@245
    28
	public static final String RELPIPE = "tag:globalcode.info,2018:relpipe";
franta-hg@245
    29
	public static final String SQLDK = "tag:globalcode.info,2018:sqldk";
franta-hg@134
    30
	public static final String XHTML = "http://www.w3.org/1999/xhtml";
franta-hg@134
    31
franta-hg@134
    32
	private Xmlns() {
franta-hg@134
    33
	}
franta-hg@30
    34
}