| |
|
| java.lang.Object org.griphyn.cPlanner.classes.Data org.griphyn.cPlanner.classes.SubInfo org.griphyn.cPlanner.classes.GRMSJob
GRMSJob | public class GRMSJob extends SubInfo (Code) | | This extends the job description used in Pegasus to incorporate the input and
the output url's that are required to pull in the input and push out the
output files. In VDS terms each of these job is a VDS super node without the
registration job.
author: Karan Vahi version: $Revision: 50 $ |
Constructor Summary | |
public | GRMSJob() | public | GRMSJob(SubInfo job) The overloaded construct that constructs a GRMS job by wrapping around
the SubInfo job. |
Method Summary | |
public boolean | addURL(String lfn, String url, char type) Adds a url of the job. | public Object | clone() Returns a new copy of the Object. | public Iterator | iterator(char type) It returns an iterator to the underlying associated collection. | public String | toString() Returns a textual description of the GRMS job. |
GRMSJob | public GRMSJob()(Code) | | The default constructor
|
GRMSJob | public GRMSJob(SubInfo job)(Code) | | The overloaded construct that constructs a GRMS job by wrapping around
the SubInfo job.
Parameters: job - the original job description. |
addURL | public boolean addURL(String lfn, String url, char type)(Code) | | Adds a url of the job. The url can be either input or output.
Parameters: lfn - the lfn associated with the url. Parameters: url - the url. Parameters: type - i means inputo means output boolean true the url was successfully added.false the type of the url was wrong. |
clone | public Object clone()(Code) | | Returns a new copy of the Object. However the url list are copied by
reference. It is not a true copy.
|
iterator | public Iterator iterator(char type)(Code) | | It returns an iterator to the underlying associated collection.
The iterator returns objects of type NameValue .
Parameters: type - i input urlso output urls the iterator to corresponding collection.null if invalid type. |
toString | public String toString()(Code) | | Returns a textual description of the GRMS job.
|
|
|
|