org.globus.cog.abstraction.interfaces
Interface Specification

All Known Subinterfaces:
FileOperationSpecification, FileTransferSpecification, JobSpecification
All Known Implementing Classes:
FileOperationSpecificationImpl, FileTransferSpecificationImpl, JobSpecificationImpl, SpecificationImpl

public interface Specification

Every Grid Task has an associated Specification that dictates the objective of the task and the environment required to achieve the objective. The TaskHandlermanages the tasks based on the parameters specified in the specification. The interpretation of the parameters in the specification is handler specific.


Field Summary
static int FILE_OPERATION
           
static int FILE_TRANSFER
           
static int JOB_SUBMISSION
           
 
Method Summary
 String getSpecification()
           
 int getType()
           
 void setSpecification(String specification)
           
 void setType(int type)
           
 

Field Detail

JOB_SUBMISSION

public static final int JOB_SUBMISSION
See Also:
Constant Field Values

FILE_TRANSFER

public static final int FILE_TRANSFER
See Also:
Constant Field Values

FILE_OPERATION

public static final int FILE_OPERATION
See Also:
Constant Field Values
Method Detail

setType

public void setType(int type)

getType

public int getType()

setSpecification

public void setSpecification(String specification)

getSpecification

public String getSpecification()