
com.vmware.vim25.ComplianceFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
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 ComplianceFailure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ComplianceFailure">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="failureType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="message" type="{urn:vim25}LocalizableMessage"/>
* <element name="expressionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ComplianceFailure", propOrder = {
"failureType",
"message",
"expressionName"
})
public class ComplianceFailure
extends DynamicData
{
@XmlElement(required = true)
protected String failureType;
@XmlElement(required = true)
protected LocalizableMessage message;
protected String expressionName;
/**
* Gets the value of the failureType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFailureType() {
return failureType;
}
/**
* Sets the value of the failureType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFailureType(String value) {
this.failureType = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link LocalizableMessage }
*
*/
public LocalizableMessage getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link LocalizableMessage }
*
*/
public void setMessage(LocalizableMessage value) {
this.message = value;
}
/**
* Gets the value of the expressionName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExpressionName() {
return expressionName;
}
/**
* Sets the value of the expressionName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpressionName(String value) {
this.expressionName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy