![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiHbaIPProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vijava Show documentation
Show all versions of vijava Show documentation
Java API for accessing VMWare web services API
/*================================================================================
Copyright (c) 2012 Steve Jin. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/
package com.vmware.vim25;
/**
* @author Steve Jin (http://www.doublecloud.org)
* @version 5.1
*/
@SuppressWarnings("all")
public class HostInternetScsiHbaIPProperties extends DynamicData {
public String mac;
public String address;
public boolean dhcpConfigurationEnabled;
public String subnetMask;
public String defaultGateway;
public String primaryDnsServerAddress;
public String alternateDnsServerAddress;
public String ipv6Address;
public String ipv6SubnetMask;
public String ipv6DefaultGateway;
public Boolean arpRedirectEnabled;
public Integer mtu;
public Boolean jumboFramesEnabled;
public String getMac() {
return this.mac;
}
public String getAddress() {
return this.address;
}
public boolean isDhcpConfigurationEnabled() {
return this.dhcpConfigurationEnabled;
}
public String getSubnetMask() {
return this.subnetMask;
}
public String getDefaultGateway() {
return this.defaultGateway;
}
public String getPrimaryDnsServerAddress() {
return this.primaryDnsServerAddress;
}
public String getAlternateDnsServerAddress() {
return this.alternateDnsServerAddress;
}
public String getIpv6Address() {
return this.ipv6Address;
}
public String getIpv6SubnetMask() {
return this.ipv6SubnetMask;
}
public String getIpv6DefaultGateway() {
return this.ipv6DefaultGateway;
}
public Boolean getArpRedirectEnabled() {
return this.arpRedirectEnabled;
}
public Integer getMtu() {
return this.mtu;
}
public Boolean getJumboFramesEnabled() {
return this.jumboFramesEnabled;
}
public void setMac(String mac) {
this.mac=mac;
}
public void setAddress(String address) {
this.address=address;
}
public void setDhcpConfigurationEnabled(boolean dhcpConfigurationEnabled) {
this.dhcpConfigurationEnabled=dhcpConfigurationEnabled;
}
public void setSubnetMask(String subnetMask) {
this.subnetMask=subnetMask;
}
public void setDefaultGateway(String defaultGateway) {
this.defaultGateway=defaultGateway;
}
public void setPrimaryDnsServerAddress(String primaryDnsServerAddress) {
this.primaryDnsServerAddress=primaryDnsServerAddress;
}
public void setAlternateDnsServerAddress(String alternateDnsServerAddress) {
this.alternateDnsServerAddress=alternateDnsServerAddress;
}
public void setIpv6Address(String ipv6Address) {
this.ipv6Address=ipv6Address;
}
public void setIpv6SubnetMask(String ipv6SubnetMask) {
this.ipv6SubnetMask=ipv6SubnetMask;
}
public void setIpv6DefaultGateway(String ipv6DefaultGateway) {
this.ipv6DefaultGateway=ipv6DefaultGateway;
}
public void setArpRedirectEnabled(Boolean arpRedirectEnabled) {
this.arpRedirectEnabled=arpRedirectEnabled;
}
public void setMtu(Integer mtu) {
this.mtu=mtu;
}
public void setJumboFramesEnabled(Boolean jumboFramesEnabled) {
this.jumboFramesEnabled=jumboFramesEnabled;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy