Package org.apache.openejb.jee
Class TimerSchedule
- java.lang.Object
-
- org.apache.openejb.jee.TimerSchedule
-
public class TimerSchedule extends Object
ejb-jar_3_1.xsdJava class for timer-scheduleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="timer-scheduleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="second" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="minute" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="hour" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="day-of-month" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="month" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="day-of-week" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="year" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description TimerSchedule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDayOfMonth()StringgetDayOfWeek()StringgetHour()StringgetId()StringgetMinute()StringgetMonth()StringgetSecond()StringgetYear()voidsetDayOfMonth(String value)voidsetDayOfWeek(String value)voidsetHour(String value)voidsetId(String value)voidsetMinute(String value)voidsetMonth(String value)voidsetSecond(String value)voidsetYear(String value)
-
-
-
Method Detail
-
getSecond
public String getSecond()
-
setSecond
public void setSecond(String value)
-
getMinute
public String getMinute()
-
setMinute
public void setMinute(String value)
-
getHour
public String getHour()
-
setHour
public void setHour(String value)
-
getDayOfMonth
public String getDayOfMonth()
-
setDayOfMonth
public void setDayOfMonth(String value)
-
getMonth
public String getMonth()
-
setMonth
public void setMonth(String value)
-
getDayOfWeek
public String getDayOfWeek()
-
setDayOfWeek
public void setDayOfWeek(String value)
-
getYear
public String getYear()
-
setYear
public void setYear(String value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-