1 package org.apache.ws.jaxme; 2 3 4 public class XMLConstants { 5 /** <p>The XML Schema namespace: 6 * <code>http://www.w3.org/2001/XMLSchema-instance</code> 7 */ 8 public static final String XML_SCHEMA_URI = "http://www.w3.org/2001/XMLSchema-instance"; 9 10 /** <p>The attribute specifying a schema, which may 11 * be used to validate the instance, if the schema 12 * has a target namespace: <code>schemaLocation</code>.</p> 13 * @see #XML_SCHEMA_URI 14 * @see #XML_SCHEMA_NO_NS_ATTR 15 */ 16 public static final String XML_SCHEMA_NS_ATTR = "schemaLocation"; 17 18 /** <p>The attribute specifying a schema, which may 19 * be used to validate the instance, if the schema 20 * doesn't have a namespace: <code>noNamespaceSchemaLocation</code>.</p> 21 * @see #XML_SCHEMA_URI 22 */ 23 public static final String XML_SCHEMA_NO_NS_ATTR = "noNamespaceSchemaLocation"; 24 } 25