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

com.vmware.vim25.CustomizationLicenseFilePrintData 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CustomizationLicenseFilePrintData complex type. * *

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

 * <complexType name="CustomizationLicenseFilePrintData">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="autoMode" type="{urn:vim25}CustomizationLicenseDataMode"/>
 *         <element name="autoUsers" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomizationLicenseFilePrintData", propOrder = { "autoMode", "autoUsers" }) public class CustomizationLicenseFilePrintData extends DynamicData { @XmlElement(required = true) @XmlSchemaType(name = "string") protected CustomizationLicenseDataMode autoMode; protected Integer autoUsers; /** * Gets the value of the autoMode property. * * @return * possible object is * {@link CustomizationLicenseDataMode } * */ public CustomizationLicenseDataMode getAutoMode() { return autoMode; } /** * Sets the value of the autoMode property. * * @param value * allowed object is * {@link CustomizationLicenseDataMode } * */ public void setAutoMode(CustomizationLicenseDataMode value) { this.autoMode = value; } /** * Gets the value of the autoUsers property. * * @return * possible object is * {@link Integer } * */ public Integer getAutoUsers() { return autoUsers; } /** * Sets the value of the autoUsers property. * * @param value * allowed object is * {@link Integer } * */ public void setAutoUsers(Integer value) { this.autoUsers = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy