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

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

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

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

 * <complexType name="InheritablePolicy">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="inherited" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InheritablePolicy", propOrder = { "inherited" }) @XmlSeeAlso({ DVSTrafficShapingPolicy.class, VMwareUplinkLacpPolicy.class, VmwareUplinkPortTeamingPolicy.class, IntPolicy.class, DVSVendorSpecificConfig.class, DvsFilterPolicy.class, DVSFailureCriteria.class, LongPolicy.class, VMwareUplinkPortOrderPolicy.class, VmwareDistributedVirtualSwitchVlanSpec.class, DVSSecurityPolicy.class, DvsFilterConfig.class, StringPolicy.class, BoolPolicy.class }) public class InheritablePolicy extends DynamicData { protected boolean inherited; /** * Gets the value of the inherited property. * */ public boolean isInherited() { return inherited; } /** * Sets the value of the inherited property. * */ public void setInherited(boolean value) { this.inherited = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy