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

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

There is a newer version: 0.6.60
Show 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 GuestRegValueSpec complex type. * *

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

 * <complexType name="GuestRegValueSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="name" type="{urn:vim25}GuestRegValueNameSpec"/>
 *         <element name="data" type="{urn:vim25}GuestRegValueDataSpec"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestRegValueSpec", propOrder = { "name", "data" }) public class GuestRegValueSpec extends DynamicData { @XmlElement(required = true) protected GuestRegValueNameSpec name; @XmlElement(required = true) protected GuestRegValueDataSpec data; /** * Gets the value of the name property. * * @return * possible object is * {@link GuestRegValueNameSpec } * */ public GuestRegValueNameSpec getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link GuestRegValueNameSpec } * */ public void setName(GuestRegValueNameSpec value) { this.name = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link GuestRegValueDataSpec } * */ public GuestRegValueDataSpec getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link GuestRegValueDataSpec } * */ public void setData(GuestRegValueDataSpec value) { this.data = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy