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

com.vmware.vim25.ResourceNotAvailable 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.XmlType;


/**
 * 

Java class for ResourceNotAvailable complex type. * *

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

 * <complexType name="ResourceNotAvailable">
 *   <complexContent>
 *     <extension base="{urn:vim25}VimFault">
 *       <sequence>
 *         <element name="containerType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="containerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceNotAvailable", propOrder = { "containerType", "containerName", "type" }) public class ResourceNotAvailable extends VimFault { protected String containerType; protected String containerName; protected String type; /** * Gets the value of the containerType property. * * @return * possible object is * {@link String } * */ public String getContainerType() { return containerType; } /** * Sets the value of the containerType property. * * @param value * allowed object is * {@link String } * */ public void setContainerType(String value) { this.containerType = value; } /** * Gets the value of the containerName property. * * @return * possible object is * {@link String } * */ public String getContainerName() { return containerName; } /** * Sets the value of the containerName property. * * @param value * allowed object is * {@link String } * */ public void setContainerName(String value) { this.containerName = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy