All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VMwareUplinkLacpPolicy Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 VMwareUplinkLacpPolicy complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VMwareUplinkLacpPolicy">
 *   <complexContent>
 *     <extension base="{urn:vim25}InheritablePolicy">
 *       <sequence>
 *         <element name="enable" type="{urn:vim25}BoolPolicy" minOccurs="0"/>
 *         <element name="mode" type="{urn:vim25}StringPolicy" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VMwareUplinkLacpPolicy", propOrder = { "enable", "mode" }) public class VMwareUplinkLacpPolicy extends InheritablePolicy { protected BoolPolicy enable; protected StringPolicy mode; /** * Gets the value of the enable property. * * @return * possible object is * {@link BoolPolicy } * */ public BoolPolicy getEnable() { return enable; } /** * Sets the value of the enable property. * * @param value * allowed object is * {@link BoolPolicy } * */ public void setEnable(BoolPolicy value) { this.enable = value; } /** * Gets the value of the mode property. * * @return * possible object is * {@link StringPolicy } * */ public StringPolicy getMode() { return mode; } /** * Sets the value of the mode property. * * @param value * allowed object is * {@link StringPolicy } * */ public void setMode(StringPolicy value) { this.mode = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy