// // 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.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for ManifestType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ManifestType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="TrustStatus" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="Value" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="Verified_On" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ManifestType") public class ManifestType { @XmlAttribute(name = "TrustStatus") protected Integer trustStatus; @XmlAttribute(name = "Name") protected Integer name; @XmlAttribute(name = "Value") protected String value; @XmlAttribute(name = "Verified_On") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar verifiedOn; /** * Gets the value of the trustStatus property. * * @return * possible object is * {@link Integer } * */ public Integer getTrustStatus() { return trustStatus; } /** * Sets the value of the trustStatus property. * * @param value * allowed object is * {@link Integer } * */ public void setTrustStatus(Integer value) { this.trustStatus = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link Integer } * */ public Integer getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link Integer } * */ public void setName(Integer value) { this.name = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the verifiedOn property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getVerifiedOn() { return verifiedOn; } /** * Sets the value of the verifiedOn property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setVerifiedOn(XMLGregorianCalendar value) { this.verifiedOn = value; } }