com.vmware.vim25.HostNetworkSecurityPolicy Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostNetworkSecurityPolicy complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostNetworkSecurityPolicy">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="allowPromiscuous" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="macChanges" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="forgedTransmits" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostNetworkSecurityPolicy", propOrder = {
"allowPromiscuous",
"macChanges",
"forgedTransmits"
})
public class HostNetworkSecurityPolicy
extends DynamicData
{
protected Boolean allowPromiscuous;
protected Boolean macChanges;
protected Boolean forgedTransmits;
/**
* Gets the value of the allowPromiscuous property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAllowPromiscuous() {
return allowPromiscuous;
}
/**
* Sets the value of the allowPromiscuous property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAllowPromiscuous(Boolean value) {
this.allowPromiscuous = value;
}
/**
* Gets the value of the macChanges property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMacChanges() {
return macChanges;
}
/**
* Sets the value of the macChanges property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMacChanges(Boolean value) {
this.macChanges = value;
}
/**
* Gets the value of the forgedTransmits property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isForgedTransmits() {
return forgedTransmits;
}
/**
* Sets the value of the forgedTransmits property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setForgedTransmits(Boolean value) {
this.forgedTransmits = value;
}
}