
org.iso_relax.verifier.VerifierFactoryLoader Maven / Gradle / Ivy
package org.iso_relax.verifier;
/**
* A class that provides information about the verifier implementation.
*
*
* Implementations of this interface are discovered through
* META-INF/services
, just like JAXP. This object then
* provides VerifierFactory implementation for the specified schema language.
*
* @author Kohsuke KAWAGUCHI
*/
public interface VerifierFactoryLoader {
/**
* returns a VerifierFactory that supports the specified schema language,
* or returns null if it's not supported.
*/
VerifierFactory createFactory( String schemaLanguage );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy