Class 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 abstract JobInput 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
    • Constructor Summary

      Constructors 
      Constructor Description
      JobInput()
      The constructor.
      JobInput​(java.lang.String path)
      The constructor.
    • 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()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • JobInput

        public JobInput()
        The constructor.
      • JobInput

        public JobInput​(java.lang.String path)
        The constructor.
        Parameters:
        path - The path to the file or folder to transfer when submitting a published job. The path is assigned to a variable that is available to job programs.
    • 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 class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object