
org.apache.camel.component.minio.MinioEndpointUriFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-minio Show documentation
Show all versions of camel-minio Show documentation
Store and retrieve objects from Minio Storage Service
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.minio;
import javax.annotation.processing.Generated;
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!
*/
@Generated("org.apache.camel.maven.packaging.GenerateEndpointUriFactoryMojo")
public class MinioEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
private static final String BASE = ":bucketName";
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<>(64);
props.add("accessKey");
props.add("autoCloseBody");
props.add("autoCreateBucket");
props.add("backoffErrorThreshold");
props.add("backoffIdleThreshold");
props.add("backoffMultiplier");
props.add("bridgeErrorHandler");
props.add("bucketName");
props.add("bypassGovernanceMode");
props.add("customHttpClient");
props.add("delay");
props.add("deleteAfterRead");
props.add("deleteAfterWrite");
props.add("delimiter");
props.add("destinationBucketName");
props.add("destinationObjectName");
props.add("endpoint");
props.add("exceptionHandler");
props.add("exchangePattern");
props.add("greedy");
props.add("includeBody");
props.add("includeFolders");
props.add("includeUserMetadata");
props.add("includeVersions");
props.add("initialDelay");
props.add("keyName");
props.add("lazyStartProducer");
props.add("length");
props.add("matchETag");
props.add("maxConnections");
props.add("maxMessagesPerPoll");
props.add("minioClient");
props.add("modifiedSince");
props.add("moveAfterRead");
props.add("notMatchETag");
props.add("objectLock");
props.add("objectName");
props.add("offset");
props.add("operation");
props.add("pojoRequest");
props.add("policy");
props.add("pollStrategy");
props.add("prefix");
props.add("proxyPort");
props.add("recursive");
props.add("region");
props.add("repeatCount");
props.add("runLoggingLevel");
props.add("scheduledExecutorService");
props.add("scheduler");
props.add("schedulerProperties");
props.add("secretKey");
props.add("secure");
props.add("sendEmptyMessageWhenIdle");
props.add("serverSideEncryption");
props.add("serverSideEncryptionCustomerKey");
props.add("startAfter");
props.add("startScheduler");
props.add("storageClass");
props.add("timeUnit");
props.add("unModifiedSince");
props.add("useFixedDelay");
props.add("useVersion1");
props.add("versionId");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
Set secretProps = new HashSet<>(2);
secretProps.add("accessKey");
secretProps.add("secretKey");
SECRET_PROPERTY_NAMES = Collections.unmodifiableSet(secretProps);
Set prefixes = new HashSet<>(1);
prefixes.add("scheduler.");
MULTI_VALUE_PREFIXES = Collections.unmodifiableSet(prefixes);
}
@Override
public boolean isEnabled(String scheme) {
return "minio".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, "bucketName", 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