KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > essiembre > library > scheduler > SchedulerTasks


1 /*
2  * Copyright (C) 2003, 2004 Pascal Essiembre, Essiembre Consultant Inc.
3  *
4  * This file is part of Essiembre Scheduler.
5  *
6  * Essiembre Scheduler is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Essiembre Scheduler is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Essiembre Scheduler; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307 USA
20  */

21 package com.essiembre.library.scheduler;
22
23
24 import java.util.Vector JavaDoc;
25
26 /**
27  * This class contains all <code>SchedulerTask</code> instances that a
28  * <code>SchedulerServlet</code> should run.
29  * @author Pascal Essiembre
30  * @version $Id: SchedulerTasks.java,v 1.1 2004/04/07 18:39:48 essiembre Exp $
31  */

32 public class SchedulerTasks {
33
34     /** All tasks to execute */
35     private Vector JavaDoc tasksList;
36
37     /**
38      * Gets the tasksList
39      * @return Returns a Vector
40      */

41     public Vector JavaDoc getTasksList() {
42         return tasksList;
43     }
44
45     /**
46      * Sets the tasksList
47      * @param tasksList The tasksList to set
48      */

49     public void setTasksList(Vector JavaDoc tasksList) {
50         this.tasksList = tasksList;
51     }
52
53 }
Popular Tags