All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.atlasmap.AtlasMapEndpointConfigurer Maven / Gradle / Ivy

There is a newer version: 4.0.0-RC2
Show newest version
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.atlasmap;

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 AtlasMapEndpointConfigurer extends PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {

    @Override
    public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
        AtlasMapEndpoint target = (AtlasMapEndpoint) obj;
        switch (ignoreCase ? name.toLowerCase() : name) {
        case "allowcontextmapall":
        case "allowContextMapAll": target.setAllowContextMapAll(property(camelContext, boolean.class, value)); return true;
        case "contentcache":
        case "contentCache": target.setContentCache(property(camelContext, boolean.class, value)); return true;
        case "forcereload":
        case "forceReload": target.setForceReload(property(camelContext, boolean.class, value)); return true;
        case "lazystartproducer":
        case "lazyStartProducer": target.setLazyStartProducer(property(camelContext, boolean.class, value)); return true;
        case "sourcemapname":
        case "sourceMapName": target.setSourceMapName(property(camelContext, java.lang.String.class, value)); return true;
        case "targetmapmode":
        case "targetMapMode": target.setTargetMapMode(property(camelContext, org.apache.camel.component.atlasmap.AtlasMapEndpoint.TargetMapMode.class, value)); return true;
        case "targetmapname":
        case "targetMapName": target.setTargetMapName(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 "allowcontextmapall":
        case "allowContextMapAll": return boolean.class;
        case "contentcache":
        case "contentCache": return boolean.class;
        case "forcereload":
        case "forceReload": return boolean.class;
        case "lazystartproducer":
        case "lazyStartProducer": return boolean.class;
        case "sourcemapname":
        case "sourceMapName": return java.lang.String.class;
        case "targetmapmode":
        case "targetMapMode": return org.apache.camel.component.atlasmap.AtlasMapEndpoint.TargetMapMode.class;
        case "targetmapname":
        case "targetMapName": return java.lang.String.class;
        default: return null;
        }
    }

    @Override
    public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
        AtlasMapEndpoint target = (AtlasMapEndpoint) obj;
        switch (ignoreCase ? name.toLowerCase() : name) {
        case "allowcontextmapall":
        case "allowContextMapAll": return target.isAllowContextMapAll();
        case "contentcache":
        case "contentCache": return target.isContentCache();
        case "forcereload":
        case "forceReload": return target.isForceReload();
        case "lazystartproducer":
        case "lazyStartProducer": return target.isLazyStartProducer();
        case "sourcemapname":
        case "sourceMapName": return target.getSourceMapName();
        case "targetmapmode":
        case "targetMapMode": return target.getTargetMapMode();
        case "targetmapname":
        case "targetMapName": return target.getTargetMapName();
        default: return null;
        }
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy