Revision 139,
546 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 | public class TaskFinishedEvent extends SchedulingEvent { |
---|
5 | |
---|
6 | //protected List<String> epr; |
---|
7 | |
---|
8 | protected String jobId; |
---|
9 | protected String taskId; |
---|
10 | |
---|
11 | public TaskFinishedEvent(/*List<String> list*/ String jobId, String taskId){ |
---|
12 | super(SchedulingEventType.TASK_FINISHED); |
---|
13 | //this.epr = list; |
---|
14 | this.jobId = jobId; |
---|
15 | this.taskId = taskId; |
---|
16 | } |
---|
17 | |
---|
18 | /*public List<String> getReservations(){ |
---|
19 | return this.epr; |
---|
20 | }*/ |
---|
21 | |
---|
22 | public String getJobId() { |
---|
23 | return jobId; |
---|
24 | } |
---|
25 | |
---|
26 | public String getTaskId() { |
---|
27 | return taskId; |
---|
28 | } |
---|
29 | |
---|
30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.