blob: cd058a3235b8ec65418c2fa9a9bc3be6ab6e61a9 [file] [log] [blame]
package org.apache.lenya.xml;
public interface Schema {
/**
* @return The language.
* @see org.apache.cocoon.components.validation.Validator
*/
public abstract String getLanguage();
/**
* @return The URI to read the schema from.
*/
public abstract String getURI();
}