com.vmware.vim25.NASDatastoreCreatedEvent 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 NASDatastoreCreatedEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NASDatastoreCreatedEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="datastore" type="{urn:vim25}DatastoreEventArgument"/>
* <element name="datastoreUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NASDatastoreCreatedEvent", propOrder = {
"datastore",
"datastoreUrl"
})
public class NASDatastoreCreatedEvent
extends HostEvent
{
@XmlElement(required = true)
protected DatastoreEventArgument datastore;
protected String datastoreUrl;
/**
* Gets the value of the datastore property.
*
* @return
* possible object is
* {@link DatastoreEventArgument }
*
*/
public DatastoreEventArgument getDatastore() {
return datastore;
}
/**
* Sets the value of the datastore property.
*
* @param value
* allowed object is
* {@link DatastoreEventArgument }
*
*/
public void setDatastore(DatastoreEventArgument value) {
this.datastore = value;
}
/**
* Gets the value of the datastoreUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDatastoreUrl() {
return datastoreUrl;
}
/**
* Sets the value of the datastoreUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDatastoreUrl(String value) {
this.datastoreUrl = value;
}
}