![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.NasConnectionLimitReached Maven / Gradle / Ivy
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 NasConnectionLimitReached complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NasConnectionLimitReached">
* <complexContent>
* <extension base="{urn:vim25}NasConfigFault">
* <sequence>
* <element name="remoteHost" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="remotePath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NasConnectionLimitReached", propOrder = {
"remoteHost",
"remotePath"
})
public class NasConnectionLimitReached
extends NasConfigFault
{
@XmlElement(required = true)
protected String remoteHost;
@XmlElement(required = true)
protected String remotePath;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy