
com.vmware.vim.HostNetOffloadCapabilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
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 HostNetOffloadCapabilities complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostNetOffloadCapabilities">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="csumOffload" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="tcpSegmentation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="zeroCopyXmit" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostNetOffloadCapabilities", propOrder = {
"csumOffload",
"tcpSegmentation",
"zeroCopyXmit"
})
public class HostNetOffloadCapabilities
extends DynamicData
{
protected Boolean csumOffload;
protected Boolean tcpSegmentation;
protected Boolean zeroCopyXmit;
/**
* Gets the value of the csumOffload property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCsumOffload() {
return csumOffload;
}
/**
* Sets the value of the csumOffload property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCsumOffload(Boolean value) {
this.csumOffload = value;
}
/**
* Gets the value of the tcpSegmentation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTcpSegmentation() {
return tcpSegmentation;
}
/**
* Sets the value of the tcpSegmentation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTcpSegmentation(Boolean value) {
this.tcpSegmentation = value;
}
/**
* Gets the value of the zeroCopyXmit property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isZeroCopyXmit() {
return zeroCopyXmit;
}
/**
* Sets the value of the zeroCopyXmit property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setZeroCopyXmit(Boolean value) {
this.zeroCopyXmit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy