|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of Progress in com.glub.secureftp.bean |
|---|
| Methods in com.glub.secureftp.bean with parameters of type Progress | |
|---|---|
void |
FTP.append(java.io.File file,
RemoteFile appendTo,
Progress progress)
Append to a file on the FTP server with progress information. |
void |
FTP.append(java.io.File file,
RemoteFile appendTo,
Progress progress,
FTPAbortableTransfer abort)
Append to a file on the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.append(java.io.File file,
java.lang.String appendTo,
Progress progress)
Append to a file on the FTP server with progress information. |
void |
FTP.append(java.io.File file,
java.lang.String appendTo,
Progress progress,
FTPAbortableTransfer abort)
Append to a file on the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.append(java.io.InputStream inputStream,
long localFileSize,
RemoteFile appendTo,
Progress progress)
Append to a file on the FTP server with progress information. |
void |
FTP.append(java.io.InputStream inputStream,
long localFileSize,
RemoteFile appendTo,
Progress progress,
FTPAbortableTransfer abort)
Append to a file on the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.append(java.io.InputStream inputStream,
long localFileSize,
java.lang.String appendTo,
Progress progress)
Append to a file on the FTP server with progress information. |
void |
FTP.append(java.io.InputStream inputStream,
long localFileSize,
java.lang.String appendTo,
Progress progress,
FTPAbortableTransfer abort)
Append to a file on the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.retrieve(RemoteFile remoteFile,
java.io.File outputFile,
boolean restartXfer,
Progress progress)
Retrieve a file from the FTP server with progress information. |
void |
FTP.retrieve(RemoteFile remoteFile,
java.io.File outputFile,
boolean restartXfer,
Progress progress,
FTPAbortableTransfer abort)
Retrieve a file from the FTP server with progress information and the ability to abort the transfer. |
void |
FTP.retrieve(RemoteFile remoteFile,
java.io.OutputStream outputStream,
Progress progress)
Retrieve a file from the FTP server with progress information. |
void |
FTP.retrieve(RemoteFile remoteFile,
java.io.OutputStream outputStream,
Progress progress,
FTPAbortableTransfer abort)
Retrieve a file from the FTP server with progress information and the ability to abort the transfer. |
void |
FTP.retrieve(java.lang.String remoteFile,
java.io.File outputFile,
boolean restartXfer,
Progress progress)
Retrieve a file from the FTP server with progress information. |
void |
FTP.retrieve(java.lang.String remoteFile,
java.io.File outputFile,
boolean restartXfer,
Progress progress,
FTPAbortableTransfer abort)
Retrieve a file from the FTP server with progress information and the ability to abort the transfer. |
void |
FTP.retrieve(java.lang.String remoteFile,
java.io.OutputStream outputStream,
Progress progress)
Retrieve a file from the FTP server with progress information. |
void |
FTP.retrieve(java.lang.String remoteFile,
java.io.OutputStream outputStream,
Progress progress,
FTPAbortableTransfer abort)
Retrieve a file from the FTP server with progress information and the ability to abort the transfer. |
void |
FTP.store(java.io.File file,
boolean restartXfer,
Progress progress)
Store a file to the FTP server with progress information. |
void |
FTP.store(java.io.File file,
boolean restartXfer,
Progress progress,
FTPAbortableTransfer abort)
Store a file to the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.store(java.io.File file,
java.lang.String name,
boolean restartXfer,
Progress progress)
Store a file to the FTP server with a specific filename and with progress information. |
void |
FTP.store(java.io.File file,
java.lang.String name,
boolean restartXfer,
Progress progress,
FTPAbortableTransfer abort)
Store a file to the FTP server with a specific filename and progress information and the ability to abort the data transfer. |
void |
FTP.store(java.io.InputStream inputStream,
long localFileSize,
Progress progress)
Store a file to the FTP server with progress information. |
void |
FTP.store(java.io.InputStream inputStream,
long localFileSize,
Progress progress,
FTPAbortableTransfer abort)
Store a file to the FTP server with progress information and the ability to abort the data transfer. |
void |
FTP.store(java.io.InputStream inputStream,
long localFileSize,
java.lang.String name,
Progress progress)
Store a file to the FTP server with a specific filename and with progress information. |
void |
FTP.store(java.io.InputStream inputStream,
long localFileSize,
java.lang.String name,
Progress progress,
FTPAbortableTransfer abort)
Store a file to the FTP server with a specific filename and progress information and the ability to abort the data transfer. |
| Constructors in com.glub.secureftp.bean with parameters of type Progress | |
|---|---|
FTPRead(java.net.ServerSocket ss,
java.io.OutputStream os,
Progress p,
long start,
long stop)
Create a new FTPRead object to be used to retrieve binary
data with progress information actively. |
|
FTPRead(java.net.ServerSocket ss,
java.io.PrintWriter w,
Progress p,
long start,
long stop)
Create a new FTPRead object to be used to retrieve ascii
data with progress information actively. |
|
FTPRead(java.net.ServerSocket ss,
java.io.PrintWriter w,
Progress p,
long start,
long stop,
java.lang.String e)
Create a new FTPRead object to be used to retrieve ascii
data with progress information actively. |
|
FTPRead(java.net.Socket s,
java.io.OutputStream os,
Progress p,
long start,
long stop)
Create a new FTPRead object to be used to retrieve binary
data with progress information passively. |
|
FTPRead(java.net.Socket s,
java.io.PrintWriter w,
Progress p,
long start,
long stop)
Create a new FTPRead object to be used to retrieve ascii
data with progress information passively. |
|
FTPRead(java.net.Socket s,
java.io.PrintWriter w,
Progress p,
long start,
long stop,
java.lang.String e)
Create a new FTPRead object to be used to retrieve ascii
data with progress information passively. |
|
FTPWrite(java.net.ServerSocket ss,
java.io.BufferedReader r,
Progress p,
long start,
long stop)
Create a new FTPWrite object to be used to send ascii
data with progress information actively. |
|
FTPWrite(java.net.ServerSocket ss,
java.io.BufferedReader r,
Progress p,
long start,
long stop,
java.lang.String e)
Create a new FTPWrite object to be used to send ascii
data with progress information actively. |
|
FTPWrite(java.net.ServerSocket ss,
java.io.InputStream is,
Progress p,
long start,
long stop)
Create a new FTPWrite object to be used to send binary
data with progress information actively. |
|
FTPWrite(java.net.Socket s,
java.io.BufferedReader r,
Progress p,
long start,
long stop)
Create a new FTPWrite object to be used to send ascii
data with progress information passively. |
|
FTPWrite(java.net.Socket s,
java.io.BufferedReader r,
Progress p,
long start,
long stop,
java.lang.String e)
Create a new FTPWrite object to be used to send ascii
data with progress information passively. |
|
FTPWrite(java.net.Socket s,
java.io.InputStream is,
Progress p,
long start,
long stop)
Create a new FTPWrite object to be used to send binary
data with progress information passively. |
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||