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;
     }

}
