Project

General

Profile

« Previous | Next » 

Revision 5012

Added by daigle almost 15 years ago

Added end time to workflow scheduler.

View differences:

ScheduledJobDAO.java
45 45
	private String _groupName;
46 46
	private String _className;
47 47
	private Timestamp _startTime;
48
	private Timestamp _endTime;
48 49
	private int _intervalValue;
49 50
	private String _intervalUnit;
50 51
	private HashMap<String, ScheduledJobParamDAO> _jobParams = new HashMap<String, ScheduledJobParamDAO>();
......
99 100
		_startTime = startTime;
100 101
	}
101 102
	
103
	// get the end time
104
	public Timestamp getEndTime() {
105
		return _endTime;
106
	}
107
	
108
	// set the end time
109
	public void setEndTime(Timestamp endTime) {
110
		_endTime = endTime;
111
	}
112
	
102 113
	// get the interval value
103 114
	public int getIntervalValue() {
104 115
		return _intervalValue;

Also available in: Unified diff