org.apache.camel.component.jcr.JcrEndpointConfigurer Maven / Gradle / Ivy
The newest version!
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.jcr;
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 JcrEndpointConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
JcrEndpoint target = (JcrEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "bridgeerrorhandler":
case "bridgeErrorHandler": target.setBridgeErrorHandler(property(camelContext, boolean.class, value)); return true;
case "deep": target.setDeep(property(camelContext, boolean.class, value)); return true;
case "eventtypes":
case "eventTypes": target.setEventTypes(property(camelContext, int.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 "nolocal":
case "noLocal": target.setNoLocal(property(camelContext, boolean.class, value)); return true;
case "nodetypenames":
case "nodeTypeNames": target.setNodeTypeNames(property(camelContext, java.lang.String.class, value)); return true;
case "password": target.setPassword(property(camelContext, java.lang.String.class, value)); return true;
case "sessionlivecheckinterval":
case "sessionLiveCheckInterval": target.setSessionLiveCheckInterval(property(camelContext, java.time.Duration.class, value).toMillis()); return true;
case "sessionlivecheckintervalonstart":
case "sessionLiveCheckIntervalOnStart": target.setSessionLiveCheckIntervalOnStart(property(camelContext, java.time.Duration.class, value).toMillis()); return true;
case "username": target.setUsername(property(camelContext, java.lang.String.class, value)); return true;
case "uuids": target.setUuids(property(camelContext, java.lang.String.class, value)); return true;
case "workspacename":
case "workspaceName": target.setWorkspaceName(property(camelContext, java.lang.String.class, value)); return true;
default: return false;
}
}
@Override
public Class> getOptionType(String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "bridgeerrorhandler":
case "bridgeErrorHandler": return boolean.class;
case "deep": return boolean.class;
case "eventtypes":
case "eventTypes": return int.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 "nolocal":
case "noLocal": return boolean.class;
case "nodetypenames":
case "nodeTypeNames": return java.lang.String.class;
case "password": return java.lang.String.class;
case "sessionlivecheckinterval":
case "sessionLiveCheckInterval": return long.class;
case "sessionlivecheckintervalonstart":
case "sessionLiveCheckIntervalOnStart": return long.class;
case "username": return java.lang.String.class;
case "uuids": return java.lang.String.class;
case "workspacename":
case "workspaceName": return java.lang.String.class;
default: return null;
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
JcrEndpoint target = (JcrEndpoint) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "bridgeerrorhandler":
case "bridgeErrorHandler": return target.isBridgeErrorHandler();
case "deep": return target.isDeep();
case "eventtypes":
case "eventTypes": return target.getEventTypes();
case "exceptionhandler":
case "exceptionHandler": return target.getExceptionHandler();
case "exchangepattern":
case "exchangePattern": return target.getExchangePattern();
case "lazystartproducer":
case "lazyStartProducer": return target.isLazyStartProducer();
case "nolocal":
case "noLocal": return target.isNoLocal();
case "nodetypenames":
case "nodeTypeNames": return target.getNodeTypeNames();
case "password": return target.getPassword();
case "sessionlivecheckinterval":
case "sessionLiveCheckInterval": return target.getSessionLiveCheckInterval();
case "sessionlivecheckintervalonstart":
case "sessionLiveCheckIntervalOnStart": return target.getSessionLiveCheckIntervalOnStart();
case "username": return target.getUsername();
case "uuids": return target.getUuids();
case "workspacename":
case "workspaceName": return target.getWorkspaceName();
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy