![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostTpmAttestationReport Maven / Gradle / Ivy
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 HostTpmAttestationReport complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostTpmAttestationReport">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="tpmPcrValues" type="{urn:vim25}HostTpmDigestInfo" maxOccurs="unbounded"/>
* <element name="tpmEvents" type="{urn:vim25}HostTpmEventLogEntry" maxOccurs="unbounded"/>
* <element name="tpmLogReliable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostTpmAttestationReport", propOrder = {
"tpmPcrValues",
"tpmEvents",
"tpmLogReliable"
})
public class HostTpmAttestationReport
extends DynamicData
{
@XmlElement(required = true)
protected List tpmPcrValues;
@XmlElement(required = true)
protected List tpmEvents;
protected boolean tpmLogReliable;
/**
* Gets the value of the tpmPcrValues 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 tpmPcrValues property.
*
*
* For example, to add a new item, do as follows:
*
* getTpmPcrValues().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostTpmDigestInfo }
*
*
*/
public List getTpmPcrValues() {
if (tpmPcrValues == null) {
tpmPcrValues = new ArrayList();
}
return this.tpmPcrValues;
}
/**
* Gets the value of the tpmEvents 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 tpmEvents property.
*
*
* For example, to add a new item, do as follows:
*
* getTpmEvents().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostTpmEventLogEntry }
*
*
*/
public List getTpmEvents() {
if (tpmEvents == null) {
tpmEvents = new ArrayList();
}
return this.tpmEvents;
}
/**
* Gets the value of the tpmLogReliable property.
*
*/
public boolean isTpmLogReliable() {
return tpmLogReliable;
}
/**
* Sets the value of the tpmLogReliable property.
*
*/
public void setTpmLogReliable(boolean value) {
this.tpmLogReliable = value;
}
}