![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiHbaParamValue Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostInternetScsiHbaParamValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiHbaParamValue">
* <complexContent>
* <extension base="{urn:vim25}OptionValue">
* <sequence>
* <element name="isInherited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiHbaParamValue", propOrder = {
"isInherited"
})
public class HostInternetScsiHbaParamValue
extends OptionValue
{
protected Boolean isInherited;
/**
* Gets the value of the isInherited property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsInherited() {
return isInherited;
}
/**
* Sets the value of the isInherited property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsInherited(Boolean value) {
this.isInherited = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy