All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostBIOSInfo Maven / Gradle / Ivy

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for HostBIOSInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostBIOSInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="biosVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="releaseDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostBIOSInfo", propOrder = { "biosVersion", "releaseDate" }) public class HostBIOSInfo extends DynamicData { protected String biosVersion; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar releaseDate; /** * Gets the value of the biosVersion property. * * @return * possible object is * {@link String } * */ public String getBiosVersion() { return biosVersion; } /** * Sets the value of the biosVersion property. * * @param value * allowed object is * {@link String } * */ public void setBiosVersion(String value) { this.biosVersion = value; } /** * Gets the value of the releaseDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getReleaseDate() { return releaseDate; } /** * Sets the value of the releaseDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setReleaseDate(XMLGregorianCalendar value) { this.releaseDate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy