// // Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802 // Visite http://java.sun.com/xml/jaxb // Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. // Generado el: 2020.07.12 a las 10:42:39 PM WEST // package generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Clase Java para DumpHardwareType complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="DumpHardwareType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Revision" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Firmware" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Extents" type="{}ExtentsType"/>
 *         <element name="Software" type="{}SoftwareType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DumpHardwareType", propOrder = { "manufacturer", "model", "revision", "firmware", "serial", "extents", "software" }) public class DumpHardwareType { @XmlElement(name = "Manufacturer", required = true) protected String manufacturer; @XmlElement(name = "Model", required = true) protected String model; @XmlElement(name = "Revision", required = true) protected String revision; @XmlElement(name = "Firmware", required = true) protected String firmware; @XmlElement(name = "Serial", required = true) protected String serial; @XmlElement(name = "Extents", required = true) protected ExtentsType extents; @XmlElement(name = "Software", required = true) protected SoftwareType software; /** * Obtiene el valor de la propiedad manufacturer. * * @return * possible object is * {@link String } * */ public String getManufacturer() { return manufacturer; } /** * Define el valor de la propiedad manufacturer. * * @param value * allowed object is * {@link String } * */ public void setManufacturer(String value) { this.manufacturer = value; } /** * Obtiene el valor de la propiedad model. * * @return * possible object is * {@link String } * */ public String getModel() { return model; } /** * Define el valor de la propiedad model. * * @param value * allowed object is * {@link String } * */ public void setModel(String value) { this.model = value; } /** * Obtiene el valor de la propiedad revision. * * @return * possible object is * {@link String } * */ public String getRevision() { return revision; } /** * Define el valor de la propiedad revision. * * @param value * allowed object is * {@link String } * */ public void setRevision(String value) { this.revision = value; } /** * Obtiene el valor de la propiedad firmware. * * @return * possible object is * {@link String } * */ public String getFirmware() { return firmware; } /** * Define el valor de la propiedad firmware. * * @param value * allowed object is * {@link String } * */ public void setFirmware(String value) { this.firmware = value; } /** * Obtiene el valor de la propiedad serial. * * @return * possible object is * {@link String } * */ public String getSerial() { return serial; } /** * Define el valor de la propiedad serial. * * @param value * allowed object is * {@link String } * */ public void setSerial(String value) { this.serial = value; } /** * Obtiene el valor de la propiedad extents. * * @return * possible object is * {@link ExtentsType } * */ public ExtentsType getExtents() { return extents; } /** * Define el valor de la propiedad extents. * * @param value * allowed object is * {@link ExtentsType } * */ public void setExtents(ExtentsType value) { this.extents = value; } /** * Obtiene el valor de la propiedad software. * * @return * possible object is * {@link SoftwareType } * */ public SoftwareType getSoftware() { return software; } /** * Define el valor de la propiedad software. * * @param value * allowed object is * {@link SoftwareType } * */ public void setSoftware(SoftwareType value) { this.software = value; } }