public static interface FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
account(String account)
Account to use for login.
|
default FtpEndpointBuilderFactory.AdvancedFtpEndpointConsumerBuilder |
advanced() |
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
antExclude(String antExclude)
Ant style filter exclusion.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
antFilterCaseSensitive(boolean antFilterCaseSensitive)
Sets case sensitive flag on ant filter.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
antFilterCaseSensitive(String antFilterCaseSensitive)
Sets case sensitive flag on ant filter.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
antInclude(String antInclude)
Ant style filter inclusion.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffErrorThreshold(int backoffErrorThreshold)
The number of subsequent error polls (failed due some error) that
should happen before the backoffMultipler should kick-in.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffErrorThreshold(String backoffErrorThreshold)
The number of subsequent error polls (failed due some error) that
should happen before the backoffMultipler should kick-in.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffIdleThreshold(int backoffIdleThreshold)
The number of subsequent idle polls that should happen before the
backoffMultipler should kick-in.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffIdleThreshold(String backoffIdleThreshold)
The number of subsequent idle polls that should happen before the
backoffMultipler should kick-in.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffMultiplier(int backoffMultiplier)
To let the scheduled polling consumer backoff if there has been a
number of subsequent idles/errors in a row.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
backoffMultiplier(String backoffMultiplier)
To let the scheduled polling consumer backoff if there has been a
number of subsequent idles/errors in a row.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
binary(boolean binary)
Specifies the file transfer mode, BINARY or ASCII.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
binary(String binary)
Specifies the file transfer mode, BINARY or ASCII.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
bridgeErrorHandler(String bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
charset(String charset)
This option is used to specify the encoding of the file.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
delay(long delay)
Milliseconds before the next poll.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
delay(String delay)
Milliseconds before the next poll.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
delete(boolean delete)
If true, the file will be deleted after it is processed successfully.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
delete(String delete)
If true, the file will be deleted after it is processed successfully.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
disconnect(boolean disconnect)
Whether or not to disconnect from remote FTP server right after use.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
disconnect(String disconnect)
Whether or not to disconnect from remote FTP server right after use.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
doneFileName(String doneFileName)
Producer: If provided, then Camel will write a 2nd done file when the
original file has been written.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
eagerMaxMessagesPerPoll(boolean eagerMaxMessagesPerPoll)
Allows for controlling whether the limit from maxMessagesPerPoll is
eager or not.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
eagerMaxMessagesPerPoll(String eagerMaxMessagesPerPoll)
Allows for controlling whether the limit from maxMessagesPerPoll is
eager or not.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
exclude(String exclude)
Is used to exclude files, if filename matches the regex pattern
(matching is case in-senstive).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
exclusiveReadLockStrategy(Object exclusiveReadLockStrategy)
Pluggable read-lock as a
org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy
implementation.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
exclusiveReadLockStrategy(String exclusiveReadLockStrategy)
Pluggable read-lock as a
org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy
implementation.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
fileName(org.apache.camel.Expression fileName)
Use Expression such as File Language to dynamically set the filename.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
fileName(String fileName)
Use Expression such as File Language to dynamically set the filename.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filter(Object filter)
Pluggable filter as a
org.apache.camel.component.file.GenericFileFilter class.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filter(String filter)
Pluggable filter as a
org.apache.camel.component.file.GenericFileFilter class.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filterDirectory(org.apache.camel.Predicate filterDirectory)
Filters the directory based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filterDirectory(String filterDirectory)
Filters the directory based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filterFile(org.apache.camel.Predicate filterFile)
Filters the file based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
filterFile(String filterFile)
Filters the file based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
greedy(boolean greedy)
If greedy is enabled, then the ScheduledPollConsumer will run
immediately again, if the previous run polled 1 or more messages.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
greedy(String greedy)
If greedy is enabled, then the ScheduledPollConsumer will run
immediately again, if the previous run polled 1 or more messages.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotent(Boolean idempotent)
Option to use the Idempotent Consumer EIP pattern to let Camel skip
already processed files.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotent(String idempotent)
Option to use the Idempotent Consumer EIP pattern to let Camel skip
already processed files.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotentKey(org.apache.camel.Expression idempotentKey)
To use a custom idempotent key.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotentKey(String idempotentKey)
To use a custom idempotent key.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotentRepository(org.apache.camel.spi.IdempotentRepository idempotentRepository)
A pluggable repository org.apache.camel.spi.IdempotentRepository
which by default use MemoryMessageIdRepository if none is specified
and idempotent is true.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
idempotentRepository(String idempotentRepository)
A pluggable repository org.apache.camel.spi.IdempotentRepository
which by default use MemoryMessageIdRepository if none is specified
and idempotent is true.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
include(String include)
Is used to include files, if filename matches the regex pattern
(matching is case in-sensitive).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
initialDelay(long initialDelay)
Milliseconds before the first poll starts.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
initialDelay(String initialDelay)
Milliseconds before the first poll starts.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
maxDepth(int maxDepth)
The maximum depth to traverse when recursively processing a
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
maxDepth(String maxDepth)
The maximum depth to traverse when recursively processing a
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
maxMessagesPerPoll(int maxMessagesPerPoll)
To define a maximum messages to gather per poll.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
maxMessagesPerPoll(String maxMessagesPerPoll)
To define a maximum messages to gather per poll.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
minDepth(int minDepth)
The minimum depth to start processing when recursively processing a
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
minDepth(String minDepth)
The minimum depth to start processing when recursively processing a
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
move(org.apache.camel.Expression move)
Expression (such as Simple Language) used to dynamically set the
filename when moving it after processing.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
move(String move)
Expression (such as Simple Language) used to dynamically set the
filename when moving it after processing.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
moveFailed(org.apache.camel.Expression moveFailed)
Sets the move failure expression based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
moveFailed(String moveFailed)
Sets the move failure expression based on Simple language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
noop(boolean noop)
If true, the file is not moved or deleted in any way.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
noop(String noop)
If true, the file is not moved or deleted in any way.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
passiveMode(boolean passiveMode)
Sets passive mode connections.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
passiveMode(String passiveMode)
Sets passive mode connections.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
password(String password)
Password to use for login.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
preMove(org.apache.camel.Expression preMove)
Expression (such as File Language) used to dynamically set the
filename when moving it before processing.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
preMove(String preMove)
Expression (such as File Language) used to dynamically set the
filename when moving it before processing.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
preSort(boolean preSort)
When pre-sort is enabled then the consumer will sort the file and
directory names during polling, that was retrieved from the file
system.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
preSort(String preSort)
When pre-sort is enabled then the consumer will sort the file and
directory names during polling, that was retrieved from the file
system.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLock(String readLock)
Used by consumer, to only poll the files if it has exclusive
read-lock on the file (i.e.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockCheckInterval(long readLockCheckInterval)
Interval in millis for the read-lock, if supported by the read lock.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockCheckInterval(String readLockCheckInterval)
Interval in millis for the read-lock, if supported by the read lock.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockDeleteOrphanLockFiles(boolean readLockDeleteOrphanLockFiles)
Whether or not read lock with marker files should upon startup delete
any orphan read lock files, which may have been left on the file
system, if Camel was not properly shutdown (such as a JVM crash).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockDeleteOrphanLockFiles(String readLockDeleteOrphanLockFiles)
Whether or not read lock with marker files should upon startup delete
any orphan read lock files, which may have been left on the file
system, if Camel was not properly shutdown (such as a JVM crash).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockLoggingLevel(org.apache.camel.LoggingLevel readLockLoggingLevel)
Logging level used when a read lock could not be acquired.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockLoggingLevel(String readLockLoggingLevel)
Logging level used when a read lock could not be acquired.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMarkerFile(boolean readLockMarkerFile)
Whether to use marker file with the changed, rename, or exclusive
read lock types.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMarkerFile(String readLockMarkerFile)
Whether to use marker file with the changed, rename, or exclusive
read lock types.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMinAge(long readLockMinAge)
This option is applied only for readLock=changed.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMinAge(String readLockMinAge)
This option is applied only for readLock=changed.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMinLength(long readLockMinLength)
This option is applied only for readLock=changed.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockMinLength(String readLockMinLength)
This option is applied only for readLock=changed.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockRemoveOnCommit(boolean readLockRemoveOnCommit)
This option is applied only for readLock=idempotent.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockRemoveOnCommit(String readLockRemoveOnCommit)
This option is applied only for readLock=idempotent.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockRemoveOnRollback(boolean readLockRemoveOnRollback)
This option is applied only for readLock=idempotent.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockRemoveOnRollback(String readLockRemoveOnRollback)
This option is applied only for readLock=idempotent.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockTimeout(long readLockTimeout)
Optional timeout in millis for the read-lock, if supported by the
read-lock.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
readLockTimeout(String readLockTimeout)
Optional timeout in millis for the read-lock, if supported by the
read-lock.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
recursive(boolean recursive)
If a directory, will look for files in all the sub-directories as
well.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
recursive(String recursive)
If a directory, will look for files in all the sub-directories as
well.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
repeatCount(long repeatCount)
Specifies a maximum limit of number of fires.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
repeatCount(String repeatCount)
Specifies a maximum limit of number of fires.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
resumeDownload(boolean resumeDownload)
Configures whether resume download is enabled.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
resumeDownload(String resumeDownload)
Configures whether resume download is enabled.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
runLoggingLevel(org.apache.camel.LoggingLevel runLoggingLevel)
The consumer logs a start/complete log line when it polls.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
runLoggingLevel(String runLoggingLevel)
The consumer logs a start/complete log line when it polls.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
scheduledExecutorService(ScheduledExecutorService scheduledExecutorService)
Allows for configuring a custom/shared thread pool to use for the
consumer.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
scheduledExecutorService(String scheduledExecutorService)
Allows for configuring a custom/shared thread pool to use for the
consumer.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
scheduler(Object scheduler)
To use a cron scheduler from either camel-spring or camel-quartz
component.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
scheduler(String scheduler)
To use a cron scheduler from either camel-spring or camel-quartz
component.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
schedulerProperties(Map values)
To configure additional properties when using a custom scheduler or
any of the Quartz, Spring based scheduler.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
schedulerProperties(String key,
Object value)
To configure additional properties when using a custom scheduler or
any of the Quartz, Spring based scheduler.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sendEmptyMessageWhenIdle(boolean sendEmptyMessageWhenIdle)
If the polling consumer did not poll any files, you can enable this
option to send an empty message (no body) instead.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sendEmptyMessageWhenIdle(String sendEmptyMessageWhenIdle)
If the polling consumer did not poll any files, you can enable this
option to send an empty message (no body) instead.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
separator(FtpEndpointBuilderFactory.PathSeparator separator)
Sets the path separator to be used.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
separator(String separator)
Sets the path separator to be used.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
shuffle(boolean shuffle)
To shuffle the list of files (sort in random order).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
shuffle(String shuffle)
To shuffle the list of files (sort in random order).
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sortBy(Comparator<org.apache.camel.Exchange> sortBy)
Built-in sort by using the File Language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sortBy(String sortBy)
Built-in sort by using the File Language.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sorter(Comparator<Object> sorter)
Pluggable sorter as a java.util.Comparator class.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
sorter(String sorter)
Pluggable sorter as a java.util.Comparator class.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
startScheduler(boolean startScheduler)
Whether the scheduler should be auto started.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
startScheduler(String startScheduler)
Whether the scheduler should be auto started.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
streamDownload(boolean streamDownload)
Sets the download method to use when not using a local working
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
streamDownload(String streamDownload)
Sets the download method to use when not using a local working
directory.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
timeUnit(String timeUnit)
Time unit for initialDelay and delay options.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
timeUnit(TimeUnit timeUnit)
Time unit for initialDelay and delay options.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingIntervalSeconds(int transferLoggingIntervalSeconds)
Configures the interval in seconds to use when logging the progress
of upload and download operations that are in-flight.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingIntervalSeconds(String transferLoggingIntervalSeconds)
Configures the interval in seconds to use when logging the progress
of upload and download operations that are in-flight.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingLevel(org.apache.camel.LoggingLevel transferLoggingLevel)
Configure the logging level to use when logging the progress of
upload and download operations.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingLevel(String transferLoggingLevel)
Configure the logging level to use when logging the progress of
upload and download operations.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingVerbose(boolean transferLoggingVerbose)
Configures whether the perform verbose (fine grained) logging of the
progress of upload and download operations.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
transferLoggingVerbose(String transferLoggingVerbose)
Configures whether the perform verbose (fine grained) logging of the
progress of upload and download operations.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
useFixedDelay(boolean useFixedDelay)
Controls if fixed delay or fixed rate is used.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
useFixedDelay(String useFixedDelay)
Controls if fixed delay or fixed rate is used.
|
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder |
username(String username)
Username to use for login.
|
default FtpEndpointBuilderFactory.AdvancedFtpEndpointConsumerBuilder advanced()
default FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder binary(boolean binary)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder binary(String binary)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder charset(String charset)
java.lang.String type.
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder disconnect(boolean disconnect)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder disconnect(String disconnect)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder doneFileName(String doneFileName)
java.lang.String type.
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder fileName(org.apache.camel.Expression fileName)
org.apache.camel.Expression type.
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder fileName(String fileName)
org.apache.camel.Expression type.
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder passiveMode(boolean passiveMode)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder passiveMode(String passiveMode)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder separator(FtpEndpointBuilderFactory.PathSeparator separator)
org.apache.camel.component.file.remote.RemoteFileConfiguration$PathSeparator type.
Default: UNIX
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder separator(String separator)
org.apache.camel.component.file.remote.RemoteFileConfiguration$PathSeparator type.
Default: UNIX
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingIntervalSeconds(int transferLoggingIntervalSeconds)
int type.
Default: 5
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingIntervalSeconds(String transferLoggingIntervalSeconds)
int type.
Default: 5
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingLevel(org.apache.camel.LoggingLevel transferLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: DEBUG
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingLevel(String transferLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: DEBUG
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingVerbose(boolean transferLoggingVerbose)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder transferLoggingVerbose(String transferLoggingVerbose)
boolean type.
Default: false
Group: commondefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder bridgeErrorHandler(String bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder delete(boolean delete)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder delete(String delete)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder moveFailed(org.apache.camel.Expression moveFailed)
org.apache.camel.Expression type.
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder moveFailed(String moveFailed)
org.apache.camel.Expression type.
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder noop(boolean noop)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder noop(String noop)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder preMove(org.apache.camel.Expression preMove)
org.apache.camel.Expression type.
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder preMove(String preMove)
org.apache.camel.Expression type.
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder preSort(boolean preSort)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder preSort(String preSort)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder recursive(boolean recursive)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder recursive(String recursive)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder resumeDownload(boolean resumeDownload)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder resumeDownload(String resumeDownload)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sendEmptyMessageWhenIdle(boolean sendEmptyMessageWhenIdle)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sendEmptyMessageWhenIdle(String sendEmptyMessageWhenIdle)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder streamDownload(boolean streamDownload)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder streamDownload(String streamDownload)
boolean type.
Default: false
Group: consumerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder antExclude(String antExclude)
java.lang.String type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder antFilterCaseSensitive(boolean antFilterCaseSensitive)
boolean type.
Default: true
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder antFilterCaseSensitive(String antFilterCaseSensitive)
boolean type.
Default: true
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder antInclude(String antInclude)
java.lang.String type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder eagerMaxMessagesPerPoll(boolean eagerMaxMessagesPerPoll)
boolean type.
Default: true
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder eagerMaxMessagesPerPoll(String eagerMaxMessagesPerPoll)
boolean type.
Default: true
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder exclude(String exclude)
java.lang.String type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filter(Object filter)
org.apache.camel.component.file.GenericFileFilter<org.apache.commons.net.ftp.FTPFile> type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filter(String filter)
org.apache.camel.component.file.GenericFileFilter<org.apache.commons.net.ftp.FTPFile> type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filterDirectory(org.apache.camel.Predicate filterDirectory)
org.apache.camel.Predicate type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filterDirectory(String filterDirectory)
org.apache.camel.Predicate type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filterFile(org.apache.camel.Predicate filterFile)
org.apache.camel.Predicate type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder filterFile(String filterFile)
org.apache.camel.Predicate type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotent(Boolean idempotent)
java.lang.Boolean type.
Default: false
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotent(String idempotent)
java.lang.Boolean
type.
Default: false
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotentKey(org.apache.camel.Expression idempotentKey)
org.apache.camel.Expression type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotentKey(String idempotentKey)
org.apache.camel.Expression type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotentRepository(org.apache.camel.spi.IdempotentRepository idempotentRepository)
org.apache.camel.spi.IdempotentRepository type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder idempotentRepository(String idempotentRepository)
org.apache.camel.spi.IdempotentRepository type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder include(String include)
java.lang.String type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder maxDepth(int maxDepth)
int type.
Default: 2147483647
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder maxDepth(String maxDepth)
int type.
Default: 2147483647
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder maxMessagesPerPoll(int maxMessagesPerPoll)
int type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder maxMessagesPerPoll(String maxMessagesPerPoll)
int type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder minDepth(int minDepth)
int type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder minDepth(String minDepth)
int type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder move(org.apache.camel.Expression move)
org.apache.camel.Expression type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder move(String move)
org.apache.camel.Expression type.
Group: filterdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder exclusiveReadLockStrategy(Object exclusiveReadLockStrategy)
org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy<org.apache.commons.net.ftp.FTPFile> type.
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder exclusiveReadLockStrategy(String exclusiveReadLockStrategy)
org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy<org.apache.commons.net.ftp.FTPFile> type.
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLock(String readLock)
java.lang.String type.
Default: none
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockCheckInterval(long readLockCheckInterval)
long type.
Default: 1000
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockCheckInterval(String readLockCheckInterval)
long type.
Default: 1000
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockDeleteOrphanLockFiles(boolean readLockDeleteOrphanLockFiles)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockDeleteOrphanLockFiles(String readLockDeleteOrphanLockFiles)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockLoggingLevel(org.apache.camel.LoggingLevel readLockLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: DEBUG
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockLoggingLevel(String readLockLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: DEBUG
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMarkerFile(boolean readLockMarkerFile)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMarkerFile(String readLockMarkerFile)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMinAge(long readLockMinAge)
long type.
Default: 0
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMinAge(String readLockMinAge)
long type.
Default: 0
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMinLength(long readLockMinLength)
long type.
Default: 1
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockMinLength(String readLockMinLength)
long type.
Default: 1
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockRemoveOnCommit(boolean readLockRemoveOnCommit)
boolean type.
Default: false
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockRemoveOnCommit(String readLockRemoveOnCommit)
boolean type.
Default: false
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockRemoveOnRollback(boolean readLockRemoveOnRollback)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockRemoveOnRollback(String readLockRemoveOnRollback)
boolean type.
Default: true
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockTimeout(long readLockTimeout)
long type.
Default: 10000
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder readLockTimeout(String readLockTimeout)
long type.
Default: 10000
Group: lockdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffErrorThreshold(int backoffErrorThreshold)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffErrorThreshold(String backoffErrorThreshold)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffIdleThreshold(int backoffIdleThreshold)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffIdleThreshold(String backoffIdleThreshold)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffMultiplier(int backoffMultiplier)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder backoffMultiplier(String backoffMultiplier)
int type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder delay(long delay)
long type.
Default: 500
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder delay(String delay)
long type.
Default: 500
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder greedy(boolean greedy)
boolean type.
Default: false
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder greedy(String greedy)
boolean type.
Default: false
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder initialDelay(long initialDelay)
long type.
Default: 1000
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder initialDelay(String initialDelay)
long type.
Default: 1000
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder repeatCount(long repeatCount)
long type.
Default: 0
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder repeatCount(String repeatCount)
long type.
Default: 0
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder runLoggingLevel(org.apache.camel.LoggingLevel runLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: TRACE
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder runLoggingLevel(String runLoggingLevel)
org.apache.camel.LoggingLevel type.
Default: TRACE
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder scheduledExecutorService(ScheduledExecutorService scheduledExecutorService)
java.util.concurrent.ScheduledExecutorService type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder scheduledExecutorService(String scheduledExecutorService)
java.util.concurrent.ScheduledExecutorService type.
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder scheduler(Object scheduler)
java.lang.Object type.
Default: none
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder scheduler(String scheduler)
java.lang.Object type.
Default: none
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder schedulerProperties(String key, Object value)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
schedulerProperties(String, Object) method to add a value (call the
method multiple times to set more values).
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder schedulerProperties(Map values)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
schedulerProperties(String, Object) method to add a value (call the
method multiple times to set more values).
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder startScheduler(boolean startScheduler)
boolean type.
Default: true
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder startScheduler(String startScheduler)
boolean type.
Default: true
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder timeUnit(TimeUnit timeUnit)
java.util.concurrent.TimeUnit type.
Default: MILLISECONDS
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder timeUnit(String timeUnit)
java.util.concurrent.TimeUnit type.
Default: MILLISECONDS
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder useFixedDelay(boolean useFixedDelay)
boolean type.
Default: true
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder useFixedDelay(String useFixedDelay)
boolean type.
Default: true
Group: schedulerdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder account(String account)
java.lang.String type.
Group: securitydefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder password(String password)
java.lang.String type.
Group: securitydefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder username(String username)
java.lang.String type.
Group: securitydefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder shuffle(boolean shuffle)
boolean type.
Default: false
Group: sortdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder shuffle(String shuffle)
boolean type.
Default: false
Group: sortdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sortBy(Comparator<org.apache.camel.Exchange> sortBy)
java.util.Comparator<org.apache.camel.Exchange>
type.
Group: sortdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sortBy(String sortBy)
java.util.Comparator<org.apache.camel.Exchange>
type.
Group: sortdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sorter(Comparator<Object> sorter)
java.util.Comparator<org.apache.camel.component.file.GenericFile<org.apache.commons.net.ftp.FTPFile>> type.
Group: sortdefault FtpEndpointBuilderFactory.FtpEndpointConsumerBuilder sorter(String sorter)
java.util.Comparator<org.apache.camel.component.file.GenericFile<org.apache.commons.net.ftp.FTPFile>> type.
Group: sortApache Camel