java.lang.Object
net.datenwerke.scheduler.service.scheduler.entities.history.ExecutionLogEntry
All Implemented Interfaces:
Comparable<ExecutionLogEntry>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@GenerateDto(dtoPackage="net.datenwerke.scheduler.client.scheduler.dto.history") public class ExecutionLogEntry extends Object implements Comparable<ExecutionLogEntry>
  • Constructor Details

    • ExecutionLogEntry

      public ExecutionLogEntry()
  • Method Details

    • getVersion

      public Long getVersion()
    • setVersion

      public void setVersion(Long version)
    • getId

      public Long getId()
    • setId

      public void setId(Long id)
    • setEnd

      public void setEnd(Date end)
    • getEnd

      public Date getEnd()
    • setStart

      public void setStart(Date start)
    • getStart

      public Date getStart()
    • setOutcome

      public void setOutcome(Outcome outcome)
    • getOutcome

      public Outcome getOutcome()
    • getJobEntry

      public JobEntry getJobEntry()
    • setJobEntry

      public void setJobEntry(JobEntry jobEntry)
    • getActionEntries

      public List<ActionEntry> getActionEntries()
    • setActionEntries

      public void setActionEntries(List<ActionEntry> actionEntries)
    • addActionEntry

      public void addActionEntry(ActionEntry actionEntry)
    • getVetoExplanation

      public String getVetoExplanation()
    • setVetoExplanation

      public void setVetoExplanation(String vetoExplanation)
    • getVetoMode

      public VetoJobExecutionMode getVetoMode()
    • setVetoMode

      public void setVetoMode(VetoJobExecutionMode vetoMode)
    • setBadErrorDescription

      public void setBadErrorDescription(String badErrorDescription)
    • getBadErrorDescription

      public String getBadErrorDescription()
    • setScheduledStart

      public void setScheduledStart(Date scheduledStart)
    • getScheduledStart

      public Date getScheduledStart()
    • compareTo

      public int compareTo(ExecutionLogEntry b)
      Specified by:
      compareTo in interface Comparable<ExecutionLogEntry>