com.vmware.vim25.InvalidCAMServer Maven / Gradle / Ivy
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for InvalidCAMServer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InvalidCAMServer">
* <complexContent>
* <extension base="{urn:vim25}ActiveDirectoryFault">
* <sequence>
* <element name="camServer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InvalidCAMServer", propOrder = {
"camServer"
})
@XmlSeeAlso({
CAMServerRefusedConnection.class,
InvalidCAMCertificate.class
})
public class InvalidCAMServer
extends ActiveDirectoryFault
{
@XmlElement(required = true)
protected String camServer;
/**
* Gets the value of the camServer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCamServer() {
return camServer;
}
/**
* Sets the value of the camServer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCamServer(String value) {
this.camServer = value;
}
}