Package org.geotools.xml
Class SchemaFactory
Object
SchemaFactory
This is the main entry point into the XSI parsing routines.
Example Use:
Schema x = SchemaFactory.getInstance("MyTargetNameSpace",new URI("MyNameSpaceURI");
- Author:
- dzwiers, Refractions Research, Inc. http://www.refractions.net, $Author:$ (last modification)
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected static SchemaFactory
static Schema
getInstance
(String targetNamespace) static Schema
getInstance
(URI targetNamespace) Returns an instance of the targetNamespace if it can be found ... null otherwise. targetNamespaces which can be found are either hard-coded namespaces (SchemaFactory.properties), have already been parsed or were registered.static Schema
getInstance
(URI targetNamespace, InputStream is1) static Schema
getInstance
(URI targetNamespace, InputStream is1, Level level) static Schema
getInstance
(URI targetNamespace, URI desiredSchema) Returns an instance of the desired class.static Schema
getInstance
(URI targetNamespace, URI desiredSchema, Level level) Returns an instance of the desired class.protected XSISAXHandler
getSAXHandler
(URI uri) static Schema[]
getSchemas
(String prefix) static void
registerSchema
(URI targetNamespace, Schema schema) Registers a Schema instance with the factory.
-
Field Details
-
is
-
-
Constructor Details
-
SchemaFactory
protected SchemaFactory()Default constructor.
-
-
Method Details
-
getInstance
-
getInstance
Returns an instance of the desired class. There is no provision for: a) same instances each call b) different instances each call c) this factory being thread safe- Parameters:
desiredSchema
- URI the uri of which you want a schema instance.- Returns:
- Schema an instance of the desired schema.
- Throws:
SAXException
-
getInstance
- Throws:
SAXException
-
getInstance
-
getInstance
Returns an instance of the targetNamespace if it can be found ... null otherwise. targetNamespaces which can be found are either hard-coded namespaces (SchemaFactory.properties), have already been parsed or were registered.- See Also:
-
getSchemas
-
getInstance
public static Schema getInstance(URI targetNamespace, URI desiredSchema, Level level) throws SAXException Returns an instance of the desired class. There is no provision for: a) same instances each call b) different instances each call c) this factory being thread safe- Parameters:
targetNamespace
- The targetNamespace to search for.desiredSchema
- URI the uri of which you want a schema instance.level
- Level- Returns:
- Schema an instance of the desired schema.
- Throws:
SAXException
- When something goes wrong
-
getSAXHandler
-
getInstance
public static Schema getInstance(URI targetNamespace, InputStream is1, Level level) throws SAXException - Throws:
SAXException
-
registerSchema
Registers a Schema instance with the factory. A clone is NOT created within this method. The Schema passed in is associated with the specified targetNamespace. The Schema is not tested to ensure the intended targetNamespace (schema.getTargetNamespace()) is equal to targetNamespace. The ramifications is that you may hack wildly within the repository, but we aware you may have some 'undocumented features' as a result (odd Schemas being returned).
-