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

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


/**
 * 

Java class for HostHostBusAdapter complex type. * *

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

 * <complexType name="HostHostBusAdapter">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="device" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="bus" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="driver" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pci" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostHostBusAdapter", propOrder = { "key", "device", "bus", "status", "model", "driver", "pci" }) @XmlSeeAlso({ HostParallelScsiHba.class, HostSerialAttachedHba.class, HostBlockHba.class, HostInternetScsiHba.class, HostFibreChannelHba.class }) public class HostHostBusAdapter extends DynamicData { protected String key; @XmlElement(required = true) protected String device; protected int bus; @XmlElement(required = true) protected String status; @XmlElement(required = true) protected String model; protected String driver; protected String pci; /** * 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 device property. * * @return * possible object is * {@link String } * */ public String getDevice() { return device; } /** * Sets the value of the device property. * * @param value * allowed object is * {@link String } * */ public void setDevice(String value) { this.device = value; } /** * Gets the value of the bus property. * */ public int getBus() { return bus; } /** * Sets the value of the bus property. * */ public void setBus(int value) { this.bus = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the model property. * * @return * possible object is * {@link String } * */ public String getModel() { return model; } /** * Sets the value of the model property. * * @param value * allowed object is * {@link String } * */ public void setModel(String value) { this.model = value; } /** * Gets the value of the driver property. * * @return * possible object is * {@link String } * */ public String getDriver() { return driver; } /** * Sets the value of the driver property. * * @param value * allowed object is * {@link String } * */ public void setDriver(String value) { this.driver = value; } /** * Gets the value of the pci property. * * @return * possible object is * {@link String } * */ public String getPci() { return pci; } /** * Sets the value of the pci property. * * @param value * allowed object is * {@link String } * */ public void setPci(String value) { this.pci = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy