Uses of Interface
org.apache.camel.component.file.remote.RemoteFileOperations

Packages that use RemoteFileOperations
org.apache.camel.component.file.remote Defines the File transport for communicating with Remote Files and FTP 
 

Uses of RemoteFileOperations in org.apache.camel.component.file.remote
 

Classes in org.apache.camel.component.file.remote that implement RemoteFileOperations
 class FtpOperations
          FTP remote file operations
 class FtpsOperations
          FTP Secure (FTP over SSL/TLS) operations
 class SftpOperations
          SFTP remote file operations
 

Methods in org.apache.camel.component.file.remote that return RemoteFileOperations
 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.
 RemoteFileOperations<com.jcraft.jsch.ChannelSftp.LsEntry> SftpEndpoint.createRemoteFileOperations()
           
protected  RemoteFileOperations<T> RemoteFileProducer.getOperations()
           
protected  RemoteFileOperations<T> RemoteFileConsumer.getOperations()
           
 

Constructors in org.apache.camel.component.file.remote with parameters of type RemoteFileOperations
FtpConsumer(RemoteFileEndpoint<org.apache.commons.net.ftp.FTPFile> endpoint, org.apache.camel.Processor processor, RemoteFileOperations<org.apache.commons.net.ftp.FTPFile> fileOperations)
           
RemoteFileConsumer(RemoteFileEndpoint<T> endpoint, org.apache.camel.Processor processor, RemoteFileOperations<T> operations)
           
RemoteFileProducer(RemoteFileEndpoint<T> endpoint, RemoteFileOperations<T> operations)
           
SftpConsumer(RemoteFileEndpoint<com.jcraft.jsch.ChannelSftp.LsEntry> endpoint, org.apache.camel.Processor processor, RemoteFileOperations<com.jcraft.jsch.ChannelSftp.LsEntry> operations)
           
 



Apache Camel