// // 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.myasup.configcompare.jaxb.objlist; 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.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; 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 ref="{}asup_id"/>
 *         <element ref="{}asup_subject"/>
 *         <element ref="{}asup_type"/>
 *         <element ref="{}asup_gen_date"/>
 *         <element ref="{}asup_received_date"/>
 *         <element ref="{}asup_gen_zone"/>
 *         <element ref="{}sys_version"/>
 *         <element ref="{}list"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "asupId", "asupSubject", "asupType", "asupGenDate", "asupReceivedDate", "asupGenZone", "sysVersion", "list" }) @XmlRootElement(name = "asup") public class Asup { @XmlElement(name = "asup_id", required = true) protected BigInteger asupId; @XmlElement(name = "asup_subject", required = true) protected String asupSubject; @XmlElement(name = "asup_type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String asupType; @XmlElement(name = "asup_gen_date", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar asupGenDate; @XmlElement(name = "asup_received_date", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String asupReceivedDate; @XmlElement(name = "asup_gen_zone", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String asupGenZone; @XmlElement(name = "sys_version", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String sysVersion; @XmlElement(required = true) protected List list; /** * Gets the value of the asupId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAsupId() { return asupId; } /** * Sets the value of the asupId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setAsupId(BigInteger value) { this.asupId = value; } /** * Gets the value of the asupSubject property. * * @return * possible object is * {@link String } * */ public String getAsupSubject() { return asupSubject; } /** * Sets the value of the asupSubject property. * * @param value * allowed object is * {@link String } * */ public void setAsupSubject(String value) { this.asupSubject = value; } /** * Gets the value of the asupType property. * * @return * possible object is * {@link String } * */ public String getAsupType() { return asupType; } /** * Sets the value of the asupType property. * * @param value * allowed object is * {@link String } * */ public void setAsupType(String value) { this.asupType = value; } /** * Gets the value of the asupGenDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getAsupGenDate() { return asupGenDate; } /** * Sets the value of the asupGenDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setAsupGenDate(XMLGregorianCalendar value) { this.asupGenDate = value; } /** * Gets the value of the asupReceivedDate property. * * @return * possible object is * {@link String } * */ public String getAsupReceivedDate() { return asupReceivedDate; } /** * Sets the value of the asupReceivedDate property. * * @param value * allowed object is * {@link String } * */ public void setAsupReceivedDate(String value) { this.asupReceivedDate = value; } /** * Gets the value of the asupGenZone property. * * @return * possible object is * {@link String } * */ public String getAsupGenZone() { return asupGenZone; } /** * Sets the value of the asupGenZone property. * * @param value * allowed object is * {@link String } * */ public void setAsupGenZone(String value) { this.asupGenZone = value; } /** * Gets the value of the sysVersion property. * * @return * possible object is * {@link String } * */ public String getSysVersion() { return sysVersion; } /** * Sets the value of the sysVersion property. * * @param value * allowed object is * {@link String } * */ public void setSysVersion(String value) { this.sysVersion = value; } /** * Gets the value of the list property. * * @return * possible object is * {@link List } * */ public List getList() { return list; } /** * Sets the value of the list property. * * @param value * allowed object is * {@link List } * */ public void setList(List value) { this.list = value; } }