/*
 * Copyright (c) 2004, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package javax.xml.bind.annotation;

import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

Associates a namespace prefix with a XML namespace URI.

Usage

@XmlNs annotation is intended for use from other program annotations.

See "Package Specification" in javax.xml.bind.package javadoc for additional common information.

Example:See XmlSchema annotation type for an example.

Author:Sekhar Vajjhala, Sun Microsystems, Inc.
Since:1.6, JAXB 2.0
/** * <p> * Associates a namespace prefix with a XML namespace URI. * * <p><b>Usage</b></p> * <p>{@code @XmlNs} annotation is intended for use from other * program annotations. * * <p>See "Package Specification" in javax.xml.bind.package javadoc for * additional common information.</p> * * <p><b>Example:</b>See {@code XmlSchema} annotation type for an example. * @author Sekhar Vajjhala, Sun Microsystems, Inc. * @since 1.6, JAXB 2.0 */
@Retention(RUNTIME) @Target({}) public @interface XmlNs {
Namespace prefix
/** * Namespace prefix */
String prefix();
Namespace URI
/** * Namespace URI */
String namespaceURI(); }