![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostIpRouteEntry 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.XmlType;
/**
* Java class for HostIpRouteEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostIpRouteEntry">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="network" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="prefixLength" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="gateway" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="deviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostIpRouteEntry", propOrder = {
"network",
"prefixLength",
"gateway",
"deviceName"
})
public class HostIpRouteEntry
extends DynamicData
{
@XmlElement(required = true)
protected String network;
protected int prefixLength;
@XmlElement(required = true)
protected String gateway;
protected String deviceName;
/**
* Gets the value of the network property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetwork() {
return network;
}
/**
* Sets the value of the network property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNetwork(String value) {
this.network = value;
}
/**
* Gets the value of the prefixLength property.
*
*/
public int getPrefixLength() {
return prefixLength;
}
/**
* Sets the value of the prefixLength property.
*
*/
public void setPrefixLength(int value) {
this.prefixLength = value;
}
/**
* Gets the value of the gateway property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGateway() {
return gateway;
}
/**
* Sets the value of the gateway property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGateway(String value) {
this.gateway = value;
}
/**
* Gets the value of the deviceName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeviceName() {
return deviceName;
}
/**
* Sets the value of the deviceName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeviceName(String value) {
this.deviceName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy