java/sql-dk/src/info/globalcode/sql/dk/Xmlns.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 26 Feb 2019 18:19:49 +0100
branchv_0
changeset 236 a3ec71fa8e17
parent 134 f2510551b5bf
permissions -rw-r--r--
Avoid reusing/rewriting the DB connection properties.
There was weird random errors while testing connection to multiple DB in parallel when one of them was meta connection to same DB connection.
Two kinds of exception: 1) missing password 2) „Passing DB password as CLI parameter is insecure!“
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@30
    27
	public static final String CONFIGURATION = "https://sql-dk.globalcode.info/xmlns/configuration";
franta-hg@128
    28
	public static final String BATCH_RESULT = "https://sql-dk.globalcode.info/xmlns/batchResult";
franta-hg@134
    29
	public static final String XHTML = "http://www.w3.org/1999/xhtml";
franta-hg@134
    30
franta-hg@134
    31
	private Xmlns() {
franta-hg@134
    32
	}
franta-hg@30
    33
}