// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.08.04 at 03:25:13 AM CEST // package eu.prestoprime.model.oaipmh; import java.io.Serializable; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; /** * A resumptionToken may have 3 optional attributes and can be used in ListSets, * ListIdentifiers, ListRecords responses. * * <p> * Java class for resumptionTokenType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="resumptionTokenType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="completeListSize" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * <attribute name="cursor" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resumptionTokenType", propOrder = { "value" }) public class ResumptionTokenType implements Serializable { private final static long serialVersionUID = 1L; @XmlValue protected String value; @XmlAttribute(name = "expirationDate") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationDate; @XmlAttribute(name = "completeListSize") @XmlSchemaType(name = "positiveInteger") protected BigInteger completeListSize; @XmlAttribute(name = "cursor") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger cursor; /** * Gets the value of the value property. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the expirationDate property. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setExpirationDate(XMLGregorianCalendar value) { this.expirationDate = value; } /** * Gets the value of the completeListSize property. * * @return possible object is {@link BigInteger } * */ public BigInteger getCompleteListSize() { return completeListSize; } /** * Sets the value of the completeListSize property. * * @param value * allowed object is {@link BigInteger } * */ public void setCompleteListSize(BigInteger value) { this.completeListSize = value; } /** * Gets the value of the cursor property. * * @return possible object is {@link BigInteger } * */ public BigInteger getCursor() { return cursor; } /** * Sets the value of the cursor property. * * @param value * allowed object is {@link BigInteger } * */ public void setCursor(BigInteger value) { this.cursor = value; } }