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

org.apache.camel.component.resteasy.ResteasyEndpointUriFactory Maven / Gradle / Ivy

The newest version!
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.resteasy;

import java.net.URISyntaxException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.apache.camel.spi.EndpointUriFactory;

/**
 * Generated by camel build tools - do NOT edit this file!
 */
public class ResteasyEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {

    private static final String BASE = ":httpUri";

    private static final Set PROPERTY_NAMES;
    private static final Set SECRET_PROPERTY_NAMES;
    private static final Set MULTI_VALUE_PREFIXES;
    static {
        Set props = new HashSet<>(42);
        props.add("async");
        props.add("bridgeEndpoint");
        props.add("bridgeErrorHandler");
        props.add("clearExpiredCookies");
        props.add("connectionClose");
        props.add("cookieHandler");
        props.add("copyHeaders");
        props.add("customHostHeader");
        props.add("deleteWithBody");
        props.add("disableStreamCache");
        props.add("eagerCheckContentAvailable");
        props.add("exceptionHandler");
        props.add("exchangePattern");
        props.add("followRedirects");
        props.add("getWithBody");
        props.add("headerFilterStrategy");
        props.add("httpMethod");
        props.add("httpMethodRestrict");
        props.add("httpUri");
        props.add("ignoreResponseBody");
        props.add("lazyStartProducer");
        props.add("mapHttpMessageBody");
        props.add("mapHttpMessageFormUrlEncodedBody");
        props.add("mapHttpMessageHeaders");
        props.add("muteException");
        props.add("okStatusCodeRange");
        props.add("optionsEnabled");
        props.add("password");
        props.add("preserveHostHeader");
        props.add("proxyClientClass");
        props.add("responseBufferSize");
        props.add("resteasyMethod");
        props.add("servletName");
        props.add("setHttpResponseDuringProcessing");
        props.add("skipRequestHeaders");
        props.add("skipResponseHeaders");
        props.add("skipServletProcessing");
        props.add("throwExceptionOnFailure");
        props.add("traceEnabled");
        props.add("useSystemProperties");
        props.add("userAgent");
        props.add("username");
        PROPERTY_NAMES = Collections.unmodifiableSet(props);
        Set secretProps = new HashSet<>(2);
        secretProps.add("password");
        secretProps.add("username");
        SECRET_PROPERTY_NAMES = Collections.unmodifiableSet(secretProps);
        MULTI_VALUE_PREFIXES = Collections.emptySet();
    }

    @Override
    public boolean isEnabled(String scheme) {
        return "resteasy".equals(scheme);
    }

    @Override
    public String buildUri(String scheme, Map properties, boolean encode) throws URISyntaxException {
        String syntax = scheme + BASE;
        String uri = syntax;

        Map copy = new HashMap<>(properties);

        uri = buildPathParameter(syntax, uri, "httpUri", null, true, copy);
        uri = buildQueryParameters(uri, copy, encode);
        return uri;
    }

    @Override
    public Set propertyNames() {
        return PROPERTY_NAMES;
    }

    @Override
    public Set secretPropertyNames() {
        return SECRET_PROPERTY_NAMES;
    }

    @Override
    public Set multiValuePrefixes() {
        return MULTI_VALUE_PREFIXES;
    }

    @Override
    public boolean isLenientProperties() {
        return false;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy