org.apache.camel.component.stringtemplate.StringTemplateEndpointConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-stringtemplate Show documentation
Show all versions of camel-stringtemplate Show documentation
Camel StringTemplate support
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.stringtemplate;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.spi.GeneratedPropertyConfigurer;
import org.apache.camel.spi.PropertyConfigurerGetter;
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 StringTemplateEndpointConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
StringTemplateEndpoint target = (StringTemplateEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "basicpropertybinding":
case "basicPropertyBinding": target.setBasicPropertyBinding(property(camelContext, boolean.class, value)); return true;
case "contentcache":
case "contentCache": target.setContentCache(property(camelContext, boolean.class, value)); return true;
case "delimiterstart":
case "delimiterStart": target.setDelimiterStart(property(camelContext, char.class, value)); return true;
case "delimiterstop":
case "delimiterStop": target.setDelimiterStop(property(camelContext, char.class, value)); return true;
case "lazystartproducer":
case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.class, value)); return true;
case "synchronous": target.setSynchronous(property(camelContext, boolean.class, value)); return true;
default: return false;
}
}
@Override
public Map getAllOptions(Object target) {
Map answer = new CaseInsensitiveMap();
answer.put("basicPropertyBinding", boolean.class);
answer.put("contentCache", boolean.class);
answer.put("delimiterStart", char.class);
answer.put("delimiterStop", char.class);
answer.put("lazyStartProducer", boolean.class);
answer.put("synchronous", boolean.class);
return answer;
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
StringTemplateEndpoint target = (StringTemplateEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "basicpropertybinding":
case "basicPropertyBinding": return target.isBasicPropertyBinding();
case "contentcache":
case "contentCache": return target.isContentCache();
case "delimiterstart":
case "delimiterStart": return target.getDelimiterStart();
case "delimiterstop":
case "delimiterStop": return target.getDelimiterStop();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
case "synchronous": return target.isSynchronous();
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy