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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostTpmOptionEventDetails complex type. * *

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

 * <complexType name="HostTpmOptionEventDetails">
 *   <complexContent>
 *     <extension base="{urn:vim25}HostTpmEventDetails">
 *       <sequence>
 *         <element name="optionsFileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="bootOptions" type="{http://www.w3.org/2001/XMLSchema}byte" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostTpmOptionEventDetails", propOrder = { "optionsFileName", "bootOptions" }) public class HostTpmOptionEventDetails extends HostTpmEventDetails { @XmlElement(required = true) protected String optionsFileName; @XmlElement(type = Byte.class) protected List bootOptions; /** * Gets the value of the optionsFileName property. * * @return * possible object is * {@link String } * */ public String getOptionsFileName() { return optionsFileName; } /** * Sets the value of the optionsFileName property. * * @param value * allowed object is * {@link String } * */ public void setOptionsFileName(String value) { this.optionsFileName = value; } /** * Gets the value of the bootOptions property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the bootOptions property. * *

* For example, to add a new item, do as follows: *

     *    getBootOptions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Byte } * * */ public List getBootOptions() { if (bootOptions == null) { bootOptions = new ArrayList(); } return this.bootOptions; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy