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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
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 VirtualMachineUsbInfo complex type. * *

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

 * <complexType name="VirtualMachineUsbInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualMachineTargetInfo">
 *       <sequence>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="vendor" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="product" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="physicalPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="family" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="speed" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="summary" type="{urn:vim25}VirtualMachineSummary" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualMachineUsbInfo", propOrder = { "description", "vendor", "product", "physicalPath", "family", "speed", "summary" }) public class VirtualMachineUsbInfo extends VirtualMachineTargetInfo { @XmlElement(required = true) protected String description; protected int vendor; protected int product; @XmlElement(required = true) protected String physicalPath; protected List family; protected List speed; protected VirtualMachineSummary summary; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the vendor property. * */ public int getVendor() { return vendor; } /** * Sets the value of the vendor property. * */ public void setVendor(int value) { this.vendor = value; } /** * Gets the value of the product property. * */ public int getProduct() { return product; } /** * Sets the value of the product property. * */ public void setProduct(int value) { this.product = value; } /** * Gets the value of the physicalPath property. * * @return * possible object is * {@link String } * */ public String getPhysicalPath() { return physicalPath; } /** * Sets the value of the physicalPath property. * * @param value * allowed object is * {@link String } * */ public void setPhysicalPath(String value) { this.physicalPath = value; } /** * Gets the value of the family property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the family property. * *

* For example, to add a new item, do as follows: *

     *    getFamily().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getFamily() { if (family == null) { family = new ArrayList(); } return this.family; } /** * Gets the value of the speed property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the speed property. * *

* For example, to add a new item, do as follows: *

     *    getSpeed().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSpeed() { if (speed == null) { speed = new ArrayList(); } return this.speed; } /** * Gets the value of the summary property. * * @return * possible object is * {@link VirtualMachineSummary } * */ public VirtualMachineSummary getSummary() { return summary; } /** * Sets the value of the summary property. * * @param value * allowed object is * {@link VirtualMachineSummary } * */ public void setSummary(VirtualMachineSummary value) { this.summary = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy