com.vmware.vim25.ActiveDirectoryFault Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ActiveDirectoryFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ActiveDirectoryFault">
* <complexContent>
* <extension base="{urn:vim25}VimFault">
* <sequence>
* <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ActiveDirectoryFault", propOrder = {
"errorCode"
})
@XmlSeeAlso({
DomainNotFound.class,
InvalidCAMServer.class,
NoPermissionOnAD.class,
NonADUserRequired.class
})
public class ActiveDirectoryFault
extends VimFault
{
protected Integer errorCode;
/**
* Gets the value of the errorCode property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getErrorCode() {
return errorCode;
}
/**
* Sets the value of the errorCode property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setErrorCode(Integer value) {
this.errorCode = value;
}
}