Revision 104,
456 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling.events; |
---|
2 | |
---|
3 | public class TaskRequestedTimeExpiredEvent extends SchedulingEvent{ |
---|
4 | protected String jobId; |
---|
5 | protected String taskId; |
---|
6 | |
---|
7 | public TaskRequestedTimeExpiredEvent(String jobId, String taskId) { |
---|
8 | super(SchedulingEventType.TASK_REQUESTED_TIME_EXPIRED); |
---|
9 | this.jobId = jobId; |
---|
10 | this.taskId = taskId; |
---|
11 | } |
---|
12 | |
---|
13 | public String getJobId() { |
---|
14 | return jobId; |
---|
15 | } |
---|
16 | |
---|
17 | public String getTaskId() { |
---|
18 | return taskId; |
---|
19 | } |
---|
20 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.