org.apache.camel.component.drill.DrillEndpointConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-drill Show documentation
Show all versions of camel-drill Show documentation
Camel Apache Drill support
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.drill;
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.support.component.PropertyConfigurerSupport;
/**
* Generated by camel build tools - do NOT edit this file!
*/
@Generated("org.apache.camel.maven.packaging.EndpointSchemaGeneratorMojo")
@SuppressWarnings("unchecked")
public class DrillEndpointConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
DrillEndpoint target = (DrillEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "clusterid":
case "clusterId": target.setClusterId(property(camelContext, java.lang.String.class, value)); return true;
case "directory": target.setDirectory(property(camelContext, java.lang.String.class, value)); return true;
case "lazystartproducer":
case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.class, value)); return true;
case "mode": target.setMode(property(camelContext, org.apache.camel.component.drill.DrillConnectionMode.class, value)); return true;
case "port": target.setPort(property(camelContext, java.lang.Integer.class, value)); return true;
default: return false;
}
}
@Override
public Class> getOptionType(String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "clusterid":
case "clusterId": return java.lang.String.class;
case "directory": return java.lang.String.class;
case "lazystartproducer":
case "lazyStartProducer": return boolean.class;
case "mode": return org.apache.camel.component.drill.DrillConnectionMode.class;
case "port": return java.lang.Integer.class;
default: return null;
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
DrillEndpoint target = (DrillEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "clusterid":
case "clusterId": return target.getClusterId();
case "directory": return target.getDirectory();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
case "mode": return target.getMode();
case "port": return target.getPort();
default: return null;
}
}
}