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

com.vmware.vim25.ManagedObjectNotFound 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 ManagedObjectNotFound complex type. * *

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

 * <complexType name="ManagedObjectNotFound">
 *   <complexContent>
 *     <extension base="{urn:vim25}RuntimeFault">
 *       <sequence>
 *         <element name="obj" type="{urn:vim25}ManagedObjectReference"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ManagedObjectNotFound", propOrder = { "obj" }) public class ManagedObjectNotFound extends RuntimeFault { @XmlElement(required = true) protected ManagedObjectReference obj; /** * Gets the value of the obj property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getObj() { return obj; } /** * Sets the value of the obj property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setObj(ManagedObjectReference value) { this.obj = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy