Java XML Namespace getXmlSchemaNamespace(Class clazz)

Here you can find the source of getXmlSchemaNamespace(Class clazz)

Description

Gets the xml schema namespace.

License

Open Source License

Parameter

Parameter Description
clazz the clazz

Return

the xml schema namespace

Declaration

public static String getXmlSchemaNamespace(Class<?> clazz) 

Method Source Code


//package com.java2s;
/* // w ww  .ja v a2s  . c  o m
 * Motu, a high efficient, robust and Standard compliant Web Server for Geographic
 * Data Dissemination.
 *
 * http://cls-motu.sourceforge.net/
 *
 * (C) Copyright 2009-2010, by CLS (Collecte Localisation Satellites) - 
 * http://www.cls.fr - and  Contributors
 *
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

import java.lang.reflect.AnnotatedElement;

import javax.xml.bind.annotation.XmlSchema;

public class Main {
    /**
     * Gets the xml schema namespace.
     * 
     * @param clazz the clazz
     * 
     * @return the xml schema namespace
     */
    public static String getXmlSchemaNamespace(Class<?> clazz) {

        AnnotatedElement pack = clazz.getPackage();
        if (pack == null) {
            return "";
        }

        XmlSchema schema = pack.getAnnotation(XmlSchema.class);
        String namespace = null;
        if (schema != null) {
            namespace = schema.namespace();
        } else {
            namespace = "";
        }
        return namespace;

    }
}

Related

  1. getPrefix(final Package targetPackage, String namespaceURI)
  2. getPrefixFromNamespaceDeclaration(String namespace)
  3. getRequestMessageType(String intfNamespace, String op, String prefix)
  4. getSchemaNamespace(Package pkg)
  5. getTEINamespaceContext()
  6. isNamespaceAware()
  7. isValidFragment(final Object obj, final String namespace, final String localPart)
  8. logWriter(Logger logger, String msg, XMLStreamWriter writer, String namespaceURI)
  9. printNamespace(XMLStreamReader xmlr, int index, StringBuffer result)