Package | Description |
---|---|
org.apache.camel.component.file.remote |
Defines the File transport for communicating with Remote Files and FTP
|
Modifier and Type | Class and Description |
---|---|
class |
FtpOperations
FTP remote file operations
|
class |
FtpsOperations
FTP Secure (FTP over SSL/TLS) operations
|
class |
SftpOperations
SFTP remote file operations
The JSCH session and channel are not thread-safe so we need to synchronize
access to using this operation.
|
Modifier and Type | Method and Description |
---|---|
RemoteFileOperations<SftpRemoteFile> |
SftpEndpoint.createRemoteFileOperations() |
RemoteFileOperations<org.apache.commons.net.ftp.FTPFile> |
FtpsEndpoint.createRemoteFileOperations() |
RemoteFileOperations<org.apache.commons.net.ftp.FTPFile> |
FtpEndpoint.createRemoteFileOperations() |
abstract RemoteFileOperations<T> |
RemoteFileEndpoint.createRemoteFileOperations()
Creates the operations to be used by the consumer or producer.
|
protected RemoteFileOperations<T> |
RemoteFileConsumer.getOperations() |
protected RemoteFileOperations<T> |
RemoteFileProducer.getOperations() |
Constructor and Description |
---|
FtpConsumer(RemoteFileEndpoint<org.apache.commons.net.ftp.FTPFile> endpoint,
org.apache.camel.Processor processor,
RemoteFileOperations<org.apache.commons.net.ftp.FTPFile> fileOperations,
org.apache.camel.component.file.GenericFileProcessStrategy processStrategy) |
RemoteFileConsumer(RemoteFileEndpoint<T> endpoint,
org.apache.camel.Processor processor,
RemoteFileOperations<T> operations,
org.apache.camel.component.file.GenericFileProcessStrategy processStrategy) |
RemoteFileProducer(RemoteFileEndpoint<T> endpoint,
RemoteFileOperations<T> operations) |
SftpConsumer(RemoteFileEndpoint<SftpRemoteFile> endpoint,
org.apache.camel.Processor processor,
RemoteFileOperations<SftpRemoteFile> operations,
org.apache.camel.component.file.GenericFileProcessStrategy<SftpRemoteFile> processStrategy) |
Apache Camel