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

com.vmware.vim.HostInternetScsiHbaAuthenticationProperties Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostInternetScsiHbaAuthenticationProperties complex type. * *

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

 * <complexType name="HostInternetScsiHbaAuthenticationProperties">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="chapAuthEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="chapName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="chapSecret" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostInternetScsiHbaAuthenticationProperties", propOrder = { "chapAuthEnabled", "chapName", "chapSecret" }) public class HostInternetScsiHbaAuthenticationProperties extends DynamicData { protected boolean chapAuthEnabled; protected String chapName; protected String chapSecret; /** * Gets the value of the chapAuthEnabled property. * */ public boolean isChapAuthEnabled() { return chapAuthEnabled; } /** * Sets the value of the chapAuthEnabled property. * */ public void setChapAuthEnabled(boolean value) { this.chapAuthEnabled = value; } /** * Gets the value of the chapName property. * * @return * possible object is * {@link String } * */ public String getChapName() { return chapName; } /** * Sets the value of the chapName property. * * @param value * allowed object is * {@link String } * */ public void setChapName(String value) { this.chapName = value; } /** * Gets the value of the chapSecret property. * * @return * possible object is * {@link String } * */ public String getChapSecret() { return chapSecret; } /** * Sets the value of the chapSecret property. * * @param value * allowed object is * {@link String } * */ public void setChapSecret(String value) { this.chapSecret = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy