// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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.08.31 at 10:36:23 AM KST // package org.oliot.model.epcis; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** * <p> * Java class for QuerySchedule complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="QuerySchedule"> * <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"/> * <element name="extension" type="{query.epcis.oliot.org}QueryScheduleExtensionType" minOccurs="0"/> * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuerySchedule", namespace = "query.epcis.oliot.org", propOrder = { "second", "minute", "hour", "dayOfMonth", "month", "dayOfWeek", "extension", "any" }) public class QuerySchedule { protected String second; protected String minute; protected String hour; protected String dayOfMonth; protected String month; protected String dayOfWeek; protected QueryScheduleExtensionType extension; @XmlAnyElement(lax = true) protected List<Object> any; /** * 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; } /** * Gets the value of the extension property. * * @return possible object is {@link QueryScheduleExtensionType } * */ public QueryScheduleExtensionType getExtension() { return extension; } /** * Sets the value of the extension property. * * @param value * allowed object is {@link QueryScheduleExtensionType } * */ public void setExtension(QueryScheduleExtensionType value) { this.extension = value; } /** * Gets the value of the any property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the any property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getAny().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link Object } * {@link Element } * * */ public List<Object> getAny() { if (any == null) { any = new ArrayList<Object>(); } return this.any; } }