com.vmware.vim25.DistributedVirtualSwitchManagerHostContainer 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.XmlType;
/**
* Java class for DistributedVirtualSwitchManagerHostContainer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DistributedVirtualSwitchManagerHostContainer">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="container" type="{urn:vim25}ManagedObjectReference"/>
* <element name="recursive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DistributedVirtualSwitchManagerHostContainer", propOrder = {
"container",
"recursive"
})
public class DistributedVirtualSwitchManagerHostContainer
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference container;
protected boolean recursive;
/**
* Gets the value of the container property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getContainer() {
return container;
}
/**
* Sets the value of the container property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setContainer(ManagedObjectReference value) {
this.container = value;
}
/**
* Gets the value of the recursive property.
*
*/
public boolean isRecursive() {
return recursive;
}
/**
* Sets the value of the recursive property.
*
*/
public void setRecursive(boolean value) {
this.recursive = value;
}
}