All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.validate.SchemaReader Maven / Gradle / Ivy

There is a newer version: 20151127.0.1
Show newest version
package com.thaiopensource.validate;

import com.thaiopensource.util.PropertyMap;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

import javax.xml.transform.sax.SAXSource;
import java.io.IOException;

/**
 * A SchemaReader object is immutable and can thus be safely accessed
 * concurrently from multiple threads.
 */
public interface SchemaReader {
  public static final String BASE_URI = "http://www.thaiopensource.com/validate/";
  /**
   * Creates a Schema by reading it from an InputSource.
   *
   * @param source
   * @param properties a PropertyMap to control the schema creation;
   * must not be null @return a newly created Schema, never null
   * @throws IOException if an I/O error occurs
   * @throws SAXException
   * @throws IncorrectSchemaException
   *
   * @see ValidateProperty
   */
  Schema createSchema(InputSource source, PropertyMap properties)
          throws IOException, SAXException, IncorrectSchemaException;
  Schema createSchema(SAXSource source, PropertyMap properties)
          throws IOException, SAXException, IncorrectSchemaException;

  Option getOption(String uri);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy