source: DCWoRMS/trunk/src/schedframe/events/scheduling/StartTaskExecutionEvent.java @ 477

Revision 477, 463 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.events.scheduling;
2
3
4/**
5 *
6 * @author Marcin Krystek
7 *
8 */
9public 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.