Package com.sas.lsaf.execution.job
Class JobInput
- java.lang.Object
-
- com.sas.lsaf.execution.job.JobInput
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
JobInputFile
,JobInputFolder
public abstract class JobInput extends java.lang.Object implements java.io.Serializable
The abstractJobInput
class that represents the file or folder to transfer when submitting a published job. The path is assigned to a variable that is available to job programs.- Since:
- 2.4
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getPath()
Gets the path to the file or folder to transfer when submitting a published job.int
hashCode()
void
setPath(java.lang.String path)
Sets the path to the file or folder to transfer when submitting a published job.java.lang.String
toString()
-
-
-
Method Detail
-
getPath
public java.lang.String getPath()
Gets the path to the file or folder to transfer when submitting a published job. The path is assigned to a variable that is made available to job programs.- Returns:
- The path to the file or folder to transfer when submitting a published job.
-
setPath
public void setPath(java.lang.String path)
Sets the path to the file or folder to transfer when submitting a published job.- Parameters:
path
- The path to the file or folder to transfer when submitting a published job.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-