com.vmware.vim25.PosixUserSearchResult 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 PosixUserSearchResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PosixUserSearchResult">
* <complexContent>
* <extension base="{urn:vim25}UserSearchResult">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="shellAccess" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PosixUserSearchResult", propOrder = {
"id",
"shellAccess"
})
public class PosixUserSearchResult
extends UserSearchResult
{
protected int id;
protected Boolean shellAccess;
/**
* Gets the value of the id property.
*
*/
public int getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(int value) {
this.id = 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;
}
}