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

com.vmware.vim25.VmCloneFailedEvent 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VmCloneFailedEvent complex type. * *

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

 * <complexType name="VmCloneFailedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}VmCloneEvent">
 *       <sequence>
 *         <element name="destFolder" type="{urn:vim25}FolderEventArgument"/>
 *         <element name="destName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="destHost" type="{urn:vim25}HostEventArgument"/>
 *         <element name="reason" type="{urn:vim25}LocalizedMethodFault"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmCloneFailedEvent", propOrder = { "destFolder", "destName", "destHost", "reason" }) public class VmCloneFailedEvent extends VmCloneEvent { @XmlElement(required = true) protected FolderEventArgument destFolder; @XmlElement(required = true) protected String destName; @XmlElement(required = true) protected HostEventArgument destHost; @XmlElement(required = true) protected LocalizedMethodFault reason; /** * Gets the value of the destFolder property. * * @return * possible object is * {@link FolderEventArgument } * */ public FolderEventArgument getDestFolder() { return destFolder; } /** * Sets the value of the destFolder property. * * @param value * allowed object is * {@link FolderEventArgument } * */ public void setDestFolder(FolderEventArgument value) { this.destFolder = value; } /** * Gets the value of the destName property. * * @return * possible object is * {@link String } * */ public String getDestName() { return destName; } /** * Sets the value of the destName property. * * @param value * allowed object is * {@link String } * */ public void setDestName(String value) { this.destName = value; } /** * Gets the value of the destHost property. * * @return * possible object is * {@link HostEventArgument } * */ public HostEventArgument getDestHost() { return destHost; } /** * Sets the value of the destHost property. * * @param value * allowed object is * {@link HostEventArgument } * */ public void setDestHost(HostEventArgument value) { this.destHost = value; } /** * Gets the value of the reason property. * * @return * possible object is * {@link LocalizedMethodFault } * */ public LocalizedMethodFault getReason() { return reason; } /** * Sets the value of the reason property. * * @param value * allowed object is * {@link LocalizedMethodFault } * */ public void setReason(LocalizedMethodFault value) { this.reason = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy