![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VAppCloneSpecNetworkMappingPair 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 VAppCloneSpecNetworkMappingPair complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VAppCloneSpecNetworkMappingPair">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="source" type="{urn:vim25}ManagedObjectReference"/>
* <element name="destination" type="{urn:vim25}ManagedObjectReference"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VAppCloneSpecNetworkMappingPair", propOrder = {
"source",
"destination"
})
public class VAppCloneSpecNetworkMappingPair
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference source;
@XmlElement(required = true)
protected ManagedObjectReference destination;
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setSource(ManagedObjectReference value) {
this.source = value;
}
/**
* Gets the value of the destination property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getDestination() {
return destination;
}
/**
* Sets the value of the destination property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setDestination(ManagedObjectReference value) {
this.destination = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy