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

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

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

 * <complexType name="CustomizationUserData">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="orgName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="computerName" type="{urn:vim25}CustomizationName"/>
 *         <element name="productId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomizationUserData", propOrder = { "fullName", "orgName", "computerName", "productId" }) public class CustomizationUserData extends DynamicData { @XmlElement(required = true) protected String fullName; @XmlElement(required = true) protected String orgName; @XmlElement(required = true) protected CustomizationName computerName; @XmlElement(required = true) protected String productId; /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the orgName property. * * @return * possible object is * {@link String } * */ public String getOrgName() { return orgName; } /** * Sets the value of the orgName property. * * @param value * allowed object is * {@link String } * */ public void setOrgName(String value) { this.orgName = value; } /** * Gets the value of the computerName property. * * @return * possible object is * {@link CustomizationName } * */ public CustomizationName getComputerName() { return computerName; } /** * Sets the value of the computerName property. * * @param value * allowed object is * {@link CustomizationName } * */ public void setComputerName(CustomizationName value) { this.computerName = value; } /** * Gets the value of the productId property. * * @return * possible object is * {@link String } * */ public String getProductId() { return productId; } /** * Sets the value of the productId property. * * @param value * allowed object is * {@link String } * */ public void setProductId(String value) { this.productId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy