org.apache.camel.component.jcache.JCacheComponentConfigurer Maven / Gradle / Ivy
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.jcache;
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!
*/
@SuppressWarnings("unchecked")
public class JCacheComponentConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
JCacheComponent target = (JCacheComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "autowiredenabled":
case "autowiredEnabled": target.setAutowiredEnabled(property(camelContext, boolean.class, value)); return true;
case "bridgeerrorhandler":
case "bridgeErrorHandler": target.setBridgeErrorHandler(property(camelContext, boolean.class, value)); return true;
case "cacheconfiguration":
case "cacheConfiguration": target.setCacheConfiguration(property(camelContext, javax.cache.configuration.Configuration.class, value)); return true;
case "cacheconfigurationproperties":
case "cacheConfigurationProperties": target.setCacheConfigurationProperties(property(camelContext, java.util.Map.class, value)); return true;
case "cacheconfigurationpropertiesref":
case "cacheConfigurationPropertiesRef": target.setCacheConfigurationPropertiesRef(property(camelContext, java.lang.String.class, value)); return true;
case "cachingprovider":
case "cachingProvider": target.setCachingProvider(property(camelContext, java.lang.String.class, value)); return true;
case "configurationuri":
case "configurationUri": target.setConfigurationUri(property(camelContext, java.lang.String.class, value)); return true;
case "lazystartproducer":
case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.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 "bridgeerrorhandler":
case "bridgeErrorHandler": return boolean.class;
case "cacheconfiguration":
case "cacheConfiguration": return javax.cache.configuration.Configuration.class;
case "cacheconfigurationproperties":
case "cacheConfigurationProperties": return java.util.Map.class;
case "cacheconfigurationpropertiesref":
case "cacheConfigurationPropertiesRef": return java.lang.String.class;
case "cachingprovider":
case "cachingProvider": return java.lang.String.class;
case "configurationuri":
case "configurationUri": return java.lang.String.class;
case "lazystartproducer":
case "lazyStartProducer": return boolean.class;
default: return null;
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
JCacheComponent target = (JCacheComponent) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "autowiredenabled":
case "autowiredEnabled": return target.isAutowiredEnabled();
case "bridgeerrorhandler":
case "bridgeErrorHandler": return target.isBridgeErrorHandler();
case "cacheconfiguration":
case "cacheConfiguration": return target.getCacheConfiguration();
case "cacheconfigurationproperties":
case "cacheConfigurationProperties": return target.getCacheConfigurationProperties();
case "cacheconfigurationpropertiesref":
case "cacheConfigurationPropertiesRef": return target.getCacheConfigurationPropertiesRef();
case "cachingprovider":
case "cachingProvider": return target.getCachingProvider();
case "configurationuri":
case "configurationUri": return target.getConfigurationUri();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy