com.vmware.vim25.HostConnectInfoNetworkInfo 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostConnectInfoNetworkInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostConnectInfoNetworkInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="summary" type="{urn:vim25}NetworkSummary"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostConnectInfoNetworkInfo", propOrder = {
"summary"
})
@XmlSeeAlso({
HostNewNetworkConnectInfo.class
})
public class HostConnectInfoNetworkInfo
extends DynamicData
{
@XmlElement(required = true)
protected NetworkSummary summary;
/**
* Gets the value of the summary property.
*
* @return
* possible object is
* {@link NetworkSummary }
*
*/
public NetworkSummary getSummary() {
return summary;
}
/**
* Sets the value of the summary property.
*
* @param value
* allowed object is
* {@link NetworkSummary }
*
*/
public void setSummary(NetworkSummary value) {
this.summary = value;
}
}