001    package com.thaiopensource.xml.util;
002    
003    public class WellKnownNamespaces {
004      static public final String XML = "http://www.w3.org/XML/1998/namespace";
005      static public final String XMLNS = "http://www.w3.org/2000/xmlns";
006      static public final String XML_SCHEMA_DATATYPES = "http://www.w3.org/2001/XMLSchema-datatypes";
007      static public final String XML_SCHEMA = "http://www.w3.org/2001/XMLSchema";
008      static public final String RELAX_NG_COMPATIBILITY_DATATYPES = "http://relaxng.org/ns/compatibility/datatypes/1.0";
009      static public final String RELAX_NG = "http://relaxng.org/ns/structure/1.0";
010      static public final String RELAX_NG_0_9 = "http://relaxng.org/ns/structure/0.9";
011      static public final String RELAX_NG_COMPATIBILITY_ANNOTATIONS = "http://relaxng.org/ns/compatibility/annotations/1.0";
012    
013      private WellKnownNamespaces() {
014      }
015    
016    }