com.vmware.vim25.UserSearchResult 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for UserSearchResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UserSearchResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="principal" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="group" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserSearchResult", propOrder = {
"principal",
"fullName",
"group"
})
@XmlSeeAlso({
PosixUserSearchResult.class
})
public class UserSearchResult
extends DynamicData
{
@XmlElement(required = true)
protected String principal;
protected String fullName;
protected boolean group;
/**
* Gets the value of the principal property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrincipal() {
return principal;
}
/**
* Sets the value of the principal property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrincipal(String value) {
this.principal = value;
}
/**
* Gets the value of the fullName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullName() {
return fullName;
}
/**
* Sets the value of the fullName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullName(String value) {
this.fullName = value;
}
/**
* Gets the value of the group property.
*
*/
public boolean isGroup() {
return group;
}
/**
* Sets the value of the group property.
*
*/
public void setGroup(boolean value) {
this.group = value;
}
}