Revision 104,
463 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 | |
---|
4 | /** |
---|
5 | * |
---|
6 | * @author Marcin Krystek |
---|
7 | * |
---|
8 | */ |
---|
9 | public class StartTaskExecutionEvent extends SchedulingEvent { |
---|
10 | |
---|
11 | protected String jobId; |
---|
12 | protected String taskId; |
---|
13 | |
---|
14 | public StartTaskExecutionEvent(String jobId, String taskId) { |
---|
15 | super(SchedulingEventType.START_TASK_EXECUTION); |
---|
16 | this.jobId = jobId; |
---|
17 | this.taskId = taskId; |
---|
18 | } |
---|
19 | |
---|
20 | public String getJobId() { |
---|
21 | return jobId; |
---|
22 | } |
---|
23 | |
---|
24 | public String getTaskId() { |
---|
25 | return taskId; |
---|
26 | } |
---|
27 | |
---|
28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.