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

com.vmware.pbm.PbmServerObjectRef Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.pbm;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;


/**
 * 

Java class for PbmServerObjectRef complex type. * *

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

 * <complexType name="PbmServerObjectRef">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="objectType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serverUuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PbmServerObjectRef", propOrder = { "objectType", "key", "serverUuid" }) public class PbmServerObjectRef extends DynamicData { @XmlElement(required = true) protected String objectType; @XmlElement(required = true) protected String key; protected String serverUuid; /** * Gets the value of the objectType property. * * @return * possible object is * {@link String } * */ public String getObjectType() { return objectType; } /** * Sets the value of the objectType property. * * @param value * allowed object is * {@link String } * */ public void setObjectType(String value) { this.objectType = value; } /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the serverUuid property. * * @return * possible object is * {@link String } * */ public String getServerUuid() { return serverUuid; } /** * Sets the value of the serverUuid property. * * @param value * allowed object is * {@link String } * */ public void setServerUuid(String value) { this.serverUuid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy