| org.griphyn.vdl.dbschema.WF
All known Subclasses: org.griphyn.vdl.dbschema.WorkflowSchema,
WF | public interface WF extends Catalog(Code) | | This common schema interface defines the schemas in which the
abstraction layers access the WF database. This layer is independent
of the implementing database, and does so by going via the database
driver class API.
author: Jens-S. Vöckler author: Mike Wilde version: $Revision: 50 $ See Also: org.griphyn.vdl.dbschema.DatabaseSchema See Also: org.griphyn.vdl.dbdriver See Also: |
Field Summary | |
final public static String | PROPERTY_PREFIX Names the property key prefix employed for schemas dealing with the VDC. |
PROPERTY_PREFIX | final public static String PROPERTY_PREFIX(Code) | | Names the property key prefix employed for schemas dealing with the VDC.
|
getWorkflow | abstract public WorkEntry getWorkflow(String basedir, String vogroup, String label, String run) throws SQLException(Code) | | Determines the primary key of a workflow from the provided tuple
of secondary keys, and instantiates the corresponding workflow.
Parameters: basedir - is the base directory Parameters: vogroup - is the VO group identifier Parameters: label - is the workflow label Parameters: run - is the workflow run directory the workflow identifier, or -1 if not found. |
getWorkflows | abstract public java.util.Map getWorkflows(java.util.Date mtime) throws SQLException(Code) | | Returns a set of all workflows that are younger than a cut-off time.
The result may be empty, if no matching workflows exist yet.
Parameters: mtime - is the oldest permissable last modification time a map of workflows, indexed by their primary key |
|
|