![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.NetworkSummary 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 NetworkSummary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NetworkSummary">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="network" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ipPoolName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ipPoolId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NetworkSummary", propOrder = {
"network",
"name",
"accessible",
"ipPoolName",
"ipPoolId"
})
@XmlSeeAlso({
OpaqueNetworkSummary.class
})
public class NetworkSummary
extends DynamicData
{
protected ManagedObjectReference network;
@XmlElement(required = true)
protected String name;
protected boolean accessible;
protected String ipPoolName;
protected Integer ipPoolId;
/**
* 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;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the accessible property.
*
*/
public boolean isAccessible() {
return accessible;
}
/**
* Sets the value of the accessible property.
*
*/
public void setAccessible(boolean value) {
this.accessible = value;
}
/**
* Gets the value of the ipPoolName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpPoolName() {
return ipPoolName;
}
/**
* Sets the value of the ipPoolName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpPoolName(String value) {
this.ipPoolName = value;
}
/**
* Gets the value of the ipPoolId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getIpPoolId() {
return ipPoolId;
}
/**
* Sets the value of the ipPoolId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setIpPoolId(Integer value) {
this.ipPoolId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy