
com.vmware.vim25.HostNasVolumeSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The 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.XmlType;
/**
* Java class for HostNasVolumeSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostNasVolumeSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="remoteHost" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="remotePath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="localPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accessMode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostNasVolumeSpec", propOrder = {
"remoteHost",
"remotePath",
"localPath",
"accessMode",
"type",
"userName",
"password"
})
public class HostNasVolumeSpec
extends DynamicData
{
@XmlElement(required = true)
protected String remoteHost;
@XmlElement(required = true)
protected String remotePath;
@XmlElement(required = true)
protected String localPath;
@XmlElement(required = true)
protected String accessMode;
protected String type;
protected String userName;
protected String password;
/**
* Gets the value of the remoteHost property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRemoteHost() {
return remoteHost;
}
/**
* Sets the value of the remoteHost property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRemoteHost(String value) {
this.remoteHost = value;
}
/**
* Gets the value of the remotePath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRemotePath() {
return remotePath;
}
/**
* Sets the value of the remotePath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRemotePath(String value) {
this.remotePath = value;
}
/**
* Gets the value of the localPath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalPath() {
return localPath;
}
/**
* Sets the value of the localPath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalPath(String value) {
this.localPath = value;
}
/**
* Gets the value of the accessMode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccessMode() {
return accessMode;
}
/**
* Sets the value of the accessMode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccessMode(String value) {
this.accessMode = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserName(String value) {
this.userName = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy