// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.06.20 at 10:09:15 PM GMT+05:30 // package com.netapp.myasupnext.configcompare.jaxb.objlist; 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.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

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 ref="{}asup"/>
 *       </sequence>
 *       <attribute name="limit" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="results_count" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="start" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="total_results_count" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "asup" }) @XmlRootElement(name = "asups") public class Asups { @XmlElement(required = true) protected Asup asup; @XmlAttribute(name = "limit", required = true) protected BigInteger limit; @XmlAttribute(name = "results_count", required = true) protected BigInteger resultsCount; @XmlAttribute(name = "start", required = true) protected BigInteger start; @XmlAttribute(name = "total_results_count", required = true) protected BigInteger totalResultsCount; /** * Gets the value of the asup property. * * @return * possible object is * {@link Asup } * */ public Asup getAsup() { return asup; } /** * Sets the value of the asup property. * * @param value * allowed object is * {@link Asup } * */ public void setAsup(Asup value) { this.asup = value; } /** * Gets the value of the limit property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getLimit() { return limit; } /** * Sets the value of the limit property. * * @param value * allowed object is * {@link BigInteger } * */ public void setLimit(BigInteger value) { this.limit = value; } /** * Gets the value of the resultsCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getResultsCount() { return resultsCount; } /** * Sets the value of the resultsCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setResultsCount(BigInteger value) { this.resultsCount = value; } /** * Gets the value of the start property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getStart() { return start; } /** * Sets the value of the start property. * * @param value * allowed object is * {@link BigInteger } * */ public void setStart(BigInteger value) { this.start = value; } /** * Gets the value of the totalResultsCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTotalResultsCount() { return totalResultsCount; } /** * Sets the value of the totalResultsCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTotalResultsCount(BigInteger value) { this.totalResultsCount = value; } }