
org.apache.camel.component.file.FileEndpointUriFactory Maven / Gradle / Ivy
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.file;
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 FileEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
private static final String BASE = ":directoryName";
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<>(100);
props.add("allowNullBody");
props.add("antExclude");
props.add("antFilterCaseSensitive");
props.add("antInclude");
props.add("appendChars");
props.add("autoCreate");
props.add("autoCreateStepwise");
props.add("backoffErrorThreshold");
props.add("backoffIdleThreshold");
props.add("backoffMultiplier");
props.add("bridgeErrorHandler");
props.add("browseLimit");
props.add("bufferSize");
props.add("charset");
props.add("checksumFileAlgorithm");
props.add("chmod");
props.add("chmodDirectory");
props.add("copyAndDeleteOnRenameFail");
props.add("delay");
props.add("delete");
props.add("directoryMustExist");
props.add("directoryName");
props.add("doneFileName");
props.add("eagerDeleteTargetFile");
props.add("eagerMaxMessagesPerPoll");
props.add("exceptionHandler");
props.add("exchangePattern");
props.add("exclude");
props.add("excludeExt");
props.add("exclusiveReadLockStrategy");
props.add("extendedAttributes");
props.add("fileExist");
props.add("fileName");
props.add("filter");
props.add("filterDirectory");
props.add("filterFile");
props.add("flatten");
props.add("forceWrites");
props.add("greedy");
props.add("idempotent");
props.add("idempotentEager");
props.add("idempotentKey");
props.add("idempotentRepository");
props.add("inProgressRepository");
props.add("include");
props.add("includeExt");
props.add("includeHiddenDirs");
props.add("includeHiddenFiles");
props.add("initialDelay");
props.add("jailStartingDirectory");
props.add("keepLastModified");
props.add("lazyStartProducer");
props.add("localWorkDirectory");
props.add("maxDepth");
props.add("maxMessagesPerPoll");
props.add("minDepth");
props.add("move");
props.add("moveExisting");
props.add("moveExistingFileStrategy");
props.add("moveFailed");
props.add("noop");
props.add("onCompletionExceptionHandler");
props.add("pollStrategy");
props.add("preMove");
props.add("preSort");
props.add("probeContentType");
props.add("processStrategy");
props.add("readLock");
props.add("readLockCheckInterval");
props.add("readLockDeleteOrphanLockFiles");
props.add("readLockIdempotentReleaseAsync");
props.add("readLockIdempotentReleaseAsyncPoolSize");
props.add("readLockIdempotentReleaseDelay");
props.add("readLockIdempotentReleaseExecutorService");
props.add("readLockLoggingLevel");
props.add("readLockMarkerFile");
props.add("readLockMinAge");
props.add("readLockMinLength");
props.add("readLockRemoveOnCommit");
props.add("readLockRemoveOnRollback");
props.add("readLockTimeout");
props.add("recursive");
props.add("renameUsingCopy");
props.add("repeatCount");
props.add("runLoggingLevel");
props.add("scheduledExecutorService");
props.add("scheduler");
props.add("schedulerProperties");
props.add("sendEmptyMessageWhenIdle");
props.add("shuffle");
props.add("sortBy");
props.add("sorter");
props.add("startScheduler");
props.add("startingDirectoryMustExist");
props.add("startingDirectoryMustHaveAccess");
props.add("synchronous");
props.add("tempFileName");
props.add("tempPrefix");
props.add("timeUnit");
props.add("useFixedDelay");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
Set prefixes = new HashSet<>(1);
prefixes.add("scheduler.");
MULTI_VALUE_PREFIXES = Collections.unmodifiableSet(prefixes);
}
@Override
public boolean isEnabled(String scheme) {
return "file".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, "directoryName", 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