
com.vmware.vim25.DVPortSetting 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.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DVPortSetting complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DVPortSetting">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="blocked" type="{urn:vim25}BoolPolicy" minOccurs="0"/>
* <element name="inShapingPolicy" type="{urn:vim25}DVSTrafficShapingPolicy" minOccurs="0"/>
* <element name="outShapingPolicy" type="{urn:vim25}DVSTrafficShapingPolicy" minOccurs="0"/>
* <element name="vendorSpecificConfig" type="{urn:vim25}DVSVendorSpecificConfig" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DVPortSetting", propOrder = {
"blocked",
"inShapingPolicy",
"outShapingPolicy",
"vendorSpecificConfig"
})
@XmlSeeAlso({
VMwareDVSPortSetting.class
})
public class DVPortSetting
extends DynamicData
{
protected BoolPolicy blocked;
protected DVSTrafficShapingPolicy inShapingPolicy;
protected DVSTrafficShapingPolicy outShapingPolicy;
protected DVSVendorSpecificConfig vendorSpecificConfig;
/**
* Gets the value of the blocked property.
*
* @return
* possible object is
* {@link BoolPolicy }
*
*/
public BoolPolicy getBlocked() {
return blocked;
}
/**
* Sets the value of the blocked property.
*
* @param value
* allowed object is
* {@link BoolPolicy }
*
*/
public void setBlocked(BoolPolicy value) {
this.blocked = value;
}
/**
* Gets the value of the inShapingPolicy property.
*
* @return
* possible object is
* {@link DVSTrafficShapingPolicy }
*
*/
public DVSTrafficShapingPolicy getInShapingPolicy() {
return inShapingPolicy;
}
/**
* Sets the value of the inShapingPolicy property.
*
* @param value
* allowed object is
* {@link DVSTrafficShapingPolicy }
*
*/
public void setInShapingPolicy(DVSTrafficShapingPolicy value) {
this.inShapingPolicy = value;
}
/**
* Gets the value of the outShapingPolicy property.
*
* @return
* possible object is
* {@link DVSTrafficShapingPolicy }
*
*/
public DVSTrafficShapingPolicy getOutShapingPolicy() {
return outShapingPolicy;
}
/**
* Sets the value of the outShapingPolicy property.
*
* @param value
* allowed object is
* {@link DVSTrafficShapingPolicy }
*
*/
public void setOutShapingPolicy(DVSTrafficShapingPolicy value) {
this.outShapingPolicy = value;
}
/**
* Gets the value of the vendorSpecificConfig property.
*
* @return
* possible object is
* {@link DVSVendorSpecificConfig }
*
*/
public DVSVendorSpecificConfig getVendorSpecificConfig() {
return vendorSpecificConfig;
}
/**
* Sets the value of the vendorSpecificConfig property.
*
* @param value
* allowed object is
* {@link DVSVendorSpecificConfig }
*
*/
public void setVendorSpecificConfig(DVSVendorSpecificConfig value) {
this.vendorSpecificConfig = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy