View Javadoc

1   package net.sf.appstatus.core.batch;
2   
3   import java.util.Date;
4   
5   public interface IBatchConfiguration {
6   
7   	/**
8   	 * @return the group
9   	 */
10  	public String getGroup();
11  
12  	/**
13  	 * @return the lastExecution
14  	 */
15  	public Date getLastExecution();
16  
17  	/**
18  	 * @return the name
19  	 */
20  	public String getName();
21  
22  	/**
23  	 * @return the nextExecution
24  	 */
25  	public Date getNextExecution();
26  
27  	/**
28  	 * @return the schedule
29  	 */
30  	public String getSchedule();
31  
32  	/**
33  	 * @param nextExecution
34  	 *            the nextExecution to set
35  	 */
36  	public void setLastExecution(Date startDate);
37  }