com.vmware.vim25.DatacenterMismatchArgument 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 DatacenterMismatchArgument complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DatacenterMismatchArgument">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="entity" type="{urn:vim25}ManagedObjectReference"/>
* <element name="inputDatacenter" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DatacenterMismatchArgument", propOrder = {
"entity",
"inputDatacenter"
})
public class DatacenterMismatchArgument
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference entity;
protected ManagedObjectReference inputDatacenter;
/**
* Gets the value of the entity property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getEntity() {
return entity;
}
/**
* Sets the value of the entity property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setEntity(ManagedObjectReference value) {
this.entity = value;
}
/**
* Gets the value of the inputDatacenter property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getInputDatacenter() {
return inputDatacenter;
}
/**
* Sets the value of the inputDatacenter property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setInputDatacenter(ManagedObjectReference value) {
this.inputDatacenter = value;
}
}