// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.01.25 at 12:49:31 �� EET // package org.openiot.commons.osdspec.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="second" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="minute" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="hour" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="dayOfMonth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="month" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="dayOfWeek" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "second", "minute", "hour", "dayOfMonth", "month", "dayOfWeek" }) @XmlRootElement(name = "QuerySchedule") public class QuerySchedule { protected String second; protected String minute; protected String hour; protected String dayOfMonth; protected String month; protected String dayOfWeek; /** * Gets the value of the second property. * * @return * possible object is * {@link String } * */ public String getSecond() { return second; } /** * Sets the value of the second property. * * @param value * allowed object is * {@link String } * */ public void setSecond(String value) { this.second = value; } /** * Gets the value of the minute property. * * @return * possible object is * {@link String } * */ public String getMinute() { return minute; } /** * Sets the value of the minute property. * * @param value * allowed object is * {@link String } * */ public void setMinute(String value) { this.minute = value; } /** * Gets the value of the hour property. * * @return * possible object is * {@link String } * */ public String getHour() { return hour; } /** * Sets the value of the hour property. * * @param value * allowed object is * {@link String } * */ public void setHour(String value) { this.hour = value; } /** * Gets the value of the dayOfMonth property. * * @return * possible object is * {@link String } * */ public String getDayOfMonth() { return dayOfMonth; } /** * Sets the value of the dayOfMonth property. * * @param value * allowed object is * {@link String } * */ public void setDayOfMonth(String value) { this.dayOfMonth = value; } /** * Gets the value of the month property. * * @return * possible object is * {@link String } * */ public String getMonth() { return month; } /** * Sets the value of the month property. * * @param value * allowed object is * {@link String } * */ public void setMonth(String value) { this.month = value; } /** * Gets the value of the dayOfWeek property. * * @return * possible object is * {@link String } * */ public String getDayOfWeek() { return dayOfWeek; } /** * Sets the value of the dayOfWeek property. * * @param value * allowed object is * {@link String } * */ public void setDayOfWeek(String value) { this.dayOfWeek = value; } }