java.lang.Object
com.atlassian.confluence.impl.backgroundjob.domain.BackgroundJob
All Implemented Interfaces:
Serializable

public class BackgroundJob extends Object implements Serializable
Contains information about active background jobs. When the job is done, it is converted to ArchivedBackgroundJob and moved to another table.
Since:
8.1.0
See Also:
  • Constructor Details

    • BackgroundJob

      public BackgroundJob()
  • Method Details

    • getId

      public Long getId()
    • setId

      public void setId(Long id)
    • getType

      public String getType()
    • setType

      public void setType(String type)
    • getParameters

      public String getParameters()
    • setParameters

      public void setParameters(String parameters)
    • getIterationNumber

      public int getIterationNumber()
    • setIterationNumber

      public void setIterationNumber(int iterationNumber)
    • getNumberOfFailures

      public int getNumberOfFailures()
    • setNumberOfFailures

      public void setNumberOfFailures(int numberOfFailures)
    • getCreationTime

      public Instant getCreationTime()
    • setCreationTime

      public void setCreationTime(Instant creationTime)
    • getLastTouchTime

      public Instant getLastTouchTime()
    • setLastTouchTime

      public void setLastTouchTime(Instant lastTouchTime)
    • getRunAt

      public Instant getRunAt()
    • setRunAt

      public void setRunAt(Instant runAt)
    • getDuration

      public long getDuration()
    • setDuration

      public void setDuration(long duration)
    • getDescription

      public String getDescription()
    • setDescription

      public void setDescription(String description)
    • getOwner

      public String getOwner()
    • setOwner

      public void setOwner(String owner)