// // 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:52 PM GMT+05:30 // package com.netapp.myasupnext.configcompare.jaxb; 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; /** *

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="{}asupId"/>
 *         <element ref="{}date"/>
 *         <element ref="{}hostname"/>
 *         <element ref="{}serialnumber"/>
 *         <element ref="{}systemId"/>
 *         <element ref="{}model"/>
 *         <element ref="{}osVersion"/>
 *         <element ref="{}motherboardFW"/>
 *         <element ref="{}clusterName"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "asupId", "date", "hostname", "serialnumber", "systemId", "model", "osVersion", "motherboardFW", "clusterName" }) @XmlRootElement(name = "config") public class Config { @XmlElement(required = true) protected BigInteger asupId; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String date; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String hostname; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String serialnumber; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String systemId; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String model; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String osVersion; @XmlElement(required = true) protected String motherboardFW; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String clusterName; /** * 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 date property. * * @return * possible object is * {@link String } * */ public String getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ public void setDate(String value) { this.date = value; } /** * Gets the value of the hostname property. * * @return * possible object is * {@link String } * */ public String getHostname() { return hostname; } /** * Sets the value of the hostname property. * * @param value * allowed object is * {@link String } * */ public void setHostname(String value) { this.hostname = value; } /** * Gets the value of the serialnumber property. * * @return * possible object is * {@link BigInteger } * */ public String getSerialnumber() { return serialnumber; } /** * Sets the value of the serialnumber property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSerialnumber(String value) { this.serialnumber = value; } /** * Gets the value of the systemId property. * * @return * possible object is * {@link BigInteger } * */ public String getSystemId() { return systemId; } /** * Sets the value of the systemId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSystemId(String value) { this.systemId = value; } /** * Gets the value of the model property. * * @return * possible object is * {@link String } * */ public String getModel() { return model; } /** * Sets the value of the model property. * * @param value * allowed object is * {@link String } * */ public void setModel(String value) { this.model = value; } /** * Gets the value of the osVersion property. * * @return * possible object is * {@link String } * */ public String getOsVersion() { return osVersion; } /** * Sets the value of the osVersion property. * * @param value * allowed object is * {@link String } * */ public void setOsVersion(String value) { this.osVersion = value; } /** * Gets the value of the motherboardFW property. * * @return * possible object is * {@link String } * */ public String getMotherboardFW() { return motherboardFW; } /** * Sets the value of the motherboardFW property. * * @param value * allowed object is * {@link String } * */ public void setMotherboardFW(String value) { this.motherboardFW = value; } /** * Gets the value of the clusterName property. * * @return * possible object is * {@link String } * */ public String getClusterName() { return clusterName; } /** * Sets the value of the clusterName property. * * @param value * allowed object is * {@link String } * */ public void setClusterName(String value) { this.clusterName = value; } }