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