blob: f7877dfcfd6bc7bd4702e0cfe175627bea48d46d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.kafkaconnector.ftps;
import java.util.Map;
import javax.annotation.Generated;
import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig;
import org.apache.kafka.common.config.ConfigDef;
@Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.")
public class CamelFtpsSinkConnectorConfig extends CamelSinkConnectorConfig {
public static final String CAMEL_SINK_FTPS_PATH_HOST_CONF = "camel.sink.path.host";
public static final String CAMEL_SINK_FTPS_PATH_HOST_DOC = "Hostname of the FTP server";
public static final String CAMEL_SINK_FTPS_PATH_HOST_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_PATH_PORT_CONF = "camel.sink.path.port";
public static final String CAMEL_SINK_FTPS_PATH_PORT_DOC = "Port of the FTP server";
public static final Integer CAMEL_SINK_FTPS_PATH_PORT_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_CONF = "camel.sink.path.directoryName";
public static final String CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_DOC = "The starting directory";
public static final String CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_BINARY_CONF = "camel.sink.endpoint.binary";
public static final String CAMEL_SINK_FTPS_ENDPOINT_BINARY_DOC = "Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_BINARY_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHARSET_CONF = "camel.sink.endpoint.charset";
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHARSET_DOC = "This option is used to specify the encoding of the file. You can use this on the consumer, to specify the encodings of the files, which allow Camel to know the charset it should load the file content in case the file content is being accessed. Likewise when writing a file, you can use this option to specify which charset to write the file as well. Do mind that when writing the file Camel may have to read the message content into memory to be able to convert the data into the configured charset, so do not use this if you have big messages.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHARSET_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_CONF = "camel.sink.endpoint.disconnect";
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_DOC = "Whether or not to disconnect from remote FTP server right after use. Disconnect will only disconnect the current connection to the FTP server. If you have a consumer which you want to stop, then you need to stop the consumer/route instead.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_CONF = "camel.sink.endpoint.doneFileName";
public static final String CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_DOC = "Producer: If provided, then Camel will write a 2nd done file when the original file has been written. The done file will be empty. This option configures what file name to use. Either you can specify a fixed name. Or you can use dynamic placeholders. The done file will always be written in the same folder as the original file. Consumer: If provided, Camel will only consume files if a done file exists. This option configures what file name to use. Either you can specify a fixed name. Or you can use dynamic placeholders.The done file is always expected in the same folder as the original file. Only ${file.name} and ${file.name.next} is supported as dynamic placeholders.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_CONF = "camel.sink.endpoint.fileName";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_DOC = "Use Expression such as File Language to dynamically set the filename. For consumers, it's used as a filename filter. For producers, it's used to evaluate the filename to write. If an expression is set, it take precedence over the CamelFileName header. (Note: The header itself can also be an Expression). The expression options support both String and Expression types. If the expression is a String type, it is always evaluated using the File Language. If the expression is an Expression type, the specified Expression type is used - this allows you, for instance, to use OGNL expressions. For the consumer, you can use it to filter filenames, so you can for instance consume today's file using the File Language syntax: mydata-${date:now:yyyyMMdd}.txt. The producers support the CamelOverruleFileName header which takes precedence over any existing CamelFileName header; the CamelOverruleFileName is a header that is used only once, and makes it easier as this avoids to temporary store CamelFileName and have to restore it afterwards.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_CONF = "camel.sink.endpoint.passiveMode";
public static final String CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_DOC = "Sets passive mode connections. Default is active mode connections.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_CONF = "camel.sink.endpoint.separator";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_DOC = "Sets the path separator to be used. UNIX = Uses unix style path separator Windows = Uses windows style path separator Auto = (is default) Use existing path separator in file name One of: [UNIX] [Windows] [Auto]";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_DEFAULT = "UNIX";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_CONF = "camel.sink.endpoint.transferLoggingIntervalSeconds";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_DOC = "Configures the interval in seconds to use when logging the progress of upload and download operations that are in-flight. This is used for logging progress when operations takes longer time.";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_DEFAULT = 5;
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_CONF = "camel.sink.endpoint.transferLoggingLevel";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_DOC = "Configure the logging level to use when logging the progress of upload and download operations. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_DEFAULT = "DEBUG";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_CONF = "camel.sink.endpoint.transferLoggingVerbose";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_DOC = "Configures whether the perform verbose (fine grained) logging of the progress of upload and download operations.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_CONF = "camel.sink.endpoint.fastExistsCheck";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_DOC = "If set this option to be true, camel-ftp will use the list file directly to check if the file exists. Since some FTP server may not support to list the file directly, if the option is false, camel-ftp will use the old way to list the directory and check if the file exists. This option also influences readLock=changed to control whether it performs a fast check to update file information or not. This can be used to speed up the process if the FTP server has a lot of files.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_CONF = "camel.sink.endpoint.fileExist";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_DOC = "What to do if a file already exists with the same name. Override, which is the default, replaces the existing file. - Append - adds content to the existing file. - Fail - throws a GenericFileOperationException, indicating that there is already an existing file. - Ignore - silently ignores the problem and does not override the existing file, but assumes everything is okay. - Move - option requires to use the moveExisting option to be configured as well. The option eagerDeleteTargetFile can be used to control what to do if an moving the file, and there exists already an existing file, otherwise causing the move operation to fail. The Move option will move any existing files, before writing the target file. - TryRename is only applicable if tempFileName option is in use. This allows to try renaming the file from the temporary name to the actual name, without doing any exists check. This check may be faster on some file systems and especially FTP servers. One of: [Override] [Append] [Fail] [Ignore] [Move] [TryRename]";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_DEFAULT = "Override";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_CONF = "camel.sink.endpoint.flatten";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_DOC = "Flatten is used to flatten the file name path to strip any leading paths, so it's just the file name. This allows you to consume recursively into sub-directories, but when you eg write the files to another directory they will be written in a single directory. Setting this to true on the producer enforces that any file name in CamelFileName header will be stripped for any leading paths.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_CONF = "camel.sink.endpoint.jailStartingDirectory";
public static final String CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_DOC = "Used for jailing (restricting) writing files to the starting directory (and sub) only. This is enabled by default to not allow Camel to write files to outside directories (to be more secured out of the box). You can turn this off to allow writing files to directories outside the starting directory, such as parent or root folders.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_DEFAULT = true;
public static final String CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_CONF = "camel.sink.endpoint.lazyStartProducer";
public static final String CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_DOC = "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_CONF = "camel.sink.endpoint.moveExisting";
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_DOC = "Expression (such as File Language) used to compute file name to use when fileExist=Move is configured. To move files into a backup subdirectory just enter backup. This option only supports the following File Language tokens: file:name, file:name.ext, file:name.noext, file:onlyname, file:onlyname.noext, file:ext, and file:parent. Notice the file:parent is not supported by the FTP component, as the FTP component can only move any existing files to a relative directory based on current dir as base.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_CONF = "camel.sink.endpoint.tempFileName";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_DOC = "The same as tempPrefix option but offering a more fine grained control on the naming of the temporary filename as it uses the File Language. The location for tempFilename is relative to the final file location in the option 'fileName', not the target directory in the base uri. For example if option fileName includes a directory prefix: dir/finalFilename then tempFileName is relative to that subdirectory dir.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_CONF = "camel.sink.endpoint.tempPrefix";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_DOC = "This option is used to write the file using a temporary name and then, after the write is complete, rename it to the real name. Can be used to identify files being written and also avoid consumers (not using exclusive read locks) reading in progress files. Is often used by FTP when uploading big files.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_CONF = "camel.sink.endpoint.allowNullBody";
public static final String CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_DOC = "Used to specify if a null body is allowed during file writing. If set to true then an empty file will be created, when set to false, and attempting to send a null body to the file component, a GenericFileWriteException of 'Cannot write null body to file.' will be thrown. If the fileExist option is set to 'Override', then the file will be truncated, and if set to append the file will remain unchanged.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHMOD_CONF = "camel.sink.endpoint.chmod";
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHMOD_DOC = "Allows you to set chmod on the stored file. For example chmod=640.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_CHMOD_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_CONF = "camel.sink.endpoint.disconnectOnBatchComplete";
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_DOC = "Whether or not to disconnect from remote FTP server right after a Batch upload is complete. disconnectOnBatchComplete will only disconnect the current connection to the FTP server.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_CONF = "camel.sink.endpoint.eagerDeleteTargetFile";
public static final String CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_DOC = "Whether or not to eagerly delete any existing target file. This option only applies when you use fileExists=Override and the tempFileName option as well. You can use this to disable (set it to false) deleting the target file before the temp file is written. For example you may write big files and want the target file to exists during the temp file is being written. This ensure the target file is only deleted until the very last moment, just before the temp file is being renamed to the target filename. This option is also used to control whether to delete any existing files when fileExist=Move is enabled, and an existing file exists. If this option copyAndDeleteOnRenameFails false, then an exception will be thrown if an existing file existed, if its true, then the existing file is deleted before the move operation.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_DEFAULT = true;
public static final String CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_CONF = "camel.sink.endpoint.keepLastModified";
public static final String CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_DOC = "Will keep the last modified timestamp from the source file (if any). Will use the Exchange.FILE_LAST_MODIFIED header to located the timestamp. This header can contain either a java.util.Date or long with the timestamp. If the timestamp exists and the option is enabled it will set this timestamp on the written file. Note: This option only applies to the file producer. You cannot use this option with any of the ftp producers.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_CONF = "camel.sink.endpoint.moveExistingFileStrategy";
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_DOC = "Strategy (Custom Strategy) used to move file with special naming token to use when fileExist=Move is configured. By default, there is an implementation used if no custom strategy is provided";
public static final String CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_CONF = "camel.sink.endpoint.sendNoop";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_DOC = "Whether to send a noop command as a pre-write check before uploading files to the FTP server. This is enabled by default as a validation of the connection is still valid, which allows to silently re-connect to be able to upload the file. However if this causes problems, you can turn this option off.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_DEFAULT = true;
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_CONF = "camel.sink.endpoint.activePortRange";
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_DOC = "Set the client side port range in active mode. The syntax is: minPort-maxPort Both port numbers are inclusive, eg 10000-19999 to include all 1xxxx ports.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_CONF = "camel.sink.endpoint.autoCreate";
public static final String CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_DOC = "Automatically create missing directories in the file's pathname. For the file consumer, that means creating the starting directory. For the file producer, it means the directory the files should be written to.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_DEFAULT = true;
public static final String CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF = "camel.sink.endpoint.basicPropertyBinding";
public static final String CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC = "Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_CONF = "camel.sink.endpoint.bufferSize";
public static final String CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_DOC = "Buffer size in bytes used for writing files (or in case of FTP for downloading and uploading files).";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_DEFAULT = 131072;
public static final String CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_CONF = "camel.sink.endpoint.connectTimeout";
public static final String CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_DOC = "Sets the connect timeout for waiting for a connection to be established Used by both FTPClient and JSCH";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_DEFAULT = 10000;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONF = "camel.sink.endpoint.ftpClient";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_DOC = "To use a custom instance of FTPClient";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_CONF = "camel.sink.endpoint.ftpClientConfig";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_DOC = "To use a custom instance of FTPClientConfig to configure the FTP client the endpoint should use.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_CONF = "camel.sink.endpoint.ftpClientConfigParameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_DOC = "Used by FtpComponent to provide additional parameters for the FTPClientConfig";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_CONF = "camel.sink.endpoint.ftpClientParameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_DOC = "Used by FtpComponent to provide additional parameters for the FTPClient";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_CONF = "camel.sink.endpoint.maximumReconnectAttempts";
public static final String CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_DOC = "Specifies the maximum reconnect attempts Camel performs when it tries to connect to the remote FTP server. Use 0 to disable this behavior.";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_CONF = "camel.sink.endpoint.reconnectDelay";
public static final String CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_DOC = "Delay in millis Camel will wait before performing a reconnect attempt.";
public static final Long CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_CONF = "camel.sink.endpoint.siteCommand";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_DOC = "Sets optional site command(s) to be executed after successful login. Multiple site commands can be separated using a new line character.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_CONF = "camel.sink.endpoint.soTimeout";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_DOC = "Sets the so timeout FTP and FTPS Only for Camel 2.4. SFTP for Camel 2.14.3/2.15.3/2.16 onwards. Is the SocketOptions.SO_TIMEOUT value in millis. Recommended option is to set this to 300000 so as not have a hanged connection. On SFTP this option is set as timeout on the JSCH Session instance.";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_DEFAULT = 300000;
public static final String CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_CONF = "camel.sink.endpoint.stepwise";
public static final String CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_DOC = "Sets whether we should stepwise change directories while traversing file structures when downloading files, or as well when uploading a file to a directory. You can disable this if you for example are in a situation where you cannot change directory on the FTP server due security reasons. Stepwise cannot be used together with streamDownload.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_DEFAULT = true;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_CONF = "camel.sink.endpoint.synchronous";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_DOC = "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_CONF = "camel.sink.endpoint.throwExceptionOnConnectFailed";
public static final String CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_DOC = "Should an exception be thrown if connection failed (exhausted) By default exception is not thrown and a WARN is logged. You can use this to enable exception being thrown and handle the thrown exception from the org.apache.camel.spi.PollingConsumerPollStrategy rollback method.";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_CONF = "camel.sink.endpoint.timeout";
public static final String CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_DOC = "Sets the data timeout for waiting for reply Used only by FTPClient";
public static final Integer CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_DEFAULT = 30000;
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_CONF = "camel.sink.endpoint.account";
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_DOC = "Account to use for login";
public static final String CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_CONF = "camel.sink.endpoint.disableSecureDataChannelDefaults";
public static final String CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_DOC = "Use this option to disable default options when using secure data channel. This allows you to be in full control what the execPbsz and execProt setting should be used. Default is false";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_CONF = "camel.sink.endpoint.execPbsz";
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_DOC = "When using secure data channel you can set the exec protection buffer size";
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_CONF = "camel.sink.endpoint.execProt";
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_DOC = "The exec protection level PROT command. C - Clear S - Safe(SSL protocol only) E - Confidential(SSL protocol only) P - Private";
public static final String CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_CONF = "camel.sink.endpoint.ftpClientKeyStoreParameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_DOC = "Set the key store parameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_CONF = "camel.sink.endpoint.ftpClientTrustStoreParameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_DOC = "Set the trust store parameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_CONF = "camel.sink.endpoint.implicit";
public static final String CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_DOC = "Set the security mode (Implicit/Explicit). true - Implicit Mode / False - Explicit Mode";
public static final Boolean CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_CONF = "camel.sink.endpoint.password";
public static final String CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_DOC = "Password to use for login";
public static final String CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_CONF = "camel.sink.endpoint.securityProtocol";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_DOC = "Set the underlying security protocol.";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_DEFAULT = "TLSv1.2";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_CONF = "camel.sink.endpoint.sslContextParameters";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_DOC = "Gets the JSSE configuration that overrides any settings in FtpsEndpoint#ftpClientKeyStoreParameters, ftpClientTrustStoreParameters, and FtpsConfiguration#getSecurityProtocol().";
public static final String CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_ENDPOINT_USERNAME_CONF = "camel.sink.endpoint.username";
public static final String CAMEL_SINK_FTPS_ENDPOINT_USERNAME_DOC = "Username to use for login";
public static final String CAMEL_SINK_FTPS_ENDPOINT_USERNAME_DEFAULT = null;
public static final String CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_CONF = "camel.component.ftps.lazyStartProducer";
public static final String CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_DOC = "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.";
public static final Boolean CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_CONF = "camel.component.ftps.basicPropertyBinding";
public static final String CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_DOC = "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities";
public static final Boolean CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT = false;
public static final String CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_CONF = "camel.component.ftps.useGlobalSslContextParameters";
public static final String CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_DOC = "Enable usage of global SSL context parameters.";
public static final Boolean CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_DEFAULT = false;
public CamelFtpsSinkConnectorConfig(
ConfigDef config,
Map<String, String> parsedConfig) {
super(config, parsedConfig);
}
public CamelFtpsSinkConnectorConfig(Map<String, String> parsedConfig) {
this(conf(), parsedConfig);
}
public static ConfigDef conf() {
ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf());
conf.define(CAMEL_SINK_FTPS_PATH_HOST_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_PATH_HOST_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_FTPS_PATH_HOST_DOC);
conf.define(CAMEL_SINK_FTPS_PATH_PORT_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_PATH_PORT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_PATH_PORT_DOC);
conf.define(CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_PATH_DIRECTORY_NAME_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_BINARY_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_BINARY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_BINARY_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_CHARSET_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_CHARSET_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_CHARSET_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_DONE_FILE_NAME_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FILE_NAME_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_PASSIVE_MODE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SEPARATOR_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_INTERVAL_SECONDS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_LEVEL_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TRANSFER_LOGGING_VERBOSE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FAST_EXISTS_CHECK_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FILE_EXIST_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FLATTEN_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_JAIL_STARTING_DIRECTORY_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_LAZY_START_PRODUCER_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TEMP_FILE_NAME_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TEMP_PREFIX_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_ALLOW_NULL_BODY_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_CHMOD_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_CHMOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_CHMOD_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_DISCONNECT_ON_BATCH_COMPLETE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_EAGER_DELETE_TARGET_FILE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_KEEP_LAST_MODIFIED_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_MOVE_EXISTING_FILE_STRATEGY_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SEND_NOOP_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_ACTIVE_PORT_RANGE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_AUTO_CREATE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_BUFFER_SIZE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_CONNECT_TIMEOUT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_CONFIG_PARAMETERS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_PARAMETERS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_MAXIMUM_RECONNECT_ATTEMPTS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_CONF, ConfigDef.Type.LONG, CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_RECONNECT_DELAY_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SITE_COMMAND_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SO_TIMEOUT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_STEPWISE_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SYNCHRONOUS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_THROW_EXCEPTION_ON_CONNECT_FAILED_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_CONF, ConfigDef.Type.INT, CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_TIMEOUT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_ACCOUNT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_DISABLE_SECURE_DATA_CHANNEL_DEFAULTS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_EXEC_PBSZ_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_EXEC_PROT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_KEY_STORE_PARAMETERS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_FTP_CLIENT_TRUST_STORE_PARAMETERS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_IMPLICIT_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_PASSWORD_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SECURITY_PROTOCOL_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_SSL_CONTEXT_PARAMETERS_DOC);
conf.define(CAMEL_SINK_FTPS_ENDPOINT_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_FTPS_ENDPOINT_USERNAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_ENDPOINT_USERNAME_DOC);
conf.define(CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_COMPONENT_LAZY_START_PRODUCER_DOC);
conf.define(CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_COMPONENT_BASIC_PROPERTY_BINDING_DOC);
conf.define(CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_FTPS_COMPONENT_USE_GLOBAL_SSL_CONTEXT_PARAMETERS_DOC);
return conf;
}
}