franta-hg@15: /**
franta-hg@15: * Free Telco Dictionary
franta-hg@15: * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@15: *
franta-hg@15: * This program is free software: you can redistribute it and/or modify
franta-hg@15: * it under the terms of the GNU General Public License as published by
franta-hg@15: * the Free Software Foundation, either version 3 of the License, or
franta-hg@15: * (at your option) any later version.
franta-hg@15: *
franta-hg@15: * This program is distributed in the hope that it will be useful,
franta-hg@15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@15: * GNU General Public License for more details.
franta-hg@15: *
franta-hg@15: * You should have received a copy of the GNU General Public License
franta-hg@15: * along with this program. If not, see .
franta-hg@15: */
franta-hg@15: package cz.frantovo.telco.dictionary;
franta-hg@15:
franta-hg@15: import java.util.HashMap;
franta-hg@15: import java.util.Map;
franta-hg@15: import javax.xml.namespace.NamespaceContext;
franta-hg@15:
franta-hg@15: /**
franta-hg@15: * XML namespaces used in Telco dictionary
franta-hg@15: *
franta-hg@15: * @author Ing. František Kučera (frantovo.cz)
franta-hg@15: */
franta-hg@15: public class Xmlns {
franta-hg@15:
franta-hg@15: public static final String DICTIONARY = "https://telco.frantovo.cz/xmlns/dictionary";
franta-hg@15:
franta-hg@15: public static NamespaceContext getNamespaceContext() {
franta-hg@15: Map prefixMap = new HashMap<>();
franta-hg@15: prefixMap.put("d", DICTIONARY);
franta-hg@15: return new MappedNamespaceContext(prefixMap);
franta-hg@15: }
franta-hg@15:
franta-hg@15: private Xmlns() {
franta-hg@15: }
franta-hg@15: }