org.apache.camel.component.zookeeper.ZooKeeperEndpointConfigurer 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 ZooKeeperEndpointConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
ZooKeeperEndpoint target = (ZooKeeperEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "backoff": target.getConfiguration().setBackoff(property(camelContext, long.class, value)); return true;
case "bridgeerrorhandler":
case "bridgeErrorHandler": target.setBridgeErrorHandler(property(camelContext, boolean.class, value)); return true;
case "create": target.getConfiguration().setCreate(property(camelContext, boolean.class, value)); return true;
case "createmode":
case "createMode": target.getConfiguration().setCreateMode(property(camelContext, java.lang.String.class, value)); return true;
case "exceptionhandler":
case "exceptionHandler": target.setExceptionHandler(property(camelContext, org.apache.camel.spi.ExceptionHandler.class, value)); return true;
case "exchangepattern":
case "exchangePattern": target.setExchangePattern(property(camelContext, org.apache.camel.ExchangePattern.class, value)); return true;
case "lazystartproducer":
case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.class, value)); return true;
case "listchildren":
case "listChildren": target.getConfiguration().setListChildren(property(camelContext, boolean.class, value)); return true;
case "repeat": target.getConfiguration().setRepeat(property(camelContext, boolean.class, value)); return true;
case "sendemptymessageondelete":
case "sendEmptyMessageOnDelete": target.getConfiguration().setSendEmptyMessageOnDelete(property(camelContext, boolean.class, value)); return true;
case "timeout": target.getConfiguration().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 "backoff": return long.class;
case "bridgeerrorhandler":
case "bridgeErrorHandler": return boolean.class;
case "create": return boolean.class;
case "createmode":
case "createMode": return java.lang.String.class;
case "exceptionhandler":
case "exceptionHandler": return org.apache.camel.spi.ExceptionHandler.class;
case "exchangepattern":
case "exchangePattern": return org.apache.camel.ExchangePattern.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) {
ZooKeeperEndpoint target = (ZooKeeperEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "backoff": return target.getConfiguration().getBackoff();
case "bridgeerrorhandler":
case "bridgeErrorHandler": return target.isBridgeErrorHandler();
case "create": return target.getConfiguration().isCreate();
case "createmode":
case "createMode": return target.getConfiguration().getCreateMode();
case "exceptionhandler":
case "exceptionHandler": return target.getExceptionHandler();
case "exchangepattern":
case "exchangePattern": return target.getExchangePattern();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
case "listchildren":
case "listChildren": return target.getConfiguration().isListChildren();
case "repeat": return target.getConfiguration().isRepeat();
case "sendemptymessageondelete":
case "sendEmptyMessageOnDelete": return target.getConfiguration().isSendEmptyMessageOnDelete();
case "timeout": return target.getConfiguration().getTimeout();
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy