Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions api/src/org/labkey/api/workflow/Job.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public abstract class Job extends CreatedModified implements Identifiable
protected Integer _assignee;
protected List<Integer> _notifyList;
protected boolean _isTemplate;
protected boolean _isArchived;
protected Job _template;
protected Integer _jobCount; // only applies to templates
protected Integer _domainId;
Expand Down Expand Up @@ -254,6 +255,16 @@ public void setIsTemplate(boolean template)
_isTemplate = template;
}

public boolean getIsArchived()
{
return _isArchived;
}

public void setIsArchived(boolean archived)
{
_isArchived = archived;
}

public Integer getJobCount()
{
return _jobCount;
Expand Down