![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmRollupComplianceResult Maven / Gradle / Ivy
package com.vmware.pbm;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import com.vmware.vim25.DynamicData;
import com.vmware.vim25.LocalizedMethodFault;
/**
* Java class for PbmRollupComplianceResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmRollupComplianceResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="oldestCheckTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="entity" type="{urn:pbm}PbmServerObjectRef"/>
* <element name="overallComplianceStatus" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="overallComplianceTaskStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="result" type="{urn:pbm}PbmComplianceResult" maxOccurs="unbounded" minOccurs="0"/>
* <element name="errorCause" type="{urn:vim25}LocalizedMethodFault" maxOccurs="unbounded" minOccurs="0"/>
* <element name="profileMismatch" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmRollupComplianceResult", propOrder = {
"oldestCheckTime",
"entity",
"overallComplianceStatus",
"overallComplianceTaskStatus",
"result",
"errorCause",
"profileMismatch"
})
public class PbmRollupComplianceResult
extends DynamicData
{
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar oldestCheckTime;
@XmlElement(required = true)
protected PbmServerObjectRef entity;
@XmlElement(required = true)
protected String overallComplianceStatus;
protected String overallComplianceTaskStatus;
protected List result;
protected List errorCause;
protected boolean profileMismatch;
/**
* Gets the value of the oldestCheckTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getOldestCheckTime() {
return oldestCheckTime;
}
/**
* Sets the value of the oldestCheckTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setOldestCheckTime(XMLGregorianCalendar value) {
this.oldestCheckTime = value;
}
/**
* Gets the value of the entity property.
*
* @return
* possible object is
* {@link PbmServerObjectRef }
*
*/
public PbmServerObjectRef getEntity() {
return entity;
}
/**
* Sets the value of the entity property.
*
* @param value
* allowed object is
* {@link PbmServerObjectRef }
*
*/
public void setEntity(PbmServerObjectRef value) {
this.entity = value;
}
/**
* Gets the value of the overallComplianceStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOverallComplianceStatus() {
return overallComplianceStatus;
}
/**
* Sets the value of the overallComplianceStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOverallComplianceStatus(String value) {
this.overallComplianceStatus = value;
}
/**
* Gets the value of the overallComplianceTaskStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOverallComplianceTaskStatus() {
return overallComplianceTaskStatus;
}
/**
* Sets the value of the overallComplianceTaskStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOverallComplianceTaskStatus(String value) {
this.overallComplianceTaskStatus = value;
}
/**
* Gets the value of the result 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 result property.
*
*
* For example, to add a new item, do as follows:
*
* getResult().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PbmComplianceResult }
*
*
*/
public List getResult() {
if (result == null) {
result = new ArrayList();
}
return this.result;
}
/**
* Gets the value of the errorCause 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 errorCause property.
*
*
* For example, to add a new item, do as follows:
*
* getErrorCause().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalizedMethodFault }
*
*
*/
public List getErrorCause() {
if (errorCause == null) {
errorCause = new ArrayList();
}
return this.errorCause;
}
/**
* Gets the value of the profileMismatch property.
*
*/
public boolean isProfileMismatch() {
return profileMismatch;
}
/**
* Sets the value of the profileMismatch property.
*
*/
public void setProfileMismatch(boolean value) {
this.profileMismatch = value;
}
}