| java.lang.Object com.rift.coad.daemon.timer.db.Schedule
Schedule | public Schedule()(Code) | | default constructor
|
Schedule | public Schedule(String jndi, Integer month, Integer day, Integer hour, Integer minute, byte[] event, byte recure)(Code) | | full constructor
Parameters: jndi - The JNDI of the daemon to be called. Parameters: month - The month on which the event will be called. Parameters: day - The day on which the event will be called. Parameters: hour - The hour on which the event will be called. Parameters: minute - The minute on which the event will be called. Parameters: event - An object to identify the event. Parameters: recure - A byte which indicates whether the event recures or not. |
getDay | public Integer getDay()(Code) | | Returns the day on which the event is to occur. |
getEvent | public byte[] getEvent()(Code) | | Returns the identifying object. |
getHour | public Integer getHour()(Code) | | Returns the hour on which the event is to occur. |
getJndi | public String getJndi()(Code) | | Returns the JNDI of the daemon to be called. |
getMinute | public Integer getMinute()(Code) | | Returns the minute on which an event is to occur. |
getMonth | public Integer getMonth()(Code) | | Returns the month on which the event will occur. |
getRecure | public byte getRecure()(Code) | | Returns the recure value. |
setDay | public void setDay(Integer day)(Code) | | Parameters: day - Sets the day on which the event is to occur. |
setEvent | public void setEvent(byte[] event)(Code) | | Parameters: event - Sets the identifying object. |
setHour | public void setHour(Integer hour)(Code) | | Parameters: hour - Sets the hour on which an event is to occur. |
setJndi | public void setJndi(String jndi)(Code) | | Parameters: jndi - The JNDI of the daemon to be called. |
setMinute | public void setMinute(Integer minute)(Code) | | Parameters: minute - Sets the minutes on which an event is to occur. |
setMonth | public void setMonth(Integer month)(Code) | | Parameters: month - Sets the month on which the event is to occur. |
setRecure | public void setRecure(byte recure)(Code) | | Parameters: recure - Sets the recure value. |
|
|