org.iru.rts.services.terminationservice_1.GetReconciliationRequests Maven / Gradle / Ivy
The newest version!
package org.iru.rts.services.terminationservice_1;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="from" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="to" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="maxCount" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"from",
"to",
"offset",
"maxCount"
})
@XmlRootElement(name = "getReconciliationRequests")
public class GetReconciliationRequests {
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar from;
@XmlElementRef(name = "to", namespace = "http://rts.iru.org/services/TerminationService-1", type = JAXBElement.class)
protected JAXBElement to;
@XmlElementRef(name = "offset", namespace = "http://rts.iru.org/services/TerminationService-1", type = JAXBElement.class)
protected JAXBElement offset;
@XmlElementRef(name = "maxCount", namespace = "http://rts.iru.org/services/TerminationService-1", type = JAXBElement.class)
protected JAXBElement maxCount;
/**
* Gets the value of the from property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getFrom() {
return from;
}
/**
* Sets the value of the from property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setFrom(XMLGregorianCalendar value) {
this.from = value;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}
*
*/
public JAXBElement getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}
*
*/
public void setTo(JAXBElement value) {
this.to = ((JAXBElement ) value);
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Integer }{@code >}
*
*/
public JAXBElement getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Integer }{@code >}
*
*/
public void setOffset(JAXBElement value) {
this.offset = ((JAXBElement ) value);
}
/**
* Gets the value of the maxCount property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Long }{@code >}
*
*/
public JAXBElement getMaxCount() {
return maxCount;
}
/**
* Sets the value of the maxCount property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Long }{@code >}
*
*/
public void setMaxCount(JAXBElement value) {
this.maxCount = ((JAXBElement ) value);
}
}