All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.globus.ftp.MultipleTransferComplete Maven / Gradle / Ivy

Go to download

GridFTP is a high-performance, secure, reliable data transfer protocol optimized for high-bandwidth wide-area networks. The GridFTP protocol is based on FTP, the highly-popular Internet file transfer protocol. We have selected a set of protocol features and extensions defined already in IETF RFCs and added a few additional features to meet requirements from current data grid projects. This GRIDFTP libary and client is based on JAVA.

The newest version!
package org.globus.ftp;


public 
class
MultipleTransferComplete
{
    public String                       remoteSrcFile;
    public String                       remoteDstFile;
    public GridFTPClient                source;
    public GridFTPClient                destination;
    public int                          index;

    public
    MultipleTransferComplete(
        String                       remoteSrcFile,
        String                       remoteDstFile,
        GridFTPClient                source,
        GridFTPClient                destination,
        int                          index)
    {
        this.remoteSrcFile = remoteSrcFile;
        this.remoteDstFile = remoteDstFile;
        this.source = source;
        this.destination = destination;
        this.index = index;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy