All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.xslt.saxon.XsltSaxonEndpointConfigurer 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.XsltEndpointConfigurer;

/**
 * Generated by camel build tools - do NOT edit this file!
 */
@Generated("org.apache.camel.maven.packaging.EndpointSchemaGeneratorMojo")
@SuppressWarnings("unchecked")
public class XsltSaxonEndpointConfigurer extends XsltEndpointConfigurer implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {

    @Override
    public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
        XsltSaxonEndpoint target = (XsltSaxonEndpoint) obj;
        switch (ignoreCase ? name.toLowerCase() : name) {
        case "allowstax":
        case "allowStAX": target.setAllowStAX(property(camelContext, boolean.class, value)); return true;
        case "saxonconfiguration":
        case "saxonConfiguration": target.setSaxonConfiguration(property(camelContext, net.sf.saxon.Configuration.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 "allowstax":
        case "allowStAX": return boolean.class;
        case "saxonconfiguration":
        case "saxonConfiguration": return net.sf.saxon.Configuration.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) {
        XsltSaxonEndpoint target = (XsltSaxonEndpoint) obj;
        switch (ignoreCase ? name.toLowerCase() : name) {
        case "allowstax":
        case "allowStAX": return target.isAllowStAX();
        case "saxonconfiguration":
        case "saxonConfiguration": return target.getSaxonConfiguration();
        case "saxonextensionfunctions":
        case "saxonExtensionFunctions": return target.getSaxonExtensionFunctions();
        case "secureprocessing":
        case "secureProcessing": return target.isSecureProcessing();
        default: return super.getOptionValue(obj, name, ignoreCase);
        }
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy