org.apache.camel.component.websocket.WebsocketEndpointUriFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-websocket Show documentation
Show all versions of camel-websocket Show documentation
Camel WebSocket using Jetty
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.websocket;
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 WebsocketEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
private static final String BASE = ":host:port/resourceUri";
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<>(22);
props.add("allowedOrigins");
props.add("bridgeErrorHandler");
props.add("bufferSize");
props.add("crossOriginFilterOn");
props.add("enableJmx");
props.add("exceptionHandler");
props.add("exchangePattern");
props.add("filterPath");
props.add("host");
props.add("lazyStartProducer");
props.add("maxBinaryMessageSize");
props.add("maxIdleTime");
props.add("maxTextMessageSize");
props.add("minVersion");
props.add("port");
props.add("resourceUri");
props.add("sendTimeout");
props.add("sendToAll");
props.add("sessionSupport");
props.add("sslContextParameters");
props.add("staticResources");
props.add("subprotocol");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
MULTI_VALUE_PREFIXES = Collections.emptySet();
}
@Override
public boolean isEnabled(String scheme) {
return "websocket".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, "host", "0.0.0.0", false, copy);
uri = buildPathParameter(syntax, uri, "port", "9292", false, copy);
uri = buildPathParameter(syntax, uri, "resourceUri", 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