// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.02.24 at 02:22:34 PM PST // package com.intel.mountwilson.as.hostmanifestreport.data; import javax.xml.bind.annotation.*; /** * <p>Java class for host_manifest_reportType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="host_manifest_reportType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Host" type="{}HostType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlRootElement(name="host_manifest_report") // added to support deserialization -jabuhacx 20120614 @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "host_manifest_reportType", propOrder = { "host" }) public class HostManifestReportType { @XmlElement(name = "Host", required = true) protected HostType host; /** * Gets the value of the host property. * * @return * possible object is * {@link HostType } * */ public HostType getHost() { return host; } /** * Sets the value of the host property. * * @param value * allowed object is * {@link HostType } * */ public void setHost(HostType value) { this.host = value; } }