1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
package test;
// Turbine
import org.apache.turbine.om.BaseObject;
import java.util.*;
/** This class was autogenerated by XMLSchemaToObjectModel on: Sun Aug 27 15:53:55 EDT 2000 */
public class Jobentry extends BaseObject
{
/** the value for the task field */
private String task;
/** the value for the hour field */
private int hour;
/** the value for the minute field */
private int minute;
/** the value for the dayofmonth field */
private int dayofmonth;
/** the value for the weekday field */
private int weekday;
/** the value for the email field */
private String email;
/** the value for the jobid field */
private int jobid;
/**
* Get the task
* @return String
*/
public String getTask()
{
return task;
}
/**
* Set the value of task
* @param String
*/
public void setTask(String v )
{
this.task = v;
}
/**
* Get the hour
* @return int
*/
public int getHour()
{
return hour;
}
/**
* Set the value of hour
* @param int
*/
public void setHour(int v )
{
this.hour = v;
}
/**
* Get the minute
* @return int
*/
public int getMinute()
{
return minute;
}
/**
* Set the value of minute
* @param int
*/
public void setMinute(int v )
{
this.minute = v;
}
/**
* Get the dayofmonth
* @return int
*/
public int getDayOfMonth()
{
return dayofmonth;
}
/**
* Set the value of dayofmonth
* @param int
*/
public void setDayOfMonth(int v )
{
this.dayofmonth = v;
}
/**
* Get the weekday
* @return int
*/
public int getWeekday()
{
return weekday;
}
/**
* Set the value of weekday
* @param int
*/
public void setWeekday(int v )
{
this.weekday = v;
}
/**
* Get the email
* @return String
*/
public String getEmail()
{
return email;
}
/**
* Set the value of email
* @param String
*/
public void setEmail(String v )
{
this.email = v;
}
/**
* Get the jobid
* @return int
*/
public int getJobid()
{
return jobid;
}
/**
* Set the value of jobid
* @param int
*/
public void setJobid(int v )
{
this.jobid = v;
}
}
|