org.apache.camel.component.undertow.UndertowEndpointUriFactory Maven / Gradle / Ivy
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.undertow;
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 UndertowEndpointUriFactory 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<>(30);
props.add("accessLog");
props.add("accessLogReceiver");
props.add("allowedRoles");
props.add("bridgeErrorHandler");
props.add("cookieHandler");
props.add("exceptionHandler");
props.add("exchangePattern");
props.add("fireWebSocketChannelEvents");
props.add("handlers");
props.add("headerFilterStrategy");
props.add("httpMethodRestrict");
props.add("httpURI");
props.add("keepAlive");
props.add("lazyStartProducer");
props.add("matchOnUriPrefix");
props.add("muteException");
props.add("options");
props.add("optionsEnabled");
props.add("preserveHostHeader");
props.add("reuseAddresses");
props.add("securityConfiguration");
props.add("securityProvider");
props.add("sendTimeout");
props.add("sendToAll");
props.add("sslContextParameters");
props.add("tcpNoDelay");
props.add("throwExceptionOnFailure");
props.add("transferException");
props.add("undertowHttpBinding");
props.add("useStreaming");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
Set prefixes = new HashSet<>(1);
prefixes.add("option.");
MULTI_VALUE_PREFIXES = Collections.unmodifiableSet(prefixes);
}
@Override
public boolean isEnabled(String scheme) {
return "undertow".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 true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy