package at.gv.util.xsd.ur.xmlsw; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java class for ResultInfoType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ResultInfoType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultSetId" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}FoundRecords" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ReturnedRecords"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}PaymentInfo" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ExtraResultInfo" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResultInfoType", propOrder = { "resultSetId", "foundRecords", "returnedRecords", "paymentInfo", "extraResultInfo" }) public class ResultInfoType { @XmlElement(name = "ResultSetId") protected String resultSetId; @XmlElement(name = "FoundRecords") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger foundRecords; @XmlElement(name = "ReturnedRecords", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger returnedRecords; @XmlElement(name = "PaymentInfo") protected PaymentInfoType paymentInfo; @XmlElement(name = "ExtraResultInfo") protected ExtraResultInfo extraResultInfo; /** * Gets the value of the resultSetId property. * * @return * possible object is * {@link String } * */ public String getResultSetId() { return resultSetId; } /** * Sets the value of the resultSetId property. * * @param value * allowed object is * {@link String } * */ public void setResultSetId(String value) { this.resultSetId = value; } /** * Gets the value of the foundRecords property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFoundRecords() { return foundRecords; } /** * Sets the value of the foundRecords property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFoundRecords(BigInteger value) { this.foundRecords = value; } /** * Gets the value of the returnedRecords property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getReturnedRecords() { return returnedRecords; } /** * Sets the value of the returnedRecords property. * * @param value * allowed object is * {@link BigInteger } * */ public void setReturnedRecords(BigInteger value) { this.returnedRecords = value; } /** * Gets the value of the paymentInfo property. * * @return * possible object is * {@link PaymentInfoType } * */ public PaymentInfoType getPaymentInfo() { return paymentInfo; } /** * Sets the value of the paymentInfo property. * * @param value * allowed object is * {@link PaymentInfoType } * */ public void setPaymentInfo(PaymentInfoType value) { this.paymentInfo = value; } /** * Gets the value of the extraResultInfo property. * * @return * possible object is * {@link ExtraResultInfo } * */ public ExtraResultInfo getExtraResultInfo() { return extraResultInfo; } /** * Sets the value of the extraResultInfo property. * * @param value * allowed object is * {@link ExtraResultInfo } * */ public void setExtraResultInfo(ExtraResultInfo value) { this.extraResultInfo = value; } }