
com.vmware.vim25.EVCModeIllegalByVendor Maven / Gradle / Ivy
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 EVCModeIllegalByVendor complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EVCModeIllegalByVendor">
* <complexContent>
* <extension base="{urn:vim25}EVCConfigFault">
* <sequence>
* <element name="clusterCPUVendor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="modeCPUVendor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EVCModeIllegalByVendor", propOrder = {
"clusterCPUVendor",
"modeCPUVendor"
})
public class EVCModeIllegalByVendor
extends EVCConfigFault
{
@XmlElement(required = true)
protected String clusterCPUVendor;
@XmlElement(required = true)
protected String modeCPUVendor;
/**
* Gets the value of the clusterCPUVendor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClusterCPUVendor() {
return clusterCPUVendor;
}
/**
* Sets the value of the clusterCPUVendor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClusterCPUVendor(String value) {
this.clusterCPUVendor = value;
}
/**
* Gets the value of the modeCPUVendor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModeCPUVendor() {
return modeCPUVendor;
}
/**
* Sets the value of the modeCPUVendor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModeCPUVendor(String value) {
this.modeCPUVendor = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy