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

com.vmware.vim25.BatchResult Maven / Gradle / Ivy

The 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 BatchResult complex type. * *

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

 * <complexType name="BatchResult">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="result" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="hostKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ds" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="fault" type="{urn:vim25}LocalizedMethodFault" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BatchResult", propOrder = { "result", "hostKey", "ds", "fault" }) public class BatchResult extends DynamicData { @XmlElement(required = true) protected String result; @XmlElement(required = true) protected String hostKey; protected ManagedObjectReference ds; protected LocalizedMethodFault fault; /** * Gets the value of the result property. * * @return * possible object is * {@link String } * */ public String getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link String } * */ public void setResult(String value) { this.result = value; } /** * Gets the value of the hostKey property. * * @return * possible object is * {@link String } * */ public String getHostKey() { return hostKey; } /** * Sets the value of the hostKey property. * * @param value * allowed object is * {@link String } * */ public void setHostKey(String value) { this.hostKey = value; } /** * Gets the value of the ds property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getDs() { return ds; } /** * Sets the value of the ds property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setDs(ManagedObjectReference value) { this.ds = value; } /** * Gets the value of the fault property. * * @return * possible object is * {@link LocalizedMethodFault } * */ public LocalizedMethodFault getFault() { return fault; } /** * Sets the value of the fault property. * * @param value * allowed object is * {@link LocalizedMethodFault } * */ public void setFault(LocalizedMethodFault value) { this.fault = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy