org.apache.camel.component.xslt.saxon.XsltSaxonComponentConfigurer Maven / Gradle / Ivy
The newest version!
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.xslt.saxon;
import javax.annotation.processing.Generated;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.spi.ExtendedPropertyConfigurerGetter;
import org.apache.camel.spi.PropertyConfigurerGetter;
import org.apache.camel.spi.ConfigurerStrategy;
import org.apache.camel.spi.GeneratedPropertyConfigurer;
import org.apache.camel.util.CaseInsensitiveMap;
import org.apache.camel.component.xslt.XsltComponentConfigurer;
/**
* Generated by camel build tools - do NOT edit this file!
*/
@Generated("org.apache.camel.maven.packaging.EndpointSchemaGeneratorMojo")
@SuppressWarnings("unchecked")
public class XsltSaxonComponentConfigurer extends XsltComponentConfigurer implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
XsltSaxonComponent target = (XsltSaxonComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "saxonconfiguration":
case "saxonConfiguration": target.setSaxonConfiguration(property(camelContext, net.sf.saxon.Configuration.class, value)); return true;
case "saxonconfigurationproperties":
case "saxonConfigurationProperties": target.setSaxonConfigurationProperties(property(camelContext, java.util.Map.class, value)); return true;
case "saxonextensionfunctions":
case "saxonExtensionFunctions": target.setSaxonExtensionFunctions(property(camelContext, java.lang.String.class, value)); return true;
case "secureprocessing":
case "secureProcessing": target.setSecureProcessing(property(camelContext, boolean.class, value)); return true;
default: return super.configure(camelContext, obj, name, value, ignoreCase);
}
}
@Override
public Class> getOptionType(String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "saxonconfiguration":
case "saxonConfiguration": return net.sf.saxon.Configuration.class;
case "saxonconfigurationproperties":
case "saxonConfigurationProperties": return java.util.Map.class;
case "saxonextensionfunctions":
case "saxonExtensionFunctions": return java.lang.String.class;
case "secureprocessing":
case "secureProcessing": return boolean.class;
default: return super.getOptionType(name, ignoreCase);
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
XsltSaxonComponent target = (XsltSaxonComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "saxonconfiguration":
case "saxonConfiguration": return target.getSaxonConfiguration();
case "saxonconfigurationproperties":
case "saxonConfigurationProperties": return target.getSaxonConfigurationProperties();
case "saxonextensionfunctions":
case "saxonExtensionFunctions": return target.getSaxonExtensionFunctions();
case "secureprocessing":
case "secureProcessing": return target.isSecureProcessing();
default: return super.getOptionValue(obj, name, ignoreCase);
}
}
@Override
public Object getCollectionValueType(Object target, String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "saxonconfigurationproperties":
case "saxonConfigurationProperties": return java.lang.Object.class;
default: return super.getCollectionValueType(target, name, ignoreCase);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy