com.vmware.vim25.HostTpmEventLogEntry Maven / Gradle / Ivy
package com.vmware.vim25;
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 HostTpmEventLogEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostTpmEventLogEntry">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="pcrIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="eventDetails" type="{urn:vim25}HostTpmEventDetails"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostTpmEventLogEntry", propOrder = {
"pcrIndex",
"eventDetails"
})
public class HostTpmEventLogEntry
extends DynamicData
{
protected int pcrIndex;
@XmlElement(required = true)
protected HostTpmEventDetails eventDetails;
/**
* Gets the value of the pcrIndex property.
*
*/
public int getPcrIndex() {
return pcrIndex;
}
/**
* Sets the value of the pcrIndex property.
*
*/
public void setPcrIndex(int value) {
this.pcrIndex = value;
}
/**
* Gets the value of the eventDetails property.
*
* @return
* possible object is
* {@link HostTpmEventDetails }
*
*/
public HostTpmEventDetails getEventDetails() {
return eventDetails;
}
/**
* Sets the value of the eventDetails property.
*
* @param value
* allowed object is
* {@link HostTpmEventDetails }
*
*/
public void setEventDetails(HostTpmEventDetails value) {
this.eventDetails = value;
}
}