org.apache.camel.component.zookeeper.ZooKeeperComponentConfigurer Maven / Gradle / Ivy
The newest version!
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.zookeeper;
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 ZooKeeperComponentConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
private org.apache.camel.component.zookeeper.ZooKeeperConfiguration getOrCreateConfiguration(ZooKeeperComponent target) {
if (target.getConfiguration() == null) {
target.setConfiguration(new org.apache.camel.component.zookeeper.ZooKeeperConfiguration());
}
return target.getConfiguration();
}
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
ZooKeeperComponent target = (ZooKeeperComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "autowiredenabled":
case "autowiredEnabled": target.setAutowiredEnabled(property(camelContext, boolean.class, value)); return true;
case "backoff": getOrCreateConfiguration(target).setBackoff(property(camelContext, long.class, value)); return true;
case "bridgeerrorhandler":
case "bridgeErrorHandler": target.setBridgeErrorHandler(property(camelContext, boolean.class, value)); return true;
case "configuration": target.setConfiguration(property(camelContext, org.apache.camel.component.zookeeper.ZooKeeperConfiguration.class, value)); return true;
case "create": getOrCreateConfiguration(target).setCreate(property(camelContext, boolean.class, value)); return true;
case "createmode":
case "createMode": getOrCreateConfiguration(target).setCreateMode(property(camelContext, java.lang.String.class, value)); return true;
case "lazystartproducer":
case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.class, value)); return true;
case "listchildren":
case "listChildren": getOrCreateConfiguration(target).setListChildren(property(camelContext, boolean.class, value)); return true;
case "repeat": getOrCreateConfiguration(target).setRepeat(property(camelContext, boolean.class, value)); return true;
case "sendemptymessageondelete":
case "sendEmptyMessageOnDelete": getOrCreateConfiguration(target).setSendEmptyMessageOnDelete(property(camelContext, boolean.class, value)); return true;
case "timeout": getOrCreateConfiguration(target).setTimeout(property(camelContext, int.class, value)); return true;
default: return false;
}
}
@Override
public Class> getOptionType(String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "autowiredenabled":
case "autowiredEnabled": return boolean.class;
case "backoff": return long.class;
case "bridgeerrorhandler":
case "bridgeErrorHandler": return boolean.class;
case "configuration": return org.apache.camel.component.zookeeper.ZooKeeperConfiguration.class;
case "create": return boolean.class;
case "createmode":
case "createMode": return java.lang.String.class;
case "lazystartproducer":
case "lazyStartProducer": return boolean.class;
case "listchildren":
case "listChildren": return boolean.class;
case "repeat": return boolean.class;
case "sendemptymessageondelete":
case "sendEmptyMessageOnDelete": return boolean.class;
case "timeout": return int.class;
default: return null;
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
ZooKeeperComponent target = (ZooKeeperComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "autowiredenabled":
case "autowiredEnabled": return target.isAutowiredEnabled();
case "backoff": return getOrCreateConfiguration(target).getBackoff();
case "bridgeerrorhandler":
case "bridgeErrorHandler": return target.isBridgeErrorHandler();
case "configuration": return target.getConfiguration();
case "create": return getOrCreateConfiguration(target).isCreate();
case "createmode":
case "createMode": return getOrCreateConfiguration(target).getCreateMode();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
case "listchildren":
case "listChildren": return getOrCreateConfiguration(target).isListChildren();
case "repeat": return getOrCreateConfiguration(target).isRepeat();
case "sendemptymessageondelete":
case "sendEmptyMessageOnDelete": return getOrCreateConfiguration(target).isSendEmptyMessageOnDelete();
case "timeout": return getOrCreateConfiguration(target).getTimeout();
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy