Interface IOutgoingFileTransferResponseEvent
- 
- All Superinterfaces:
- Event,- IFileTransferEvent,- IOutgoingFileTransferEvent
 
 public interface IOutgoingFileTransferResponseEvent extends IOutgoingFileTransferEvent Asynchronous event sent toIFileTransferListenerassociated withIOutgoingFileTransferinstances when a response is received from the remote target (or provider times out).
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanrequestAccepted()If request was accepted from remote target this method will return true, if rejected or failed returns false.voidsetFileTransferJob(FileTransferJob job)Set theFileTransferJobto use for the actual file transfer.- 
Methods inherited from interface org.eclipse.ecf.filetransfer.events.IOutgoingFileTransferEventgetSource
 
- 
 
- 
- 
- 
Method Detail- 
requestAcceptedboolean requestAccepted() If request was accepted from remote target this method will return true, if rejected or failed returns false.- Returns:
- true if request was accepted, false if rejected or failed
 
 - 
setFileTransferJobvoid setFileTransferJob(FileTransferJob job) Set theFileTransferJobto use for the actual file transfer. This method only has effect if therequestAccepted()returnstrue.- Parameters:
- job- the job to use. If- null, or this method is not called, then a default FileTransferJob is used. NOTE: the given job should *not* be scheduled/started prior to being provided as a parameter to this method.
 
 
- 
 
-