All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim.HostIpRouteConfig Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostIpRouteConfig complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostIpRouteConfig">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="defaultGateway" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="gatewayDevice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostIpRouteConfig", propOrder = { "defaultGateway", "gatewayDevice" }) public class HostIpRouteConfig extends DynamicData { protected String defaultGateway; protected String gatewayDevice; /** * Gets the value of the defaultGateway property. * * @return * possible object is * {@link String } * */ public String getDefaultGateway() { return defaultGateway; } /** * Sets the value of the defaultGateway property. * * @param value * allowed object is * {@link String } * */ public void setDefaultGateway(String value) { this.defaultGateway = value; } /** * Gets the value of the gatewayDevice property. * * @return * possible object is * {@link String } * */ public String getGatewayDevice() { return gatewayDevice; } /** * Sets the value of the gatewayDevice property. * * @param value * allowed object is * {@link String } * */ public void setGatewayDevice(String value) { this.gatewayDevice = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy