![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostTpmDigestInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostTpmDigestInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostTpmDigestInfo">
* <complexContent>
* <extension base="{urn:vim25}HostDigestInfo">
* <sequence>
* <element name="pcrNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostTpmDigestInfo", propOrder = {
"pcrNumber"
})
public class HostTpmDigestInfo
extends HostDigestInfo
{
protected int pcrNumber;
/**
* Gets the value of the pcrNumber property.
*
*/
public int getPcrNumber() {
return pcrNumber;
}
/**
* Sets the value of the pcrNumber property.
*
*/
public void setPcrNumber(int value) {
this.pcrNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy