![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.CannotAccessNetwork 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 CannotAccessNetwork complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CannotAccessNetwork">
* <complexContent>
* <extension base="{urn:vim25}CannotAccessVmDevice">
* <sequence>
* <element name="network" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CannotAccessNetwork", propOrder = {
"network"
})
@XmlSeeAlso({
DestinationSwitchFull.class,
LegacyNetworkInterfaceInUse.class,
VMOnConflictDVPort.class,
VMOnVirtualIntranet.class
})
public class CannotAccessNetwork
extends CannotAccessVmDevice
{
protected ManagedObjectReference network;
/**
* Gets the value of the network property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getNetwork() {
return network;
}
/**
* Sets the value of the network property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setNetwork(ManagedObjectReference value) {
this.network = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy