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

com.vmware.vim.HostInternetScsiHbaIPProperties 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 HostInternetScsiHbaIPProperties complex type. * *

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

 * <complexType name="HostInternetScsiHbaIPProperties">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="mac" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dhcpConfigurationEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="subnetMask" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="defaultGateway" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="primaryDnsServerAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="alternateDnsServerAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostInternetScsiHbaIPProperties", propOrder = { "mac", "address", "dhcpConfigurationEnabled", "subnetMask", "defaultGateway", "primaryDnsServerAddress", "alternateDnsServerAddress" }) public class HostInternetScsiHbaIPProperties extends DynamicData { protected String mac; protected String address; protected boolean dhcpConfigurationEnabled; protected String subnetMask; protected String defaultGateway; protected String primaryDnsServerAddress; protected String alternateDnsServerAddress; /** * Gets the value of the mac property. * * @return * possible object is * {@link String } * */ public String getMac() { return mac; } /** * Sets the value of the mac property. * * @param value * allowed object is * {@link String } * */ public void setMac(String value) { this.mac = value; } /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets the value of the dhcpConfigurationEnabled property. * */ public boolean isDhcpConfigurationEnabled() { return dhcpConfigurationEnabled; } /** * Sets the value of the dhcpConfigurationEnabled property. * */ public void setDhcpConfigurationEnabled(boolean value) { this.dhcpConfigurationEnabled = value; } /** * Gets the value of the subnetMask property. * * @return * possible object is * {@link String } * */ public String getSubnetMask() { return subnetMask; } /** * Sets the value of the subnetMask property. * * @param value * allowed object is * {@link String } * */ public void setSubnetMask(String value) { this.subnetMask = value; } /** * 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 primaryDnsServerAddress property. * * @return * possible object is * {@link String } * */ public String getPrimaryDnsServerAddress() { return primaryDnsServerAddress; } /** * Sets the value of the primaryDnsServerAddress property. * * @param value * allowed object is * {@link String } * */ public void setPrimaryDnsServerAddress(String value) { this.primaryDnsServerAddress = value; } /** * Gets the value of the alternateDnsServerAddress property. * * @return * possible object is * {@link String } * */ public String getAlternateDnsServerAddress() { return alternateDnsServerAddress; } /** * Sets the value of the alternateDnsServerAddress property. * * @param value * allowed object is * {@link String } * */ public void setAlternateDnsServerAddress(String value) { this.alternateDnsServerAddress = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy