All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.User Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 User complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="User">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="DelegatedUsers" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *         <element name="FirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ManagedUsers" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="UserEntityAccessRights" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *         <element name="UserFieldAccessRights" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *         <element name="UserPreferences" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *         <element name="Username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="WorkspaceId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "User", propOrder = { "delegatedUsers", "firstName", "lastName", "managedUsers", "name", "userEntityAccessRights", "userFieldAccessRights", "userPreferences", "username", "workspaceId" }) public class User extends SObject { @XmlElement(name = "DelegatedUsers", nillable = true) protected QueryResult delegatedUsers; @XmlElement(name = "FirstName", nillable = true) protected String firstName; @XmlElement(name = "LastName", nillable = true) protected String lastName; @XmlElement(name = "ManagedUsers", nillable = true) protected QueryResult managedUsers; @XmlElement(name = "Name", nillable = true) protected String name; @XmlElement(name = "UserEntityAccessRights", nillable = true) protected QueryResult userEntityAccessRights; @XmlElement(name = "UserFieldAccessRights", nillable = true) protected QueryResult userFieldAccessRights; @XmlElement(name = "UserPreferences", nillable = true) protected QueryResult userPreferences; @XmlElement(name = "Username", nillable = true) protected String username; @XmlElement(name = "WorkspaceId", nillable = true) protected String workspaceId; /** * Gets the value of the delegatedUsers property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getDelegatedUsers() { return delegatedUsers; } /** * Sets the value of the delegatedUsers property. * * @param value * allowed object is * {@link QueryResult } * */ public void setDelegatedUsers(QueryResult value) { this.delegatedUsers = value; } /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the managedUsers property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getManagedUsers() { return managedUsers; } /** * Sets the value of the managedUsers property. * * @param value * allowed object is * {@link QueryResult } * */ public void setManagedUsers(QueryResult value) { this.managedUsers = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the userEntityAccessRights property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getUserEntityAccessRights() { return userEntityAccessRights; } /** * Sets the value of the userEntityAccessRights property. * * @param value * allowed object is * {@link QueryResult } * */ public void setUserEntityAccessRights(QueryResult value) { this.userEntityAccessRights = value; } /** * Gets the value of the userFieldAccessRights property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getUserFieldAccessRights() { return userFieldAccessRights; } /** * Sets the value of the userFieldAccessRights property. * * @param value * allowed object is * {@link QueryResult } * */ public void setUserFieldAccessRights(QueryResult value) { this.userFieldAccessRights = value; } /** * Gets the value of the userPreferences property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getUserPreferences() { return userPreferences; } /** * Sets the value of the userPreferences property. * * @param value * allowed object is * {@link QueryResult } * */ public void setUserPreferences(QueryResult value) { this.userPreferences = 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 workspaceId property. * * @return * possible object is * {@link String } * */ public String getWorkspaceId() { return workspaceId; } /** * Sets the value of the workspaceId property. * * @param value * allowed object is * {@link String } * */ public void setWorkspaceId(String value) { this.workspaceId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy