![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostPosixAccountSpec 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 HostPosixAccountSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostPosixAccountSpec">
* <complexContent>
* <extension base="{urn:vim25}HostAccountSpec">
* <sequence>
* <element name="posixId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="shellAccess" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostPosixAccountSpec", propOrder = {
"posixId",
"shellAccess"
})
public class HostPosixAccountSpec
extends HostAccountSpec
{
protected Integer posixId;
protected Boolean shellAccess;
/**
* Gets the value of the posixId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPosixId() {
return posixId;
}
/**
* Sets the value of the posixId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPosixId(Integer value) {
this.posixId = value;
}
/**
* Gets the value of the shellAccess property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShellAccess() {
return shellAccess;
}
/**
* Sets the value of the shellAccess property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShellAccess(Boolean value) {
this.shellAccess = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy