org.apache.camel.component.springrabbit.SpringRabbitMQEndpointUriFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-spring-rabbitmq Show documentation
Show all versions of camel-spring-rabbitmq Show documentation
Camel RabbitMQ Component using Spring RabbitMQ client
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.springrabbit;
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 SpringRabbitMQEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
private static final String BASE = ":exchangeName";
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<>(35);
props.add("acknowledgeMode");
props.add("args");
props.add("asyncConsumer");
props.add("autoDeclare");
props.add("autoStartup");
props.add("bridgeErrorHandler");
props.add("concurrentConsumers");
props.add("connectionFactory");
props.add("deadLetterExchange");
props.add("deadLetterExchangeType");
props.add("deadLetterQueue");
props.add("deadLetterRoutingKey");
props.add("disableReplyTo");
props.add("exceptionHandler");
props.add("exchangeName");
props.add("exchangePattern");
props.add("exchangeType");
props.add("exclusive");
props.add("lazyStartProducer");
props.add("maxConcurrentConsumers");
props.add("maximumRetryAttempts");
props.add("messageConverter");
props.add("messageListenerContainerType");
props.add("messagePropertiesConverter");
props.add("noLocal");
props.add("prefetchCount");
props.add("queues");
props.add("rejectAndDontRequeue");
props.add("replyTimeout");
props.add("retry");
props.add("retryDelay");
props.add("routingKey");
props.add("synchronous");
props.add("testConnectionOnStartup");
props.add("usePublisherConnection");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
Set prefixes = new HashSet<>(1);
prefixes.add("arg.");
MULTI_VALUE_PREFIXES = Collections.unmodifiableSet(prefixes);
}
@Override
public boolean isEnabled(String scheme) {
return "spring-rabbitmq".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, "exchangeName", 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