com.sforce.soap.tooling.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for Name complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Name">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="Alias" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsActive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="LastReferencedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="LastViewedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Profile" type="{urn:tooling.soap.sforce.com}Profile" minOccurs="0"/>
* <element name="ProfileId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="RecordType" type="{urn:tooling.soap.sforce.com}RecordType" minOccurs="0"/>
* <element name="RecordTypeId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="UserRoleId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="Username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Name", propOrder = {
"alias",
"email",
"firstName",
"isActive",
"lastName",
"lastReferencedDate",
"lastViewedDate",
"name",
"phone",
"profile",
"profileId",
"recordType",
"recordTypeId",
"title",
"type",
"userRoleId",
"username"
})
public class Name
extends SObject
{
@XmlElement(name = "Alias", nillable = true)
protected String alias;
@XmlElement(name = "Email", nillable = true)
protected String email;
@XmlElement(name = "FirstName", nillable = true)
protected String firstName;
@XmlElement(name = "IsActive", nillable = true)
protected Boolean isActive;
@XmlElement(name = "LastName", nillable = true)
protected String lastName;
@XmlElement(name = "LastReferencedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastReferencedDate;
@XmlElement(name = "LastViewedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastViewedDate;
@XmlElement(name = "Name", nillable = true)
protected String name;
@XmlElement(name = "Phone", nillable = true)
protected String phone;
@XmlElement(name = "Profile", nillable = true)
protected Profile profile;
@XmlElement(name = "ProfileId", nillable = true)
protected String profileId;
@XmlElement(name = "RecordType", nillable = true)
protected RecordType recordType;
@XmlElement(name = "RecordTypeId", nillable = true)
protected String recordTypeId;
@XmlElement(name = "Title", nillable = true)
protected String title;
@XmlElement(name = "Type", nillable = true)
protected String type;
@XmlElement(name = "UserRoleId", nillable = true)
protected String userRoleId;
@XmlElement(name = "Username", nillable = true)
protected String username;
/**
* Gets the value of the alias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlias() {
return alias;
}
/**
* Sets the value of the alias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlias(String value) {
this.alias = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = 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 isActive property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsActive(Boolean value) {
this.isActive = 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 lastReferencedDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastReferencedDate() {
return lastReferencedDate;
}
/**
* Sets the value of the lastReferencedDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastReferencedDate(XMLGregorianCalendar value) {
this.lastReferencedDate = value;
}
/**
* Gets the value of the lastViewedDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastViewedDate() {
return lastViewedDate;
}
/**
* Sets the value of the lastViewedDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastViewedDate(XMLGregorianCalendar value) {
this.lastViewedDate = 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 phone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhone() {
return phone;
}
/**
* Sets the value of the phone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPhone(String value) {
this.phone = value;
}
/**
* Gets the value of the profile property.
*
* @return
* possible object is
* {@link Profile }
*
*/
public Profile getProfile() {
return profile;
}
/**
* Sets the value of the profile property.
*
* @param value
* allowed object is
* {@link Profile }
*
*/
public void setProfile(Profile value) {
this.profile = value;
}
/**
* Gets the value of the profileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProfileId() {
return profileId;
}
/**
* Sets the value of the profileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProfileId(String value) {
this.profileId = value;
}
/**
* Gets the value of the recordType property.
*
* @return
* possible object is
* {@link RecordType }
*
*/
public RecordType getRecordType() {
return recordType;
}
/**
* Sets the value of the recordType property.
*
* @param value
* allowed object is
* {@link RecordType }
*
*/
public void setRecordType(RecordType value) {
this.recordType = value;
}
/**
* Gets the value of the recordTypeId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRecordTypeId() {
return recordTypeId;
}
/**
* Sets the value of the recordTypeId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRecordTypeId(String value) {
this.recordTypeId = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the userRoleId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserRoleId() {
return userRoleId;
}
/**
* Sets the value of the userRoleId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserRoleId(String value) {
this.userRoleId = 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;
}
}