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

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


/**
 * 

Java class for VirtualSCSIController complex type. * *

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

 * <complexType name="VirtualSCSIController">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualController">
 *       <sequence>
 *         <element name="hotAddRemove" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sharedBus" type="{urn:vim25}VirtualSCSISharing"/>
 *         <element name="scsiCtlrUnitNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualSCSIController", propOrder = { "hotAddRemove", "sharedBus", "scsiCtlrUnitNumber" }) @XmlSeeAlso({ ParaVirtualSCSIController.class, VirtualBusLogicController.class, VirtualLsiLogicController.class, VirtualLsiLogicSASController.class }) public class VirtualSCSIController extends VirtualController { protected Boolean hotAddRemove; @XmlElement(required = true) @XmlSchemaType(name = "string") protected VirtualSCSISharing sharedBus; protected Integer scsiCtlrUnitNumber; /** * Gets the value of the hotAddRemove property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHotAddRemove() { return hotAddRemove; } /** * Sets the value of the hotAddRemove property. * * @param value * allowed object is * {@link Boolean } * */ public void setHotAddRemove(Boolean value) { this.hotAddRemove = value; } /** * Gets the value of the sharedBus property. * * @return * possible object is * {@link VirtualSCSISharing } * */ public VirtualSCSISharing getSharedBus() { return sharedBus; } /** * Sets the value of the sharedBus property. * * @param value * allowed object is * {@link VirtualSCSISharing } * */ public void setSharedBus(VirtualSCSISharing value) { this.sharedBus = value; } /** * Gets the value of the scsiCtlrUnitNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getScsiCtlrUnitNumber() { return scsiCtlrUnitNumber; } /** * Sets the value of the scsiCtlrUnitNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setScsiCtlrUnitNumber(Integer value) { this.scsiCtlrUnitNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy