blob: 4c9320a2fd491d146f2eb96a03aea2a85ec8c96b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.validator.msv;
import java.util.Map;
import javax.xml.XMLConstants;
import org.apache.camel.component.validator.SpringValidator;
import org.apache.camel.component.validator.ValidatorComponent;
import org.iso_relax.verifier.VerifierConfigurationException;
import org.iso_relax.verifier.jaxp.validation.RELAXNGSchemaFactoryImpl;
/**
* The <a href="http://camel.apache.org/msv.html">MSV Component</a> uses the
* <a href="https://msv.dev.java.net/">MSV library</a> to perform XML validation using pluggable XML schema languages.
*
* @version
*/
public class MsvComponent extends ValidatorComponent {
private RELAXNGSchemaFactoryImpl schemaFactory;
public RELAXNGSchemaFactoryImpl getSchemaFactory() throws VerifierConfigurationException {
if (schemaFactory == null) {
schemaFactory = new RELAXNGSchemaFactoryImpl();
}
return schemaFactory;
}
public void setSchemaFactory(RELAXNGSchemaFactoryImpl schemaFactory) {
this.schemaFactory = schemaFactory;
}
protected void configureValidator(SpringValidator validator, String uri, String remaining, Map<String, Object> parameters) throws Exception {
validator.setSchemaLanguage(XMLConstants.RELAXNG_NS_URI);
validator.setSchemaFactory(getSchemaFactory());
// must use Dom for Msv to work
validator.setUseDom(true);
super.configureValidator(validator, uri, remaining, parameters);
}
}