// // 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.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the com.test.jaxb.cgi package. *

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _MotherboardFW_QNAME = new QName("", "motherboardFW"); private final static QName _Serialnumber_QNAME = new QName("", "serialnumber"); private final static QName _ClusterName_QNAME = new QName("", "clusterName"); private final static QName _OsVersion_QNAME = new QName("", "osVersion"); private final static QName _SystemId_QNAME = new QName("", "systemId"); private final static QName _Model_QNAME = new QName("", "model"); private final static QName _Hostname_QNAME = new QName("", "hostname"); private final static QName _Date_QNAME = new QName("", "date"); private final static QName _AsupId_QNAME = new QName("", "asupId"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.test.jaxb.cgi * */ public ObjectFactory() { } /** * Create an instance of {@link Header } * */ public Header createHeader() { return new Header(); } /** * Create an instance of {@link Config } * */ public Config createConfig() { return new Config(); } /** * Create an instance of {@link Attr } * */ public Attr createAttr() { return new Attr(); } /** * Create an instance of {@link Entity } * */ public Entity createEntity() { return new Entity(); } /** * Create an instance of {@link Section } * */ public Section createSection() { return new Section(); } /** * Create an instance of {@link ConfigDiff } * */ public ConfigDiff createConfigDiff() { return new ConfigDiff(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "motherboardFW") public JAXBElement createMotherboardFW(String value) { return new JAXBElement(_MotherboardFW_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ @XmlElementDecl(namespace = "", name = "serialnumber") public JAXBElement createSerialnumber(BigInteger value) { return new JAXBElement(_Serialnumber_QNAME, BigInteger.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "clusterName") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createClusterName(String value) { return new JAXBElement(_ClusterName_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "osVersion") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createOsVersion(String value) { return new JAXBElement(_OsVersion_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ @XmlElementDecl(namespace = "", name = "systemId") public JAXBElement createSystemId(BigInteger value) { return new JAXBElement(_SystemId_QNAME, BigInteger.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "model") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createModel(String value) { return new JAXBElement(_Model_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "hostname") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createHostname(String value) { return new JAXBElement(_Hostname_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "", name = "date") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createDate(String value) { return new JAXBElement(_Date_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ @XmlElementDecl(namespace = "", name = "asupId") public JAXBElement createAsupId(BigInteger value) { return new JAXBElement(_AsupId_QNAME, BigInteger.class, null, value); } }