com.pmease.quickbuild.schedule
Class CronScheduleFacade
java.lang.Object
com.pmease.quickbuild.schedule.CronScheduleFacade
- All Implemented Interfaces:
- java.io.Serializable
- public class CronScheduleFacade
- extends java.lang.Object
- implements java.io.Serializable
Facade class for CronSchedule.
A unix cron-like schedule.
- See Also:
- Serialized Form
Method Summary |
java.lang.String |
getExpression()
OGNL: Cron expression for this schedule, the format is <seconds> <minutes> <hours> <day-of-month> <month> <day-of-week>. |
boolean |
isPaused()
Specify whether this schedule should be paused or not. |
void |
setExpression(java.lang.String expression)
|
void |
setPaused(boolean paused)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CronScheduleFacade
public CronScheduleFacade()
getExpression
public java.lang.String getExpression()
- OGNL: Cron expression for this schedule, the format is <seconds> <minutes> <hours> <day-of-month> <month> <day-of-week>.
For example, <em>0 0 1 * * ?</em> means 1:00am every day. For details of the format, refer to http://www.opensymphony.com/quartz/wikidocs/TutorialLesson6.html.
setExpression
public void setExpression(java.lang.String expression)
isPaused
public boolean isPaused()
- Specify whether this schedule should be paused or not.
setPaused
public void setPaused(boolean paused)
Copyright © 2005 PMEase Inc. All Rights Reserved.