Class Job

java.lang.Object
com.soffid.iam.bpm.api.Job
All Implemented Interfaces:
Serializable

public class Job extends Object implements Serializable
ValueObject Job
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Job()
     
    Job(Job otherBean)
     
    Job(String name, long id, Date dueDate, boolean locked, String errorMessage, boolean error, int failures, boolean paused, long processId)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets value for attribute dueDate
    Gets value for attribute errorMessage
    int
    Gets value for attribute failures
    long
    Gets value for attribute id
    Gets value for attribute name
    long
    Gets value for attribute processId
    boolean
    Gets value for attribute error
    boolean
    Gets value for attribute locked
    boolean
    Gets value for attribute paused
    void
    setDueDate(Date dueDate)
    Sets value for attribute dueDate
    void
    setError(boolean error)
    Sets value for attribute error
    void
    setErrorMessage(String errorMessage)
    Sets value for attribute errorMessage
    void
    setFailures(int failures)
    Sets value for attribute failures
    void
    setId(long id)
    Sets value for attribute id
    void
    setLocked(boolean locked)
    Sets value for attribute locked
    void
    Sets value for attribute name
    void
    setPaused(boolean paused)
    Sets value for attribute paused
    void
    setProcessId(long processId)
    Sets value for attribute processId
    Returns a string representation of the value object.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Job

      public Job()
    • Job

      public Job(String name, long id, Date dueDate, boolean locked, String errorMessage, boolean error, int failures, boolean paused, long processId)
    • Job

      public Job(Job otherBean)
  • Method Details

    • getName

      public String getName()
      Gets value for attribute name
    • setName

      public void setName(String name)
      Sets value for attribute name
    • getId

      public long getId()
      Gets value for attribute id
    • setId

      public void setId(long id)
      Sets value for attribute id
    • getDueDate

      public Date getDueDate()
      Gets value for attribute dueDate
    • setDueDate

      public void setDueDate(Date dueDate)
      Sets value for attribute dueDate
    • isLocked

      public boolean isLocked()
      Gets value for attribute locked
    • setLocked

      public void setLocked(boolean locked)
      Sets value for attribute locked
    • getErrorMessage

      public String getErrorMessage()
      Gets value for attribute errorMessage
    • setErrorMessage

      public void setErrorMessage(String errorMessage)
      Sets value for attribute errorMessage
    • isError

      public boolean isError()
      Gets value for attribute error
    • setError

      public void setError(boolean error)
      Sets value for attribute error
    • getFailures

      public int getFailures()
      Gets value for attribute failures
    • setFailures

      public void setFailures(int failures)
      Sets value for attribute failures
    • isPaused

      public boolean isPaused()
      Gets value for attribute paused
    • setPaused

      public void setPaused(boolean paused)
      Sets value for attribute paused
    • getProcessId

      public long getProcessId()
      Gets value for attribute processId
    • setProcessId

      public void setProcessId(long processId)
      Sets value for attribute processId
    • toString

      public String toString()
      Returns a string representation of the value object.
      Overrides:
      toString in class Object