![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCompliancePolicyStatus Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmCompliancePolicyStatus complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCompliancePolicyStatus">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="expectedValue" type="{urn:pbm}PbmCapabilityInstance"/>
* <element name="currentValue" type="{urn:pbm}PbmCapabilityInstance" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCompliancePolicyStatus", propOrder = {
"expectedValue",
"currentValue"
})
public class PbmCompliancePolicyStatus
extends DynamicData
{
@XmlElement(required = true)
protected PbmCapabilityInstance expectedValue;
protected PbmCapabilityInstance currentValue;
/**
* Gets the value of the expectedValue property.
*
* @return
* possible object is
* {@link PbmCapabilityInstance }
*
*/
public PbmCapabilityInstance getExpectedValue() {
return expectedValue;
}
/**
* Sets the value of the expectedValue property.
*
* @param value
* allowed object is
* {@link PbmCapabilityInstance }
*
*/
public void setExpectedValue(PbmCapabilityInstance value) {
this.expectedValue = value;
}
/**
* Gets the value of the currentValue property.
*
* @return
* possible object is
* {@link PbmCapabilityInstance }
*
*/
public PbmCapabilityInstance getCurrentValue() {
return currentValue;
}
/**
* Sets the value of the currentValue property.
*
* @param value
* allowed object is
* {@link PbmCapabilityInstance }
*
*/
public void setCurrentValue(PbmCapabilityInstance value) {
this.currentValue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy