}
private Schema getValidationConfigurationSchema() {
boolean isSecured = System.getSecurityManager() != null;
GetClassLoader action = GetClassLoader.fromClass( ValidationXmlParser.class );
ClassLoader loader = isSecured ? AccessController.doPrivileged( action ) : action.run();
URL schemaUrl = loader.getResource( VALIDATION_CONFIGURATION_XSD );
SchemaFactory sf = SchemaFactory.newInstance( javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI );
Schema schema = null;
try {
schema = sf.newSchema( schemaUrl );