- AbstractJob - Class in edu.isi.pegasus.planner.dax
-
- AbstractJob() - Constructor for class edu.isi.pegasus.planner.dax.AbstractJob
-
- AbstractJob(AbstractJob) - Constructor for class edu.isi.pegasus.planner.dax.AbstractJob
-
Copy constructor
- ADAG - Class in edu.isi.pegasus.planner.dax
-
- ADAG(String) - Constructor for class edu.isi.pegasus.planner.dax.ADAG
-
The Simple constructor for the DAX object
- ADAG(String, int, int) - Constructor for class edu.isi.pegasus.planner.dax.ADAG
-
DAX Constructor
- addAbstractJob(AbstractJob) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add AbstractJob to the DAX
- addAbstractJobs(List<AbstractJob>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add AbstractJobs to the DAX
- addArgument(String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a string argument to the argument List.
- addArgument(File) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a file object to the argument List.
- addArgument(File[]) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a Array of
File
objects to the argument list.
- addArgument(List<File>) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a List of
File
objects to the argument list.
- addArgument(File[], String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a Array of
File
objects to the argument list.
- addArgument(List<File>, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a List of
File
objects to the argument list.
- addArgument(String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and value to the argument List.
- addArgument(String, String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and value to the argument List.
The argkey and argvalue are seperated by argdelimiter.
Example addArgument("-p","0","=") will result in the argument being added as
-p=0
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, File) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and File value to the argument List.
The argkey and argvalue are seperated by space.
Example addArgument("-i",new File("f.a")) will result in the argument being added as
-i <file name="f.a">
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, File, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and File value to the argument List.
The argkey and argvalue are separated by the argdelimiter.
Example addArgument("-i",new File("f.a"),"=") will result in the argument being added as
-i=<file name="f.a">
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, File[]) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and an array of Files to the argument List.
The argkey and argvalue are separated space.
The files are separated by a space
Example:
File[] files = {new File("f.a1"), new File("f.a2")};
job.addArgument("-i",files)
will result in the argument being added as
-i <file name="f.a1"> <file name="f.a2">
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, List<File>) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and a List of Files to the argument List.
The argkey and argvalue are separated space.
The files are separated by a space
Example:
List files = new LinkedList();
files.add(new File("f.a1"));
files.add(new File("f.a2"));
job.addArgument("-i",files)
will result in the argument being added as
-i <file name="f.a1"> <file name="f.a2">
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, File[], String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and an array of Files to the argument List.
The argkey and argvalue are separated by the argdelimiter.
The files are separated by a filedelimiter
Example:
File[] files = {new File("f.a1"), new File("f.a2")};
job.addArgument("-i",files,"=",",")
will result in the argument being added as
-i=<file name="f.a1">,<file name="f.a2">
Multiple calls to addArgument results in the arguments being separated by space.
- addArgument(String, List<File>, String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a argument key and a List of Files to the argument List.
The argkey and argvalue are separated by the argdelimiter.
The files are separated by a filedelimter
Example:
List files = new LinkedList();
files.add(new File("f.a1"));
files.add(new File("f.a2"));
job.addArgument("-i",files,"=",",")
will result in the argument being added as
-i=<file name="f.a1">,<file name="f.a2">
Multiple calls to addArgument results in the arguments being separated by space.
- addDAG(DAG) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a DAG job to the DAX
- addDAGs(List<DAG>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add multiple DAG jobs to the DAX
- addDAX(DAX) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a DAX job to the DAX
- addDAXs(List<DAX>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add multiple DAX jobs to the DAX
- addDependency(String, String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a parent child dependency between two jobs,dax,dag
- addDependency(AbstractJob, AbstractJob) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a parent child dependency between two jobs,dax,dag
- addDependency(String, String, String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a parent child dependency with a dependency label
- addDependency(AbstractJob, AbstractJob, String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a parent child dependency with a dependency label
- addExecutable(Executable) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Executable to the DAX
- addExecutables(List<Executable>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Multiple Executable objects to the DAX
- addFile(File) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a RC File object to the top of the DAX.
- addFiles(List<File>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Files to the RC Section on top of the DAX
- addInvoke(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add Notification to the job
- addInvoke(Invoke) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add notification to the job
- addInvoke(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a Notification for this Workflow
- addInvoke(Invoke) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a Notification for this Workflow
- addInvoke(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a Notification for this Executable
same as addNotification
- addInvoke(Invoke) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a Notification for this Executable
Same as add Notification
- addInvoke(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Add a Notification for this Transformation
- addInvoke(Invoke) - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Add a Notification for this Transformation
- addInvokes(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add Notifications to the job
- addInvokes(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a List of Notifications for this Workflow
- addInvokes(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a List of Notifications for this Executable
Same as addNotifications
- addInvokes(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Add a List of Notifications for this Transformation
- addJob(Job) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Job to the DAX
- addJobs(List<Job>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add multiple Jobs to the DAX
- addMetaData(String, String, String) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a Metadata entry for the Catalog object
- addMetaData(MetaData) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a
MetaData
object for the Catalog object
- addMetaData(List<MetaData>) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a List of
MetaData
objects to the Catalog entry object
- addNotification(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add Notification to the job
- addNotification(Invoke) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add notification to the job
- addNotification(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a Notification for this Workflow
- addNotification(Invoke) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a Notification for this Workflow
- addNotification(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a Notification for this Executable
same as addInvoke
- addNotification(Invoke) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a Notification for this Executable
Same as addInvoke
- addNotification(Invoke.WHEN, String) - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Add a Notification for this Transformation same as addInvoke()
- addNotifications(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add Notifications to the job
- addNotifications(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add a List of Notifications for this Workflow
- addNotifications(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.Executable
-
Add a List of Notifications for this Executable.
- addNotifications(List<Invoke>) - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Add a List of Notifications for this Transformation.
- addPhysicalFile(String) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a pfn url to the Catalog
- addPhysicalFile(String, String) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a PFN url and a site id to the Catalog
- addPhysicalFile(PFN) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a PFN object to the Catalog
- addPhysicalFiles(List<PFN>) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a list of PFN objects to the Catalog
- addProfile(String, String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a profile to the job
- addProfile(Profile.NAMESPACE, String, String) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a profile to the job
- addProfile(Profile) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a Profile object
- addProfile(String, String, String) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a profile to the catalog entry
- addProfile(Profile.NAMESPACE, String, String) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a profile to the catalog entry
- addProfile(String, String, String) - Method in class edu.isi.pegasus.planner.dax.PFN
-
- addProfile(Profile.NAMESPACE, String, String) - Method in class edu.isi.pegasus.planner.dax.PFN
-
- addProfiles(List<Profile>) - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Add a list of Profile objects
- addProfiles(List<Profile>) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a List of profile objects to this Catalog entry
- addProfiles(Profile) - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Add a Profile object to this Catalog entry
- addProfiles(List<Profile>) - Method in class edu.isi.pegasus.planner.dax.PFN
-
- addProfiles(Profile) - Method in class edu.isi.pegasus.planner.dax.PFN
-
- addTransformation(Transformation) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Transformation to the DAX
- addTransformations(List<Transformation>) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Add Multiple Transformation to the DAX
- ARG_DELIMITER - Static variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- generate(String, String) - Method in class edu.isi.pegasus.planner.dax.examples.Diamond
-
- getAbstractJob(String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns an abstract Job with id ajobid if present otherwise null.
- getArchitecture() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the architecture the Executable is compiled for
- getArguments() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Return the argument List.
- getChild() - Method in class edu.isi.pegasus.planner.dax.Edge
-
- getCount() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns the total count of the dax collection.
- getDAG(String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a DAG object with id dagid if present otherwise null.
- getDAGs() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Get a list of all the DAG jobs.
- getDAX(String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a DAX object with id daxid if present otherwise null.
- getDAXs() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Get a list of all the DAX jobs.
- getEdges(String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a list of Edge objects for a child job/dax/dag id.
- getEdges() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a Set of all the Edge objects for the DAX.
- getExecutable() - Method in class edu.isi.pegasus.planner.dax.File
-
Check if the file is an executable
- getExecutables() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a set of Executable Objects stored as part of the inDAX
Transformation Catalog;
- getFiles() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a list of File objects defined as the inDax Replica Catalog
- getGlibc() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the Glibc version if any set for this file.
- getId() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getIndex() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
- getInstalled() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Check if the executable is of type installed.
- getInvoke() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Returns list of Invoke objects
- getInvoke() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a list of Invoke objects associated with the workflow
- getInvoke() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Return the list of Notification objects
- getInvoke() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Return the list of Notification objects
- getJob(String) - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a Job object with id jobid if present otherwise null.
- getJobs() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Get a list of all the DAG jobs.
- getKey() - Method in class edu.isi.pegasus.planner.dax.MetaData
-
Get the key of this metadata object
- getKey() - Method in class edu.isi.pegasus.planner.dax.Profile
-
Get the key of this Profile
- getLabel() - Method in class edu.isi.pegasus.planner.dax.Edge
-
- getLink() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the linkage of the file.
- getMetaData() - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Returns the List of MetaData objects associated with this Catalog entry object
- getName() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getName() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Return the name/label of the dax
- getName() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the name of the executable
- getName() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the name of the file
- getName() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Get the name of the transformation
- getNamespace() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the namespace of the executable
- getNamespace() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the namespace of the file
- getNamespace() - Method in class edu.isi.pegasus.planner.dax.Job
-
- getNameSpace() - Method in class edu.isi.pegasus.planner.dax.Profile
-
Get the namespace of this profile
- getNamespace() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Get the namespace of the transformation
- getNodeLabel() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getNotification() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Same as getInvoke().
- getNotification() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a list of Invoke objects associated with the workflow.
- getNotification() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Return the list of Notification objects (same as getInvoke)
- getNotification() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Return the list of Notification objects (same as getInvoke()
- getOptional() - Method in class edu.isi.pegasus.planner.dax.File
-
Check the optional flag of the file
- getOS() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the OS the Executable is compiled for
- getOsRelease() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the OS release set for this executable.
- getOsVersion() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the OS version set for this executable.
- getParent() - Method in class edu.isi.pegasus.planner.dax.Edge
-
- getPhysicalFiles() - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Returns a List of PFN objects associated with this Catalog entry
- getProfiles() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Return the profile List.
- getProfiles() - Method in class edu.isi.pegasus.planner.dax.CatalogType
-
Return the List of
Profile
objects associated with this Catalog entry
- getProfiles() - Method in class edu.isi.pegasus.planner.dax.PFN
-
- getRegister() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the register flag of this file.
- getSite() - Method in class edu.isi.pegasus.planner.dax.PFN
-
- getSize() - Method in class edu.isi.pegasus.planner.dax.File
-
Return the size of the file
- getStderr() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getStdin() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
Get the STDIN file object
- getStdout() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getTransfer() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the transfer type of the file
- getTransformations() - Method in class edu.isi.pegasus.planner.dax.ADAG
-
Returns a set of Transformation Objects (complex executables) stored in
the DAX based Transformation Catalog
- getType() - Method in class edu.isi.pegasus.planner.dax.MetaData
-
Get the type of the metdata object
- getURL() - Method in class edu.isi.pegasus.planner.dax.PFN
-
- getUses() - Method in class edu.isi.pegasus.planner.dax.AbstractJob
-
- getUses() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Get the List of files and/or executables being used by the transformation
- getValue() - Method in class edu.isi.pegasus.planner.dax.MetaData
-
Get the value of the metdata object
- getValue() - Method in class edu.isi.pegasus.planner.dax.Profile
-
Get the value of this profile
- getVersion() - Method in class edu.isi.pegasus.planner.dax.Executable
-
Get the version of the executable
- getVersion() - Method in class edu.isi.pegasus.planner.dax.File
-
Get the version of the file
- getVersion() - Method in class edu.isi.pegasus.planner.dax.Job
-
- getVersion() - Method in class edu.isi.pegasus.planner.dax.Transformation
-
Get the version of the transformation
- getWhat() - Method in class edu.isi.pegasus.planner.dax.Invoke
-
Get what to invoke
- getWhen() - Method in class edu.isi.pegasus.planner.dax.Invoke
-
Get when to Invoke
- main(String[]) - Static method in class edu.isi.pegasus.planner.dax.ADAG
-
Create an example DIAMOND DAX
- main(String[]) - Static method in class edu.isi.pegasus.planner.dax.examples.Diamond
-
Create an example DIAMOND DAX
- main(String[]) - Static method in class edu.isi.pegasus.planner.dax.examples.Pipeline
-
- mArch - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Architecture the executable is compiled for
- mArguments - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mChild - Variable in class edu.isi.pegasus.planner.dax.Edge
-
The parent of the child
- mCount - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The Count of the number of dax objects : N
- mDependencies - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
Map of Dependencies between Job,DAX,DAG objects.
- MetaData - Class in edu.isi.pegasus.planner.dax
-
Metadata object for the DAX API
- MetaData(MetaData) - Constructor for class edu.isi.pegasus.planner.dax.MetaData
-
Copy constructor
- MetaData(String, String) - Constructor for class edu.isi.pegasus.planner.dax.MetaData
-
Create a new Metadata object
- MetaData(String, String, String) - Constructor for class edu.isi.pegasus.planner.dax.MetaData
-
Create a new Metadata object
- mExecutable - Variable in class edu.isi.pegasus.planner.dax.File
-
Is the file an executable.
- mExecutables - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The list of Executable objects
- mFiles - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The list of edu.isi.pegasus.planner.dax.File objects
- mGlibc - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Glibc the executable is compiled for
- mId - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mIndex - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The Index of the dax object.
- mInstalled - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Flag to mark if the executable is installed or can be staged.
- mInvokes - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mInvokes - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
List of Notification objects
- mInvokes - Variable in class edu.isi.pegasus.planner.dax.Executable
-
List of Notification objects
- mInvokes - Variable in class edu.isi.pegasus.planner.dax.Transformation
-
- mJobs - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The List of Job,DAX and DAG objects
- mKey - Variable in class edu.isi.pegasus.planner.dax.MetaData
-
Metadata Key
- mKey - Variable in class edu.isi.pegasus.planner.dax.Profile
-
Key of the profile
- mLabel - Variable in class edu.isi.pegasus.planner.dax.Edge
-
The edge label for the parent child relationship.
- mLDAGs - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
- mLDAXs - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
- mLink - Variable in class edu.isi.pegasus.planner.dax.File
-
- mLJobs - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
- mLogger - Static variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mLogger - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
- mLogger - Variable in class edu.isi.pegasus.planner.dax.CatalogType
-
- mMetadata - Variable in class edu.isi.pegasus.planner.dax.CatalogType
-
- mName - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mName - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The Name / Label of the DAX
- mName - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Name of the executable
- mName - Variable in class edu.isi.pegasus.planner.dax.File
-
The logical name of the file.
- mName - Variable in class edu.isi.pegasus.planner.dax.Transformation
-
Name of the transformation
- mNamespace - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mNamespace - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Namespace of the executable
- mNamespace - Variable in class edu.isi.pegasus.planner.dax.File
-
The namespace on a file.
- mNamespace - Variable in class edu.isi.pegasus.planner.dax.Profile
-
Namespace of the profile
- mNamespace - Variable in class edu.isi.pegasus.planner.dax.Transformation
-
Namespace of the Transformation
- mNodeIdPattern - Static variable in class edu.isi.pegasus.planner.dax.Patterns
-
- mNodeLabel - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mOptional - Variable in class edu.isi.pegasus.planner.dax.File
-
Is the file optional
- mOs - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Os the executable is compiled for
- mOsRelease - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Os release the executable is compiled for
- mOsVersion - Variable in class edu.isi.pegasus.planner.dax.Executable
-
OS version the executable is compiled for
- mParent - Variable in class edu.isi.pegasus.planner.dax.Edge
-
The parent of the parent
- mPFNs - Variable in class edu.isi.pegasus.planner.dax.CatalogType
-
- mProfiles - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mProfiles - Variable in class edu.isi.pegasus.planner.dax.CatalogType
-
- mProfiles - Variable in class edu.isi.pegasus.planner.dax.PFN
-
- mRegister - Variable in class edu.isi.pegasus.planner.dax.File
-
Should the file be registered in the replica catalog
- mSite - Variable in class edu.isi.pegasus.planner.dax.PFN
-
- mSize - Variable in class edu.isi.pegasus.planner.dax.File
-
File size of the file no units required
- mStderr - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mStdin - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mStdout - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mTransfer - Variable in class edu.isi.pegasus.planner.dax.File
-
Should the file be transferred on generation.
- mTransformations - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
The List of Transformation objects
- mType - Variable in class edu.isi.pegasus.planner.dax.MetaData
-
Metadata type
- mURL - Variable in class edu.isi.pegasus.planner.dax.PFN
-
- mUses - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mUses - Variable in class edu.isi.pegasus.planner.dax.Transformation
-
List of executable of files used by the transformation
- mValue - Variable in class edu.isi.pegasus.planner.dax.MetaData
-
Metadata value
- mValue - Variable in class edu.isi.pegasus.planner.dax.Profile
-
Value of the profile
- mVersion - Variable in class edu.isi.pegasus.planner.dax.AbstractJob
-
- mVersion - Variable in class edu.isi.pegasus.planner.dax.Executable
-
Version of the executable
- mVersion - Variable in class edu.isi.pegasus.planner.dax.File
-
The logical version of the file.
- mVersion - Variable in class edu.isi.pegasus.planner.dax.Transformation
-
Version of the transformation
- mVersionPattern - Static variable in class edu.isi.pegasus.planner.dax.Patterns
-
- mWhat - Variable in class edu.isi.pegasus.planner.dax.Invoke
-
What to invoke
- mWhen - Variable in class edu.isi.pegasus.planner.dax.Invoke
-
WHen to Invoke
- mWriter - Variable in class edu.isi.pegasus.planner.dax.ADAG
-
Handle the XML writer
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.Executable.ARCH
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.Executable.OS
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.File.LINK
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.File.TRANSFER
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.Invoke.WHEN
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum edu.isi.pegasus.planner.dax.Profile.NAMESPACE
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum edu.isi.pegasus.planner.dax.Executable.ARCH
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum edu.isi.pegasus.planner.dax.Executable.OS
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum edu.isi.pegasus.planner.dax.File.LINK
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum edu.isi.pegasus.planner.dax.File.TRANSFER
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum edu.isi.pegasus.planner.dax.Invoke.WHEN
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum edu.isi.pegasus.planner.dax.Profile.NAMESPACE
-
Returns an array containing the constants of this enum type, in
the order they are declared.