![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DatastoreFileEvent 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DatastoreFileEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DatastoreFileEvent">
* <complexContent>
* <extension base="{urn:vim25}DatastoreEvent">
* <sequence>
* <element name="targetFile" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sourceOfOperation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="succeeded" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DatastoreFileEvent", propOrder = {
"targetFile",
"sourceOfOperation",
"succeeded"
})
@XmlSeeAlso({
DatastoreFileCopiedEvent.class,
DatastoreFileMovedEvent.class,
DatastoreFileDeletedEvent.class
})
public class DatastoreFileEvent
extends DatastoreEvent
{
@XmlElement(required = true)
protected String targetFile;
protected String sourceOfOperation;
protected Boolean succeeded;
/**
* Gets the value of the targetFile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetFile() {
return targetFile;
}
/**
* Sets the value of the targetFile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetFile(String value) {
this.targetFile = value;
}
/**
* Gets the value of the sourceOfOperation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSourceOfOperation() {
return sourceOfOperation;
}
/**
* Sets the value of the sourceOfOperation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSourceOfOperation(String value) {
this.sourceOfOperation = value;
}
/**
* Gets the value of the succeeded property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSucceeded() {
return succeeded;
}
/**
* Sets the value of the succeeded property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSucceeded(Boolean value) {
this.succeeded = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy