| |
|
| java.lang.Object org.griphyn.cPlanner.classes.Data org.griphyn.cPlanner.classes.SubInfo org.griphyn.cPlanner.classes.TransferJob
TransferJob | public class TransferJob extends SubInfo (Code) | | This is a data class that stores the contents of the transfer job that
transfers the data. Later on stdin etc, would be stored in it.
author: Karan Vahi vahi@isi.edu author: Gaurang Mehta gmehta@isi.edu version: $Revision: 50 $ |
Constructor Summary | |
public | TransferJob() The default constructor. | public | TransferJob(SubInfo job) The overloaded construct that constructs a GRMS job by wrapping around
the SubInfo job. |
TransferJob | public TransferJob()(Code) | | The default constructor.
|
TransferJob | public TransferJob(SubInfo job)(Code) | | The overloaded construct that constructs a GRMS job by wrapping around
the SubInfo job.
Parameters: job - the original job description. |
clone | public Object clone()(Code) | | Returns a new copy of the Object. The implementation is faulty.
There is a shallow copy for the profiles. That is the clone retains
references to the original object.
Object |
getNonThirdPartySite | public String getNonThirdPartySite()(Code) | | Returns the site at which the job would have run if the transfer job was
being run in non third party mode. If the job is run in a non third party
mode, the result should be the same as the site where the transfer job
has been scheduled.
the site at which the job would have run in a non third party mode,null if not set. |
setNonThirdPartySite | public void setNonThirdPartySite(String site)(Code) | | Sets the non third party site for the transfer job. This is the site
at which the job would have run if the transfer job was being run in
non third party mode.
Parameters: site - the name of the site |
toString | public String toString()(Code) | | Returns a textual description of the Transfer Job.
the textual description. |
|
|
|