java/dictionary-generator/src/cz/frantovo/telco/dictionary/Xmlns.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2013 17:20:27 +0200
changeset 115 8430ee5644c2
parent 15 93208f791318
child 151 a9f1ba451247
permissions -rw-r--r--
data: FXS improved
franta-hg@15
     1
/**
franta-hg@15
     2
 * Free Telco Dictionary
franta-hg@15
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@15
     4
 *
franta-hg@15
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@15
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@15
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@15
     8
 * (at your option) any later version.
franta-hg@15
     9
 *
franta-hg@15
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@15
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@15
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@15
    13
 * GNU General Public License for more details.
franta-hg@15
    14
 *
franta-hg@15
    15
 * You should have received a copy of the GNU General Public License
franta-hg@15
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@15
    17
 */
franta-hg@15
    18
package cz.frantovo.telco.dictionary;
franta-hg@15
    19
franta-hg@15
    20
import java.util.HashMap;
franta-hg@15
    21
import java.util.Map;
franta-hg@15
    22
import javax.xml.namespace.NamespaceContext;
franta-hg@15
    23
franta-hg@15
    24
/**
franta-hg@15
    25
 * XML namespaces used in Telco dictionary
franta-hg@15
    26
 *
franta-hg@15
    27
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@15
    28
 */
franta-hg@15
    29
public class Xmlns {
franta-hg@15
    30
franta-hg@15
    31
	public static final String DICTIONARY = "https://telco.frantovo.cz/xmlns/dictionary";
franta-hg@15
    32
franta-hg@15
    33
	public static NamespaceContext getNamespaceContext() {
franta-hg@15
    34
		Map<String, String> prefixMap = new HashMap<>();
franta-hg@15
    35
		prefixMap.put("d", DICTIONARY);
franta-hg@15
    36
		return new MappedNamespaceContext(prefixMap);
franta-hg@15
    37
	}
franta-hg@15
    38
franta-hg@15
    39
	private Xmlns() {
franta-hg@15
    40
	}
franta-hg@15
    41
}