@salesforcedevs/docs-components 0.3.11 → 0.3.14-banner-alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lwc.config.json +12 -3
- package/package.json +17 -7
- package/src/modules/README.md +41 -0
- package/src/modules/doc/amfReference/amfReference.css +5 -0
- package/src/modules/doc/amfReference/amfReference.html +47 -0
- package/src/modules/doc/amfReference/amfReference.ts +1361 -0
- package/src/modules/doc/amfReference/constants.ts +76 -0
- package/src/modules/doc/amfReference/types.ts +133 -0
- package/src/modules/doc/amfReference/utils.ts +669 -0
- package/src/modules/doc/amfTopic/amfTopic.css +1 -0
- package/src/modules/doc/amfTopic/amfTopic.html +3 -0
- package/src/modules/doc/amfTopic/amfTopic.ts +94 -0
- package/src/modules/doc/amfTopic/types.ts +54 -0
- package/src/modules/doc/amfTopic/utils.ts +130 -0
- package/src/modules/doc/breadcrumbItem/breadcrumbItem.css +51 -0
- package/src/modules/doc/breadcrumbItem/breadcrumbItem.html +5 -0
- package/src/modules/doc/breadcrumbItem/breadcrumbItem.ts +64 -0
- package/src/modules/doc/breadcrumbs/breadcrumbs.css +27 -0
- package/src/modules/doc/breadcrumbs/breadcrumbs.html +60 -0
- package/src/modules/doc/breadcrumbs/breadcrumbs.ts +187 -0
- package/src/modules/doc/content/content.css +58 -102
- package/src/modules/doc/content/content.ts +261 -174
- package/src/modules/doc/contentCallout/contentCallout.css +7 -24
- package/src/modules/doc/contentCallout/contentCallout.html +4 -2
- package/src/modules/doc/contentCallout/contentCallout.ts +8 -2
- package/src/modules/doc/contentLayout/contentLayout.css +98 -0
- package/src/modules/doc/contentLayout/contentLayout.html +51 -0
- package/src/modules/doc/contentLayout/contentLayout.ts +322 -0
- package/src/modules/doc/header/header.css +103 -0
- package/src/modules/doc/header/header.html +160 -0
- package/src/modules/doc/header/header.ts +146 -0
- package/src/modules/doc/heading/heading.css +54 -0
- package/src/modules/doc/heading/heading.html +14 -0
- package/src/modules/doc/heading/heading.ts +65 -0
- package/src/modules/doc/headingAnchor/headingAnchor.css +33 -0
- package/src/modules/doc/headingAnchor/headingAnchor.html +19 -0
- package/src/modules/doc/headingAnchor/headingAnchor.ts +43 -0
- package/src/modules/doc/headingContent/headingContent.css +53 -0
- package/src/modules/doc/headingContent/headingContent.html +13 -0
- package/src/modules/doc/headingContent/headingContent.ts +30 -0
- package/src/modules/doc/phase/phase.css +55 -0
- package/src/modules/doc/phase/phase.html +28 -0
- package/src/modules/doc/phase/phase.ts +57 -0
- package/src/modules/doc/sprigSurvey/sprigSurvey.html +20 -0
- package/src/modules/doc/sprigSurvey/sprigSurvey.scoped.css +12 -0
- package/src/modules/doc/sprigSurvey/sprigSurvey.ts +16 -0
- package/src/modules/doc/toc/toc.html +3 -1
- package/src/modules/doc/toolbar/toolbar.ts +6 -6
- package/src/modules/doc/xmlContent/types.ts +114 -0
- package/src/modules/doc/xmlContent/utils.ts +161 -0
- package/src/modules/doc/xmlContent/xmlContent.css +32 -0
- package/src/modules/doc/xmlContent/xmlContent.html +40 -0
- package/src/modules/doc/xmlContent/xmlContent.ts +677 -0
- package/src/modules/docBaseElements/lightningElementWithState/lightningElementWithState.ts +93 -0
- package/src/modules/docHelpers/amfStyle/amfStyle.css +355 -0
- package/src/modules/docHelpers/phaseContentLayout/phaseContentLayout.css +39 -0
- package/src/modules/docHelpers/status/status.css +22 -0
- package/src/modules/docUtils/SearchSyncer/SearchSyncer.ts +85 -0
- package/LICENSE +0 -12
- package/src/modules/doc/container/__benchmarks__/container.benchmark.js +0 -43
- package/src/modules/doc/container/__mocks__/mockAvailableLanguages.js +0 -8
- package/src/modules/doc/container/__mocks__/mockAvailableVersions.js +0 -122
- package/src/modules/doc/container/__mocks__/mockContentFetchResponse.json +0 -5
- package/src/modules/doc/container/__mocks__/mockDocContent.js +0 -29
- package/src/modules/doc/container/__mocks__/mockNavigationFetchResponse.json +0 -4061
- package/src/modules/doc/container/__mocks__/mockPageReference.js +0 -8
- package/src/modules/doc/container/__mocks__/mockPdfUrl.js +0 -1
- package/src/modules/doc/container/__mocks__/mockSelectedLanguage.js +0 -8
- package/src/modules/doc/container/__mocks__/mockSelectedVersion.js +0 -8
- package/src/modules/doc/container/__mocks__/mockToc.js +0 -146
- package/src/modules/doc/container/__tests__/container.test.ts +0 -117
- package/src/modules/doc/container/container.css +0 -37
- package/src/modules/doc/container/container.html +0 -28
- package/src/modules/doc/container/container.stories.ts +0 -44
- package/src/modules/doc/container/container.ts +0 -367
- package/src/modules/doc/content/__tests__/content.test.ts +0 -99
- package/src/modules/doc/content/__tests__/mockDocContent.ts +0 -258
- package/src/modules/doc/content/__tests__/mockPageReference.ts +0 -8
- package/src/modules/doc/content/content.stories.ts +0 -82
- package/src/modules/doc/contentCallout/__tests__/contentCallout.test.ts +0 -80
- package/src/modules/doc/contentCallout/__tests__/mockProps.ts +0 -14
- package/src/modules/doc/contentCallout/contentCallout.stories.ts +0 -29
- package/src/modules/doc/contentMedia/__tests__/contentMedia.test.ts +0 -97
- package/src/modules/doc/contentMedia/contentMedia.stories.ts +0 -113
- package/src/modules/doc/landing/__tests__/landing.test.ts +0 -60
- package/src/modules/doc/landing/__tests__/mockFetch.json +0 -370
- package/src/modules/doc/landing/landing.css +0 -63
- package/src/modules/doc/landing/landing.html +0 -122
- package/src/modules/doc/landing/landing.stories.ts +0 -21
- package/src/modules/doc/landing/landing.ts +0 -222
- package/src/modules/doc/nav/__tests__/mockAvailableLanguages.ts +0 -8
- package/src/modules/doc/nav/__tests__/mockAvailableVersions.ts +0 -122
- package/src/modules/doc/nav/__tests__/mockPageReference.ts +0 -8
- package/src/modules/doc/nav/__tests__/mockPdfUrl.ts +0 -1
- package/src/modules/doc/nav/__tests__/mockSelectedLanguage.ts +0 -8
- package/src/modules/doc/nav/__tests__/mockSelectedVersion.ts +0 -8
- package/src/modules/doc/nav/__tests__/mockToc.ts +0 -146
- package/src/modules/doc/nav/__tests__/nav.test.ts +0 -58
- package/src/modules/doc/toc/__tests__/mockPageReference.ts +0 -8
- package/src/modules/doc/toc/__tests__/mockToc.ts +0 -146
- package/src/modules/doc/toc/__tests__/toc.test.ts +0 -29
- package/src/modules/doc/toolbar/__tests__/mockAvailableLanguages.ts +0 -8
- package/src/modules/doc/toolbar/__tests__/mockAvailableVersions.ts +0 -122
- package/src/modules/doc/toolbar/__tests__/mockPdfUrl.ts +0 -1
- package/src/modules/doc/toolbar/__tests__/mockSelectedLanguage.ts +0 -8
- package/src/modules/doc/toolbar/__tests__/mockSelectedVersion.ts +0 -8
- package/src/modules/doc/toolbar/__tests__/toolbar.test.ts +0 -44
|
@@ -1,4061 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"content_document_id": "apex_dev_guide",
|
|
3
|
-
"title": "Apex Developer Guide",
|
|
4
|
-
"toc": [
|
|
5
|
-
{
|
|
6
|
-
"children": [
|
|
7
|
-
{
|
|
8
|
-
"children": [
|
|
9
|
-
{
|
|
10
|
-
"children": [
|
|
11
|
-
{
|
|
12
|
-
"text": "What is Apex?",
|
|
13
|
-
"a_attr": {
|
|
14
|
-
"href": "apex_intro_what_is_apex.htm"
|
|
15
|
-
},
|
|
16
|
-
"id": "apex_intro_what_is_apex"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"text": "Understanding Apex Core Concepts",
|
|
20
|
-
"a_attr": {
|
|
21
|
-
"href": "apex_qs_core_concepts.htm"
|
|
22
|
-
},
|
|
23
|
-
"id": "apex_qs_core_concepts"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"text": "When Should I Use Apex?",
|
|
27
|
-
"a_attr": {
|
|
28
|
-
"href": "apex_intro_when_use_apex.htm"
|
|
29
|
-
},
|
|
30
|
-
"id": "apex_intro_when_use_apex"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"text": "How Does Apex Work?",
|
|
34
|
-
"a_attr": {
|
|
35
|
-
"href": "apex_intro_how_does_apex_work.htm"
|
|
36
|
-
},
|
|
37
|
-
"id": "apex_intro_how_does_apex_work"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"text": "Developing Code in the Cloud",
|
|
41
|
-
"a_attr": {
|
|
42
|
-
"href": "apex_intro_apex_limitation.htm"
|
|
43
|
-
},
|
|
44
|
-
"id": "apex_intro_apex_limitation"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"text": "What's New?",
|
|
48
|
-
"a_attr": {
|
|
49
|
-
"href": "apex_intro_whats_new.htm"
|
|
50
|
-
},
|
|
51
|
-
"id": "apex_intro_whats_new"
|
|
52
|
-
}
|
|
53
|
-
],
|
|
54
|
-
"text": "Introducing Apex",
|
|
55
|
-
"a_attr": {
|
|
56
|
-
"href": "apex_intro.htm"
|
|
57
|
-
},
|
|
58
|
-
"id": "apex_intro"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"children": [
|
|
62
|
-
{
|
|
63
|
-
"text": "What is the Apex Development Process?",
|
|
64
|
-
"a_attr": {
|
|
65
|
-
"href": "apex_intro_development_process.htm"
|
|
66
|
-
},
|
|
67
|
-
"id": "apex_intro_development_process"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"text": "Create a Developer or Sandbox Org",
|
|
71
|
-
"a_attr": {
|
|
72
|
-
"href": "apex_intro_get_dev_account.htm"
|
|
73
|
-
},
|
|
74
|
-
"id": "apex_intro_get_dev_account"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"text": "Learning Apex",
|
|
78
|
-
"a_attr": {
|
|
79
|
-
"href": "apex_intro_learning_apex.htm"
|
|
80
|
-
},
|
|
81
|
-
"id": "apex_intro_learning_apex"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"text": "Writing Apex Using Development Environments",
|
|
85
|
-
"a_attr": {
|
|
86
|
-
"href": "apex_intro_writing_apex.htm"
|
|
87
|
-
},
|
|
88
|
-
"id": "apex_intro_writing_apex"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"text": "Writing Tests",
|
|
92
|
-
"a_attr": {
|
|
93
|
-
"href": "apex_intro_writing_tests.htm"
|
|
94
|
-
},
|
|
95
|
-
"id": "apex_intro_writing_tests"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"text": "Deploying Apex to a Sandbox Organization",
|
|
99
|
-
"a_attr": {
|
|
100
|
-
"href": "apex_intro_deploying_to_sandbox.htm"
|
|
101
|
-
},
|
|
102
|
-
"id": "apex_intro_deploying_to_sandbox"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"text": "Deploying Apex to a Salesforce Production Organization",
|
|
106
|
-
"a_attr": {
|
|
107
|
-
"href": "apex_intro_deploying_to_production.htm"
|
|
108
|
-
},
|
|
109
|
-
"id": "apex_intro_deploying_to_production"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"text": "Adding Apex Code to a AppExchange App",
|
|
113
|
-
"a_attr": {
|
|
114
|
-
"href": "apex_intro_AppExchange.htm"
|
|
115
|
-
},
|
|
116
|
-
"id": "apex_intro_AppExchange"
|
|
117
|
-
}
|
|
118
|
-
],
|
|
119
|
-
"text": "Apex Development Process",
|
|
120
|
-
"a_attr": {
|
|
121
|
-
"href": "apex_dev_process_chapter.htm"
|
|
122
|
-
},
|
|
123
|
-
"id": "apex_dev_process_chapter"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"children": [
|
|
127
|
-
{
|
|
128
|
-
"text": "Create a Custom Object",
|
|
129
|
-
"a_attr": {
|
|
130
|
-
"href": "apex_qs_customobject.htm"
|
|
131
|
-
},
|
|
132
|
-
"id": "apex_qs_customobject"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"text": "Adding an Apex Class",
|
|
136
|
-
"a_attr": {
|
|
137
|
-
"href": "apex_qs_class.htm"
|
|
138
|
-
},
|
|
139
|
-
"id": "apex_qs_class"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"text": "Add an Apex Trigger",
|
|
143
|
-
"a_attr": {
|
|
144
|
-
"href": "apex_qs_trigger.htm"
|
|
145
|
-
},
|
|
146
|
-
"id": "apex_qs_trigger"
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"text": "Add a Test Class",
|
|
150
|
-
"a_attr": {
|
|
151
|
-
"href": "apex_qs_test.htm"
|
|
152
|
-
},
|
|
153
|
-
"id": "apex_qs_test"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"text": "Deploying Components to Production",
|
|
157
|
-
"a_attr": {
|
|
158
|
-
"href": "apex_qs_deploy.htm"
|
|
159
|
-
},
|
|
160
|
-
"id": "apex_qs_deploy"
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"text": "Apex Quick Start",
|
|
164
|
-
"a_attr": {
|
|
165
|
-
"href": "apex_qs_HelloWorld.htm"
|
|
166
|
-
},
|
|
167
|
-
"id": "apex_qs_HelloWorld"
|
|
168
|
-
}
|
|
169
|
-
],
|
|
170
|
-
"text": "Getting Started with Apex",
|
|
171
|
-
"a_attr": {
|
|
172
|
-
"href": "apex_intro_get_started.htm"
|
|
173
|
-
},
|
|
174
|
-
"id": "apex_intro_get_started"
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"children": [
|
|
178
|
-
{
|
|
179
|
-
"children": [
|
|
180
|
-
{
|
|
181
|
-
"text": "Data Types",
|
|
182
|
-
"a_attr": {
|
|
183
|
-
"href": "langCon_apex_data_types.htm"
|
|
184
|
-
},
|
|
185
|
-
"id": "langCon_apex_data_types"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"text": "Primitive Data Types",
|
|
189
|
-
"a_attr": {
|
|
190
|
-
"href": "langCon_apex_primitives.htm"
|
|
191
|
-
},
|
|
192
|
-
"id": "langCon_apex_primitives"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"children": [
|
|
196
|
-
{
|
|
197
|
-
"children": [
|
|
198
|
-
{
|
|
199
|
-
"text": "List Sorting",
|
|
200
|
-
"a_attr": {
|
|
201
|
-
"href": "langCon_apex_collections_lists_sorting.htm"
|
|
202
|
-
},
|
|
203
|
-
"id": "langCon_apex_collections_lists_sorting"
|
|
204
|
-
}
|
|
205
|
-
],
|
|
206
|
-
"text": "Lists",
|
|
207
|
-
"a_attr": {
|
|
208
|
-
"href": "langCon_apex_collections_lists.htm"
|
|
209
|
-
},
|
|
210
|
-
"id": "langCon_apex_collections_lists"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"text": "Sets",
|
|
214
|
-
"a_attr": {
|
|
215
|
-
"href": "langCon_apex_collections_sets.htm"
|
|
216
|
-
},
|
|
217
|
-
"id": "langCon_apex_collections_sets"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"text": "Maps",
|
|
221
|
-
"a_attr": {
|
|
222
|
-
"href": "langCon_apex_collections_maps.htm"
|
|
223
|
-
},
|
|
224
|
-
"id": "langCon_apex_collections_maps"
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"text": "Parameterized Typing",
|
|
228
|
-
"a_attr": {
|
|
229
|
-
"href": "langCon_apex_parameterized_types.htm"
|
|
230
|
-
},
|
|
231
|
-
"id": "langCon_apex_parameterized_types"
|
|
232
|
-
}
|
|
233
|
-
],
|
|
234
|
-
"text": "Collections",
|
|
235
|
-
"a_attr": {
|
|
236
|
-
"href": "langCon_apex_collections.htm"
|
|
237
|
-
},
|
|
238
|
-
"id": "langCon_apex_collections"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"text": "Enums",
|
|
242
|
-
"a_attr": {
|
|
243
|
-
"href": "langCon_apex_enums.htm"
|
|
244
|
-
},
|
|
245
|
-
"id": "langCon_apex_enums"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"text": "Variables",
|
|
249
|
-
"a_attr": {
|
|
250
|
-
"href": "langCon_apex_variables.htm"
|
|
251
|
-
},
|
|
252
|
-
"id": "langCon_apex_variables"
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"text": "Constants",
|
|
256
|
-
"a_attr": {
|
|
257
|
-
"href": "langCon_apex_constants.htm"
|
|
258
|
-
},
|
|
259
|
-
"id": "langCon_apex_constants"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"children": [
|
|
263
|
-
{
|
|
264
|
-
"text": "Expressions",
|
|
265
|
-
"a_attr": {
|
|
266
|
-
"href": "langCon_apex_expressions_understanding.htm"
|
|
267
|
-
},
|
|
268
|
-
"id": "langCon_apex_expressions_understanding"
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"text": "Expression Operators",
|
|
272
|
-
"a_attr": {
|
|
273
|
-
"href": "langCon_apex_expressions_operators_understanding.htm"
|
|
274
|
-
},
|
|
275
|
-
"id": "langCon_apex_expressions_operators_understanding"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"text": "Safe Navigation Operator",
|
|
279
|
-
"a_attr": {
|
|
280
|
-
"href": "langCon_apex_SafeNavigationOperator.htm"
|
|
281
|
-
},
|
|
282
|
-
"id": "langCon_apex_SafeNavigationOperator"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"text": "Operator Precedence",
|
|
286
|
-
"a_attr": {
|
|
287
|
-
"href": "langCon_apex_expressions_operators_precedence.htm"
|
|
288
|
-
},
|
|
289
|
-
"id": "langCon_apex_expressions_operators_precedence"
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"text": "Comments",
|
|
293
|
-
"a_attr": {
|
|
294
|
-
"href": "langCon_apex_expressions_comments.htm"
|
|
295
|
-
},
|
|
296
|
-
"id": "langCon_apex_expressions_comments"
|
|
297
|
-
}
|
|
298
|
-
],
|
|
299
|
-
"text": "Expressions and Operators",
|
|
300
|
-
"a_attr": {
|
|
301
|
-
"href": "langCon_apex_expressions.htm"
|
|
302
|
-
},
|
|
303
|
-
"id": "langCon_apex_expressions"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"text": "Assignment Statements",
|
|
307
|
-
"a_attr": {
|
|
308
|
-
"href": "langCon_apex_assignment_statements.htm"
|
|
309
|
-
},
|
|
310
|
-
"id": "langCon_apex_assignment_statements"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"text": "Rules of Conversion",
|
|
314
|
-
"a_attr": {
|
|
315
|
-
"href": "langCon_apex_rules_of_conversion.htm"
|
|
316
|
-
},
|
|
317
|
-
"id": "langCon_apex_rules_of_conversion"
|
|
318
|
-
}
|
|
319
|
-
],
|
|
320
|
-
"text": "Data Types and Variables",
|
|
321
|
-
"a_attr": {
|
|
322
|
-
"href": "langCon_apex_datatypes_variables_intro.htm"
|
|
323
|
-
},
|
|
324
|
-
"id": "langCon_apex_datatypes_variables_intro"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"children": [
|
|
328
|
-
{
|
|
329
|
-
"text": "Conditional (If-Else) Statements",
|
|
330
|
-
"a_attr": {
|
|
331
|
-
"href": "langCon_apex_if_else.htm"
|
|
332
|
-
},
|
|
333
|
-
"id": "langCon_apex_if_else"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"text": "Switch Statements",
|
|
337
|
-
"a_attr": {
|
|
338
|
-
"href": "langCon_apex_switch.htm"
|
|
339
|
-
},
|
|
340
|
-
"id": "langCon_apex_switch"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"children": [
|
|
344
|
-
{
|
|
345
|
-
"text": "Do-While Loops",
|
|
346
|
-
"a_attr": {
|
|
347
|
-
"href": "langCon_apex_loops_do_while.htm"
|
|
348
|
-
},
|
|
349
|
-
"id": "langCon_apex_loops_do_while"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"text": "While Loops",
|
|
353
|
-
"a_attr": {
|
|
354
|
-
"href": "langCon_apex_loops_while.htm"
|
|
355
|
-
},
|
|
356
|
-
"id": "langCon_apex_loops_while"
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"children": [
|
|
360
|
-
{
|
|
361
|
-
"text": "Traditional For Loops",
|
|
362
|
-
"a_attr": {
|
|
363
|
-
"href": "langCon_apex_loops_for_traditional.htm"
|
|
364
|
-
},
|
|
365
|
-
"id": "langCon_apex_loops_for_traditional"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"text": "List or Set Iteration for Loops",
|
|
369
|
-
"a_attr": {
|
|
370
|
-
"href": "langCon_apex_loops_for_lists.htm"
|
|
371
|
-
},
|
|
372
|
-
"id": "langCon_apex_loops_for_lists"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"text": "Iterating Collections",
|
|
376
|
-
"a_attr": {
|
|
377
|
-
"href": "langCon_apex_collections_iterating.htm"
|
|
378
|
-
},
|
|
379
|
-
"id": "langCon_apex_collections_iterating"
|
|
380
|
-
}
|
|
381
|
-
],
|
|
382
|
-
"text": "For Loops",
|
|
383
|
-
"a_attr": {
|
|
384
|
-
"href": "langCon_apex_loops_for.htm"
|
|
385
|
-
},
|
|
386
|
-
"id": "langCon_apex_loops_for"
|
|
387
|
-
}
|
|
388
|
-
],
|
|
389
|
-
"text": "Loops",
|
|
390
|
-
"a_attr": {
|
|
391
|
-
"href": "langCon_apex_loops.htm"
|
|
392
|
-
},
|
|
393
|
-
"id": "langCon_apex_loops"
|
|
394
|
-
}
|
|
395
|
-
],
|
|
396
|
-
"text": "Control Flow Statements",
|
|
397
|
-
"a_attr": {
|
|
398
|
-
"href": "langCon_apex_control_flow.htm"
|
|
399
|
-
},
|
|
400
|
-
"id": "langCon_apex_control_flow"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"children": [
|
|
404
|
-
{
|
|
405
|
-
"children": [
|
|
406
|
-
{
|
|
407
|
-
"text": "Apex Class Definition",
|
|
408
|
-
"a_attr": {
|
|
409
|
-
"href": "apex_classes_defining.htm"
|
|
410
|
-
},
|
|
411
|
-
"id": "apex_classes_defining"
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"text": "Class Variables",
|
|
415
|
-
"a_attr": {
|
|
416
|
-
"href": "apex_classes_declaring_variables.htm"
|
|
417
|
-
},
|
|
418
|
-
"id": "apex_classes_declaring_variables"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"text": "Class Methods",
|
|
422
|
-
"a_attr": {
|
|
423
|
-
"href": "apex_classes_defining_methods.htm"
|
|
424
|
-
},
|
|
425
|
-
"id": "apex_classes_defining_methods"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"text": "Using Constructors",
|
|
429
|
-
"a_attr": {
|
|
430
|
-
"href": "apex_classes_constructors.htm"
|
|
431
|
-
},
|
|
432
|
-
"id": "apex_classes_constructors"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"text": "Access Modifiers",
|
|
436
|
-
"a_attr": {
|
|
437
|
-
"href": "apex_classes_access_modifiers.htm"
|
|
438
|
-
},
|
|
439
|
-
"id": "apex_classes_access_modifiers"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"text": "Static and Instance Methods, Variables, and Initialization Code",
|
|
443
|
-
"a_attr": {
|
|
444
|
-
"href": "apex_classes_static.htm"
|
|
445
|
-
},
|
|
446
|
-
"id": "apex_classes_static"
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"text": "Apex Properties",
|
|
450
|
-
"a_attr": {
|
|
451
|
-
"href": "apex_classes_properties.htm"
|
|
452
|
-
},
|
|
453
|
-
"id": "apex_classes_properties"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"text": "Extending a Class",
|
|
457
|
-
"a_attr": {
|
|
458
|
-
"href": "apex_classes_extending.htm"
|
|
459
|
-
},
|
|
460
|
-
"id": "apex_classes_extending"
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"text": "Extended Class Example",
|
|
464
|
-
"a_attr": {
|
|
465
|
-
"href": "apex_classes_example.htm"
|
|
466
|
-
},
|
|
467
|
-
"id": "apex_classes_example"
|
|
468
|
-
}
|
|
469
|
-
],
|
|
470
|
-
"text": "Classes",
|
|
471
|
-
"a_attr": {
|
|
472
|
-
"href": "apex_classes_understanding.htm"
|
|
473
|
-
},
|
|
474
|
-
"id": "apex_classes_understanding"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"children": [
|
|
478
|
-
{
|
|
479
|
-
"text": "Custom Iterators",
|
|
480
|
-
"a_attr": {
|
|
481
|
-
"href": "apex_classes_iterable.htm"
|
|
482
|
-
},
|
|
483
|
-
"id": "apex_classes_iterable"
|
|
484
|
-
}
|
|
485
|
-
],
|
|
486
|
-
"text": "Interfaces",
|
|
487
|
-
"a_attr": {
|
|
488
|
-
"href": "apex_classes_interfaces.htm"
|
|
489
|
-
},
|
|
490
|
-
"id": "apex_classes_interfaces"
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"children": [
|
|
494
|
-
{
|
|
495
|
-
"text": "Using the final Keyword",
|
|
496
|
-
"a_attr": {
|
|
497
|
-
"href": "apex_classes_keywords_final.htm"
|
|
498
|
-
},
|
|
499
|
-
"id": "apex_classes_keywords_final"
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
"text": "Using the instanceof Keyword",
|
|
503
|
-
"a_attr": {
|
|
504
|
-
"href": "apex_classes_keywords_instanceof.htm"
|
|
505
|
-
},
|
|
506
|
-
"id": "apex_classes_keywords_instanceof"
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
"text": "Using the super Keyword",
|
|
510
|
-
"a_attr": {
|
|
511
|
-
"href": "apex_classes_keywords_super.htm"
|
|
512
|
-
},
|
|
513
|
-
"id": "apex_classes_keywords_super"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"text": "Using the this Keyword",
|
|
517
|
-
"a_attr": {
|
|
518
|
-
"href": "apex_classes_keywords_this.htm"
|
|
519
|
-
},
|
|
520
|
-
"id": "apex_classes_keywords_this"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"text": "Using the transient Keyword",
|
|
524
|
-
"a_attr": {
|
|
525
|
-
"href": "apex_classes_keywords_transient.htm"
|
|
526
|
-
},
|
|
527
|
-
"id": "apex_classes_keywords_transient"
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"text": "Using the with sharing, without sharing, and inherited sharing Keywords",
|
|
531
|
-
"a_attr": {
|
|
532
|
-
"href": "apex_classes_keywords_sharing.htm"
|
|
533
|
-
},
|
|
534
|
-
"id": "apex_classes_keywords_sharing"
|
|
535
|
-
}
|
|
536
|
-
],
|
|
537
|
-
"text": "Keywords",
|
|
538
|
-
"a_attr": {
|
|
539
|
-
"href": "apex_classes_keywords.htm"
|
|
540
|
-
},
|
|
541
|
-
"id": "apex_classes_keywords"
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"children": [
|
|
545
|
-
{
|
|
546
|
-
"text": "AuraEnabled Annotation",
|
|
547
|
-
"a_attr": {
|
|
548
|
-
"href": "apex_classes_annotation_AuraEnabled.htm"
|
|
549
|
-
},
|
|
550
|
-
"id": "apex_classes_annotation_AuraEnabled"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"text": "Deprecated Annotation",
|
|
554
|
-
"a_attr": {
|
|
555
|
-
"href": "apex_classes_annotation_deprecated.htm"
|
|
556
|
-
},
|
|
557
|
-
"id": "apex_classes_annotation_deprecated"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"text": "Future Annotation",
|
|
561
|
-
"a_attr": {
|
|
562
|
-
"href": "apex_classes_annotation_future.htm"
|
|
563
|
-
},
|
|
564
|
-
"id": "apex_classes_annotation_future"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"text": "InvocableMethod Annotation",
|
|
568
|
-
"a_attr": {
|
|
569
|
-
"href": "apex_classes_annotation_InvocableMethod.htm"
|
|
570
|
-
},
|
|
571
|
-
"id": "apex_classes_annotation_InvocableMethod"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"text": "InvocableVariable Annotation",
|
|
575
|
-
"a_attr": {
|
|
576
|
-
"href": "apex_classes_annotation_InvocableVariable.htm"
|
|
577
|
-
},
|
|
578
|
-
"id": "apex_classes_annotation_InvocableVariable"
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"text": "isTest Annotation",
|
|
582
|
-
"a_attr": {
|
|
583
|
-
"href": "apex_classes_annotation_isTest.htm"
|
|
584
|
-
},
|
|
585
|
-
"id": "apex_classes_annotation_isTest"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"text": "JsonAccess Annotation",
|
|
589
|
-
"a_attr": {
|
|
590
|
-
"href": "apex_classes_annotation_JsonAccess.htm"
|
|
591
|
-
},
|
|
592
|
-
"id": "apex_classes_annotation_JsonAccess"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"text": "NamespaceAccessible Annotation",
|
|
596
|
-
"a_attr": {
|
|
597
|
-
"href": "apex_classes_annotation_NamespaceAccessible.htm"
|
|
598
|
-
},
|
|
599
|
-
"id": "apex_classes_annotation_NamespaceAccessible"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"text": "ReadOnly Annotation",
|
|
603
|
-
"a_attr": {
|
|
604
|
-
"href": "apex_classes_annotation_ReadOnly.htm"
|
|
605
|
-
},
|
|
606
|
-
"id": "apex_classes_annotation_ReadOnly"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"text": "RemoteAction Annotation",
|
|
610
|
-
"a_attr": {
|
|
611
|
-
"href": "apex_classes_annotation_RemoteAction.htm"
|
|
612
|
-
},
|
|
613
|
-
"id": "apex_classes_annotation_RemoteAction"
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"text": "SuppressWarnings Annotation",
|
|
617
|
-
"a_attr": {
|
|
618
|
-
"href": "apex_classes_annotation_SuppressWarnings.htm"
|
|
619
|
-
},
|
|
620
|
-
"id": "apex_classes_annotation_SuppressWarnings"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"text": "TestSetup Annotation",
|
|
624
|
-
"a_attr": {
|
|
625
|
-
"href": "apex_classes_annotation_testsetup.htm"
|
|
626
|
-
},
|
|
627
|
-
"id": "apex_classes_annotation_testsetup"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"text": "TestVisible Annotation",
|
|
631
|
-
"a_attr": {
|
|
632
|
-
"href": "apex_classes_annotation_testvisible.htm"
|
|
633
|
-
},
|
|
634
|
-
"id": "apex_classes_annotation_testvisible"
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"children": [
|
|
638
|
-
{
|
|
639
|
-
"text": "RestResource Annotation",
|
|
640
|
-
"a_attr": {
|
|
641
|
-
"href": "apex_classes_annotation_rest_resource.htm"
|
|
642
|
-
},
|
|
643
|
-
"id": "apex_classes_annotation_rest_resource"
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
"text": "HttpDelete Annotation",
|
|
647
|
-
"a_attr": {
|
|
648
|
-
"href": "apex_classes_annotation_http_delete.htm"
|
|
649
|
-
},
|
|
650
|
-
"id": "apex_classes_annotation_http_delete"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"text": "HttpGet Annotation",
|
|
654
|
-
"a_attr": {
|
|
655
|
-
"href": "apex_classes_annotation_http_get.htm"
|
|
656
|
-
},
|
|
657
|
-
"id": "apex_classes_annotation_http_get"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"text": "HttpPatch Annotation",
|
|
661
|
-
"a_attr": {
|
|
662
|
-
"href": "apex_classes_annotation_http_patch.htm"
|
|
663
|
-
},
|
|
664
|
-
"id": "apex_classes_annotation_http_patch"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"text": "HttpPost Annotation",
|
|
668
|
-
"a_attr": {
|
|
669
|
-
"href": "apex_classes_annotation_http_post.htm"
|
|
670
|
-
},
|
|
671
|
-
"id": "apex_classes_annotation_http_post"
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"text": "HttpPut Annotation",
|
|
675
|
-
"a_attr": {
|
|
676
|
-
"href": "apex_classes_annotation_http_put.htm"
|
|
677
|
-
},
|
|
678
|
-
"id": "apex_classes_annotation_http_put"
|
|
679
|
-
}
|
|
680
|
-
],
|
|
681
|
-
"text": "Apex REST Annotations",
|
|
682
|
-
"a_attr": {
|
|
683
|
-
"href": "apex_classes_annotations_rest.htm"
|
|
684
|
-
},
|
|
685
|
-
"id": "apex_classes_annotations_rest"
|
|
686
|
-
}
|
|
687
|
-
],
|
|
688
|
-
"text": "Annotations",
|
|
689
|
-
"a_attr": {
|
|
690
|
-
"href": "apex_classes_annotation.htm"
|
|
691
|
-
},
|
|
692
|
-
"id": "apex_classes_annotation"
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"children": [
|
|
696
|
-
{
|
|
697
|
-
"text": "Classes and Collections",
|
|
698
|
-
"a_attr": {
|
|
699
|
-
"href": "apex_classes_collections.htm"
|
|
700
|
-
},
|
|
701
|
-
"id": "apex_classes_collections"
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
"text": "Collection Casting",
|
|
705
|
-
"a_attr": {
|
|
706
|
-
"href": "apex_classes_casting_collections.htm"
|
|
707
|
-
},
|
|
708
|
-
"id": "apex_classes_casting_collections"
|
|
709
|
-
}
|
|
710
|
-
],
|
|
711
|
-
"text": "Classes and Casting",
|
|
712
|
-
"a_attr": {
|
|
713
|
-
"href": "apex_classes_casting.htm"
|
|
714
|
-
},
|
|
715
|
-
"id": "apex_classes_casting"
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"text": "Differences Between Apex Classes and Java Classes",
|
|
719
|
-
"a_attr": {
|
|
720
|
-
"href": "apex_classes_java_diffs.htm"
|
|
721
|
-
},
|
|
722
|
-
"id": "apex_classes_java_diffs"
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"children": [
|
|
726
|
-
{
|
|
727
|
-
"text": "Naming Conventions",
|
|
728
|
-
"a_attr": {
|
|
729
|
-
"href": "apex_classes_naming_conventions.htm"
|
|
730
|
-
},
|
|
731
|
-
"id": "apex_classes_naming_conventions"
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"text": "Name Shadowing",
|
|
735
|
-
"a_attr": {
|
|
736
|
-
"href": "apex_classes_name_shadowing.htm"
|
|
737
|
-
},
|
|
738
|
-
"id": "apex_classes_name_shadowing"
|
|
739
|
-
}
|
|
740
|
-
],
|
|
741
|
-
"text": "Class Definition Creation",
|
|
742
|
-
"a_attr": {
|
|
743
|
-
"href": "apex_classes_creating.htm"
|
|
744
|
-
},
|
|
745
|
-
"id": "apex_classes_creating"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"children": [
|
|
749
|
-
{
|
|
750
|
-
"text": "Using the System Namespace",
|
|
751
|
-
"a_attr": {
|
|
752
|
-
"href": "apex_classes_namespaces_and_invoking_methods.htm"
|
|
753
|
-
},
|
|
754
|
-
"id": "apex_classes_namespaces_and_invoking_methods"
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
"text": "Using the Schema Namespace",
|
|
758
|
-
"a_attr": {
|
|
759
|
-
"href": "apex_classes_schema_namespace_using.htm"
|
|
760
|
-
},
|
|
761
|
-
"id": "apex_classes_schema_namespace_using"
|
|
762
|
-
},
|
|
763
|
-
{
|
|
764
|
-
"text": "Namespace, Class, and Variable Name Precedence",
|
|
765
|
-
"a_attr": {
|
|
766
|
-
"href": "apex_classes_namespace_precedence.htm"
|
|
767
|
-
},
|
|
768
|
-
"id": "apex_classes_namespace_precedence"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"text": "Type Resolution and System Namespace for Types",
|
|
772
|
-
"a_attr": {
|
|
773
|
-
"href": "apex_classes_namespace_type_resolution.htm"
|
|
774
|
-
},
|
|
775
|
-
"id": "apex_classes_namespace_type_resolution"
|
|
776
|
-
}
|
|
777
|
-
],
|
|
778
|
-
"text": "Namespace Prefix",
|
|
779
|
-
"a_attr": {
|
|
780
|
-
"href": "apex_classes_namespace_prefix.htm"
|
|
781
|
-
},
|
|
782
|
-
"id": "apex_classes_namespace_prefix"
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
"children": [
|
|
786
|
-
{
|
|
787
|
-
"text": "Setting the Salesforce API Version for Classes and Triggers",
|
|
788
|
-
"a_attr": {
|
|
789
|
-
"href": "apex_classes_version_settings_api.htm"
|
|
790
|
-
},
|
|
791
|
-
"id": "apex_classes_version_settings_api"
|
|
792
|
-
},
|
|
793
|
-
{
|
|
794
|
-
"text": "Setting Package Versions for Apex Classes and Triggers",
|
|
795
|
-
"a_attr": {
|
|
796
|
-
"href": "apex_classes_version_settings_packages.htm"
|
|
797
|
-
},
|
|
798
|
-
"id": "apex_classes_version_settings_packages"
|
|
799
|
-
}
|
|
800
|
-
],
|
|
801
|
-
"text": "Apex Code Versions",
|
|
802
|
-
"a_attr": {
|
|
803
|
-
"href": "apex_classes_version_settings_intro.htm"
|
|
804
|
-
},
|
|
805
|
-
"id": "apex_classes_version_settings_intro"
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
"text": "Lists of Custom Types and Sorting",
|
|
809
|
-
"a_attr": {
|
|
810
|
-
"href": "apex_classes_list_sorting.htm"
|
|
811
|
-
},
|
|
812
|
-
"id": "apex_classes_list_sorting"
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
"text": "Using Custom Types in Map Keys and Sets",
|
|
816
|
-
"a_attr": {
|
|
817
|
-
"href": "langCon_apex_collections_maps_keys_userdefined.htm"
|
|
818
|
-
},
|
|
819
|
-
"id": "langCon_apex_collections_maps_keys_userdefined"
|
|
820
|
-
}
|
|
821
|
-
],
|
|
822
|
-
"text": "Classes, Objects, and Interfaces",
|
|
823
|
-
"a_attr": {
|
|
824
|
-
"href": "apex_classes.htm"
|
|
825
|
-
},
|
|
826
|
-
"id": "apex_classes"
|
|
827
|
-
},
|
|
828
|
-
{
|
|
829
|
-
"children": [
|
|
830
|
-
{
|
|
831
|
-
"children": [
|
|
832
|
-
{
|
|
833
|
-
"text": "sObject Types",
|
|
834
|
-
"a_attr": {
|
|
835
|
-
"href": "langCon_apex_SObject_types.htm"
|
|
836
|
-
},
|
|
837
|
-
"id": "langCon_apex_SObject_types"
|
|
838
|
-
},
|
|
839
|
-
{
|
|
840
|
-
"text": "Accessing SObject Fields",
|
|
841
|
-
"a_attr": {
|
|
842
|
-
"href": "langCon_apex_SObjects_accessing_fields.htm"
|
|
843
|
-
},
|
|
844
|
-
"id": "langCon_apex_SObjects_accessing_fields"
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"text": "Validating sObjects and Fields",
|
|
848
|
-
"a_attr": {
|
|
849
|
-
"href": "langCon_apex_SObjects_field_validation.htm"
|
|
850
|
-
},
|
|
851
|
-
"id": "langCon_apex_SObjects_field_validation"
|
|
852
|
-
}
|
|
853
|
-
],
|
|
854
|
-
"text": "Working with sObjects",
|
|
855
|
-
"a_attr": {
|
|
856
|
-
"href": "langCon_apex_SObjects.htm"
|
|
857
|
-
},
|
|
858
|
-
"id": "langCon_apex_SObjects"
|
|
859
|
-
},
|
|
860
|
-
{
|
|
861
|
-
"children": [
|
|
862
|
-
{
|
|
863
|
-
"text": "How DML Works",
|
|
864
|
-
"a_attr": {
|
|
865
|
-
"href": "langCon_apex_dml_examples.htm"
|
|
866
|
-
},
|
|
867
|
-
"id": "langCon_apex_dml_examples"
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
"text": "Adding and Retrieving Data With DML",
|
|
871
|
-
"a_attr": {
|
|
872
|
-
"href": "langCon_apex_dml_section.htm"
|
|
873
|
-
},
|
|
874
|
-
"id": "langCon_apex_dml_section"
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
"text": "DML Statements vs. Database Class Methods",
|
|
878
|
-
"a_attr": {
|
|
879
|
-
"href": "langCon_apex_dml_database.htm"
|
|
880
|
-
},
|
|
881
|
-
"id": "langCon_apex_dml_database"
|
|
882
|
-
},
|
|
883
|
-
{
|
|
884
|
-
"text": "DML Operations As Atomic Transactions",
|
|
885
|
-
"a_attr": {
|
|
886
|
-
"href": "langCon_apex_dml_transactions.htm"
|
|
887
|
-
},
|
|
888
|
-
"id": "langCon_apex_dml_transactions"
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"children": [
|
|
892
|
-
{
|
|
893
|
-
"children": [
|
|
894
|
-
{
|
|
895
|
-
"text": "Relating Records by Using an External ID",
|
|
896
|
-
"a_attr": {
|
|
897
|
-
"href": "langCon_apex_dml_nested_object.htm"
|
|
898
|
-
},
|
|
899
|
-
"id": "langCon_apex_dml_nested_object"
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
"text": "Creating Parent and Child Records in a Single Statement Using Foreign Keys",
|
|
903
|
-
"a_attr": {
|
|
904
|
-
"href": "langCon_apex_dml_foreign_keys.htm"
|
|
905
|
-
},
|
|
906
|
-
"id": "langCon_apex_dml_foreign_keys"
|
|
907
|
-
}
|
|
908
|
-
],
|
|
909
|
-
"text": "Inserting and Updating Records",
|
|
910
|
-
"a_attr": {
|
|
911
|
-
"href": "langCon_apex_dml_examples_insert_update.htm"
|
|
912
|
-
},
|
|
913
|
-
"id": "langCon_apex_dml_examples_insert_update"
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"text": "Upserting Records",
|
|
917
|
-
"a_attr": {
|
|
918
|
-
"href": "langCon_apex_dml_examples_upsert.htm"
|
|
919
|
-
},
|
|
920
|
-
"id": "langCon_apex_dml_examples_upsert"
|
|
921
|
-
},
|
|
922
|
-
{
|
|
923
|
-
"text": "Merging Records",
|
|
924
|
-
"a_attr": {
|
|
925
|
-
"href": "langCon_apex_dml_examples_merge.htm"
|
|
926
|
-
},
|
|
927
|
-
"id": "langCon_apex_dml_examples_merge"
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"text": "Deleting Records",
|
|
931
|
-
"a_attr": {
|
|
932
|
-
"href": "langCon_apex_dml_examples_delete.htm"
|
|
933
|
-
},
|
|
934
|
-
"id": "langCon_apex_dml_examples_delete"
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"text": "Restoring Deleted Records",
|
|
938
|
-
"a_attr": {
|
|
939
|
-
"href": "langCon_apex_dml_examples_undelete.htm"
|
|
940
|
-
},
|
|
941
|
-
"id": "langCon_apex_dml_examples_undelete"
|
|
942
|
-
},
|
|
943
|
-
{
|
|
944
|
-
"text": "Converting Leads",
|
|
945
|
-
"a_attr": {
|
|
946
|
-
"href": "langCon_apex_dml_examples_convertlead.htm"
|
|
947
|
-
},
|
|
948
|
-
"id": "langCon_apex_dml_examples_convertlead"
|
|
949
|
-
}
|
|
950
|
-
],
|
|
951
|
-
"text": "DML Operations",
|
|
952
|
-
"a_attr": {
|
|
953
|
-
"href": "langCon_apex_dml_operations.htm"
|
|
954
|
-
},
|
|
955
|
-
"id": "langCon_apex_dml_operations"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"children": [
|
|
959
|
-
{
|
|
960
|
-
"text": "Database Class Method Result Objects",
|
|
961
|
-
"a_attr": {
|
|
962
|
-
"href": "langCon_apex_dml_database_result_classes.htm"
|
|
963
|
-
},
|
|
964
|
-
"id": "langCon_apex_dml_database_result_classes"
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
"text": "Returned Database Errors",
|
|
968
|
-
"a_attr": {
|
|
969
|
-
"href": "langCon_apex_dml_database_error.htm"
|
|
970
|
-
},
|
|
971
|
-
"id": "langCon_apex_dml_database_error"
|
|
972
|
-
}
|
|
973
|
-
],
|
|
974
|
-
"text": "Exception Handling",
|
|
975
|
-
"a_attr": {
|
|
976
|
-
"href": "langCon_apex_dml_exception_handling.htm"
|
|
977
|
-
},
|
|
978
|
-
"id": "langCon_apex_dml_exception_handling"
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"children": [
|
|
982
|
-
{
|
|
983
|
-
"text": "Setting DML Options",
|
|
984
|
-
"a_attr": {
|
|
985
|
-
"href": "langCon_apex_dml_database_dmloptions.htm"
|
|
986
|
-
},
|
|
987
|
-
"id": "langCon_apex_dml_database_dmloptions"
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
"text": "Transaction Control",
|
|
991
|
-
"a_attr": {
|
|
992
|
-
"href": "langCon_apex_transaction_control.htm"
|
|
993
|
-
},
|
|
994
|
-
"id": "langCon_apex_transaction_control"
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"children": [
|
|
998
|
-
{
|
|
999
|
-
"text": "Mixed DML Operations in Test Methods",
|
|
1000
|
-
"a_attr": {
|
|
1001
|
-
"href": "apex_dml_non_mix_sobjects_test_methods.htm"
|
|
1002
|
-
},
|
|
1003
|
-
"id": "apex_dml_non_mix_sobjects_test_methods"
|
|
1004
|
-
}
|
|
1005
|
-
],
|
|
1006
|
-
"text": "sObjects That Cannot Be Used Together in DML Operations",
|
|
1007
|
-
"a_attr": {
|
|
1008
|
-
"href": "apex_dml_non_mix_sobjects.htm"
|
|
1009
|
-
},
|
|
1010
|
-
"id": "apex_dml_non_mix_sobjects"
|
|
1011
|
-
},
|
|
1012
|
-
{
|
|
1013
|
-
"text": "sObjects That Don’t Support DML Operations",
|
|
1014
|
-
"a_attr": {
|
|
1015
|
-
"href": "apex_dml_non_dml_objects.htm"
|
|
1016
|
-
},
|
|
1017
|
-
"id": "apex_dml_non_dml_objects"
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"text": "Bulk DML Exception Handling",
|
|
1021
|
-
"a_attr": {
|
|
1022
|
-
"href": "apex_dml_bulk_exceptions.htm"
|
|
1023
|
-
},
|
|
1024
|
-
"id": "apex_dml_bulk_exceptions"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"text": "Things You Should Know about Data in Apex",
|
|
1028
|
-
"a_attr": {
|
|
1029
|
-
"href": "langCon_apex_dml_limitations.htm"
|
|
1030
|
-
},
|
|
1031
|
-
"id": "langCon_apex_dml_limitations"
|
|
1032
|
-
}
|
|
1033
|
-
],
|
|
1034
|
-
"text": "More About DML",
|
|
1035
|
-
"a_attr": {
|
|
1036
|
-
"href": "langCon_apex_dml_database_more.htm"
|
|
1037
|
-
},
|
|
1038
|
-
"id": "langCon_apex_dml_database_more"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"children": [
|
|
1042
|
-
{
|
|
1043
|
-
"text": "Locking Statements",
|
|
1044
|
-
"a_attr": {
|
|
1045
|
-
"href": "langCon_apex_locking_statements.htm"
|
|
1046
|
-
},
|
|
1047
|
-
"id": "langCon_apex_locking_statements"
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
"text": "Locking in a SOQL For Loop",
|
|
1051
|
-
"a_attr": {
|
|
1052
|
-
"href": "langCon_apex_locking_soql_for_loop.htm"
|
|
1053
|
-
},
|
|
1054
|
-
"id": "langCon_apex_locking_soql_for_loop"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"text": "Avoiding Deadlocks",
|
|
1058
|
-
"a_attr": {
|
|
1059
|
-
"href": "langCon_apex_deadlocks.htm"
|
|
1060
|
-
},
|
|
1061
|
-
"id": "langCon_apex_deadlocks"
|
|
1062
|
-
}
|
|
1063
|
-
],
|
|
1064
|
-
"text": "Locking Records",
|
|
1065
|
-
"a_attr": {
|
|
1066
|
-
"href": "langCon_apex_locking_records.htm"
|
|
1067
|
-
},
|
|
1068
|
-
"id": "langCon_apex_locking_records"
|
|
1069
|
-
}
|
|
1070
|
-
],
|
|
1071
|
-
"text": "Data Manipulation Language",
|
|
1072
|
-
"a_attr": {
|
|
1073
|
-
"href": "langCon_apex_dml.htm"
|
|
1074
|
-
},
|
|
1075
|
-
"id": "langCon_apex_dml"
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"children": [
|
|
1079
|
-
{
|
|
1080
|
-
"text": "Working with SOQL and SOSL Query Results",
|
|
1081
|
-
"a_attr": {
|
|
1082
|
-
"href": "langCon_apex_SOQL_working_with_results.htm"
|
|
1083
|
-
},
|
|
1084
|
-
"id": "langCon_apex_SOQL_working_with_results"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"text": "Accessing sObject Fields Through Relationships",
|
|
1088
|
-
"a_attr": {
|
|
1089
|
-
"href": "langCon_apex_SObjects_field_relationships.htm"
|
|
1090
|
-
},
|
|
1091
|
-
"id": "langCon_apex_SObjects_field_relationships"
|
|
1092
|
-
},
|
|
1093
|
-
{
|
|
1094
|
-
"text": "Understanding Foreign Key and Parent-Child Relationship SOQL Queries",
|
|
1095
|
-
"a_attr": {
|
|
1096
|
-
"href": "langCon_apex_SOQL_foreign_key.htm"
|
|
1097
|
-
},
|
|
1098
|
-
"id": "langCon_apex_SOQL_foreign_key"
|
|
1099
|
-
},
|
|
1100
|
-
{
|
|
1101
|
-
"text": "Working with SOQL Aggregate Functions",
|
|
1102
|
-
"a_attr": {
|
|
1103
|
-
"href": "langCon_apex_SOQL_agg_fns.htm"
|
|
1104
|
-
},
|
|
1105
|
-
"id": "langCon_apex_SOQL_agg_fns"
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"text": "Working with Very Large SOQL Queries",
|
|
1109
|
-
"a_attr": {
|
|
1110
|
-
"href": "langCon_apex_SOQL_VLSQ.htm"
|
|
1111
|
-
},
|
|
1112
|
-
"id": "langCon_apex_SOQL_VLSQ"
|
|
1113
|
-
},
|
|
1114
|
-
{
|
|
1115
|
-
"text": "Using SOQL Queries That Return One Record",
|
|
1116
|
-
"a_attr": {
|
|
1117
|
-
"href": "langCon_apex_SOQL_single_row.htm"
|
|
1118
|
-
},
|
|
1119
|
-
"id": "langCon_apex_SOQL_single_row"
|
|
1120
|
-
},
|
|
1121
|
-
{
|
|
1122
|
-
"text": "Improve Performance by Avoiding Null Values",
|
|
1123
|
-
"a_attr": {
|
|
1124
|
-
"href": "langCon_apex_SOQL_filtering_nulls.htm"
|
|
1125
|
-
},
|
|
1126
|
-
"id": "langCon_apex_SOQL_filtering_nulls"
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
"text": "Working with Polymorphic Relationships in SOQL Queries",
|
|
1130
|
-
"a_attr": {
|
|
1131
|
-
"href": "langCon_apex_SOQL_polymorphic_relationships.htm"
|
|
1132
|
-
},
|
|
1133
|
-
"id": "langCon_apex_SOQL_polymorphic_relationships"
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
"text": "Using Apex Variables in SOQL and SOSL Queries",
|
|
1137
|
-
"a_attr": {
|
|
1138
|
-
"href": "langCon_apex_SOQL_variables.htm"
|
|
1139
|
-
},
|
|
1140
|
-
"id": "langCon_apex_SOQL_variables"
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"text": "Querying All Records with a SOQL Statement",
|
|
1144
|
-
"a_attr": {
|
|
1145
|
-
"href": "langCon_apex_SOQL_query_all_rows.htm"
|
|
1146
|
-
},
|
|
1147
|
-
"id": "langCon_apex_SOQL_query_all_rows"
|
|
1148
|
-
}
|
|
1149
|
-
],
|
|
1150
|
-
"text": "SOQL and SOSL Queries",
|
|
1151
|
-
"a_attr": {
|
|
1152
|
-
"href": "langCon_apex_SOQL.htm"
|
|
1153
|
-
},
|
|
1154
|
-
"id": "langCon_apex_SOQL"
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
"text": "SOQL For Loops",
|
|
1158
|
-
"a_attr": {
|
|
1159
|
-
"href": "langCon_apex_loops_for_SOQL.htm"
|
|
1160
|
-
},
|
|
1161
|
-
"id": "langCon_apex_loops_for_SOQL"
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
"children": [
|
|
1165
|
-
{
|
|
1166
|
-
"text": "Lists of sObjects",
|
|
1167
|
-
"a_attr": {
|
|
1168
|
-
"href": "apex_list_sobject.htm"
|
|
1169
|
-
},
|
|
1170
|
-
"id": "apex_list_sobject"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"text": "Sorting Lists of sObjects",
|
|
1174
|
-
"a_attr": {
|
|
1175
|
-
"href": "apex_list_sorting_sobject.htm"
|
|
1176
|
-
},
|
|
1177
|
-
"id": "apex_list_sorting_sobject"
|
|
1178
|
-
},
|
|
1179
|
-
{
|
|
1180
|
-
"text": "Expanding sObject and List Expressions",
|
|
1181
|
-
"a_attr": {
|
|
1182
|
-
"href": "langCon_apex_expressions_extending_SObjects.htm"
|
|
1183
|
-
},
|
|
1184
|
-
"id": "langCon_apex_expressions_extending_SObjects"
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"text": "Sets of Objects",
|
|
1188
|
-
"a_attr": {
|
|
1189
|
-
"href": "apex_set_sobject.htm"
|
|
1190
|
-
},
|
|
1191
|
-
"id": "apex_set_sobject"
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
"children": [
|
|
1195
|
-
{
|
|
1196
|
-
"text": "sObject Map Considerations",
|
|
1197
|
-
"a_attr": {
|
|
1198
|
-
"href": "apex_map_sobject_considerations.htm"
|
|
1199
|
-
},
|
|
1200
|
-
"id": "apex_map_sobject_considerations"
|
|
1201
|
-
}
|
|
1202
|
-
],
|
|
1203
|
-
"text": "Maps of sObjects",
|
|
1204
|
-
"a_attr": {
|
|
1205
|
-
"href": "apex_map_sobject.htm"
|
|
1206
|
-
},
|
|
1207
|
-
"id": "apex_map_sobject"
|
|
1208
|
-
}
|
|
1209
|
-
],
|
|
1210
|
-
"text": "sObject Collections",
|
|
1211
|
-
"a_attr": {
|
|
1212
|
-
"href": "apex_sobject_collections.htm"
|
|
1213
|
-
},
|
|
1214
|
-
"id": "apex_sobject_collections"
|
|
1215
|
-
},
|
|
1216
|
-
{
|
|
1217
|
-
"children": [
|
|
1218
|
-
{
|
|
1219
|
-
"text": "Understanding Apex Describe Information",
|
|
1220
|
-
"a_attr": {
|
|
1221
|
-
"href": "apex_dynamic_describe_objects_understanding.htm"
|
|
1222
|
-
},
|
|
1223
|
-
"id": "apex_dynamic_describe_objects_understanding"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"text": "Using Field Tokens",
|
|
1227
|
-
"a_attr": {
|
|
1228
|
-
"href": "apex_dynamic_field_tokens.htm"
|
|
1229
|
-
},
|
|
1230
|
-
"id": "apex_dynamic_field_tokens"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"text": "Understanding Describe Information Permissions",
|
|
1234
|
-
"a_attr": {
|
|
1235
|
-
"href": "apex_dynamic_permissions.htm"
|
|
1236
|
-
},
|
|
1237
|
-
"id": "apex_dynamic_permissions"
|
|
1238
|
-
},
|
|
1239
|
-
{
|
|
1240
|
-
"text": "Describing sObjects Using Schema Method",
|
|
1241
|
-
"a_attr": {
|
|
1242
|
-
"href": "apex_dynamic_describeSObject.htm"
|
|
1243
|
-
},
|
|
1244
|
-
"id": "apex_dynamic_describeSObject"
|
|
1245
|
-
},
|
|
1246
|
-
{
|
|
1247
|
-
"text": "Describing Tabs Using Schema Methods",
|
|
1248
|
-
"a_attr": {
|
|
1249
|
-
"href": "apex_dynamic_describeTabs.htm"
|
|
1250
|
-
},
|
|
1251
|
-
"id": "apex_dynamic_describeTabs"
|
|
1252
|
-
},
|
|
1253
|
-
{
|
|
1254
|
-
"text": "Accessing All sObjects",
|
|
1255
|
-
"a_attr": {
|
|
1256
|
-
"href": "apex_dynamic_global_describe.htm"
|
|
1257
|
-
},
|
|
1258
|
-
"id": "apex_dynamic_global_describe"
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
"text": "Accessing All Data Categories Associated with an sObject",
|
|
1262
|
-
"a_attr": {
|
|
1263
|
-
"href": "apex_dynamic_data_categories.htm"
|
|
1264
|
-
},
|
|
1265
|
-
"id": "apex_dynamic_data_categories"
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"text": "Dynamic SOQL",
|
|
1269
|
-
"a_attr": {
|
|
1270
|
-
"href": "apex_dynamic_soql.htm"
|
|
1271
|
-
},
|
|
1272
|
-
"id": "apex_dynamic_soql"
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
"text": "Dynamic SOSL",
|
|
1276
|
-
"a_attr": {
|
|
1277
|
-
"href": "apex_dynamic_sosl.htm"
|
|
1278
|
-
},
|
|
1279
|
-
"id": "apex_dynamic_sosl"
|
|
1280
|
-
},
|
|
1281
|
-
{
|
|
1282
|
-
"text": "Dynamic DML",
|
|
1283
|
-
"a_attr": {
|
|
1284
|
-
"href": "apex_dynamic_dml.htm"
|
|
1285
|
-
},
|
|
1286
|
-
"id": "apex_dynamic_dml"
|
|
1287
|
-
}
|
|
1288
|
-
],
|
|
1289
|
-
"text": "Dynamic Apex",
|
|
1290
|
-
"a_attr": {
|
|
1291
|
-
"href": "apex_dynamic.htm"
|
|
1292
|
-
},
|
|
1293
|
-
"id": "apex_dynamic"
|
|
1294
|
-
},
|
|
1295
|
-
{
|
|
1296
|
-
"children": [
|
|
1297
|
-
{
|
|
1298
|
-
"text": "Enforcing Sharing Rules",
|
|
1299
|
-
"a_attr": {
|
|
1300
|
-
"href": "apex_security_sharing_rules.htm"
|
|
1301
|
-
},
|
|
1302
|
-
"id": "apex_security_sharing_rules"
|
|
1303
|
-
},
|
|
1304
|
-
{
|
|
1305
|
-
"text": "Enforcing Object and Field Permissions",
|
|
1306
|
-
"a_attr": {
|
|
1307
|
-
"href": "apex_classes_perms_enforcing.htm"
|
|
1308
|
-
},
|
|
1309
|
-
"id": "apex_classes_perms_enforcing"
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"text": "Enforce Security With the stripInaccessible Method",
|
|
1313
|
-
"a_attr": {
|
|
1314
|
-
"href": "apex_classes_with_security_stripInaccessible.htm"
|
|
1315
|
-
},
|
|
1316
|
-
"id": "apex_classes_with_security_stripInaccessible"
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
"text": "Filter SOQL Queries Using WITH SECURITY_ENFORCED",
|
|
1320
|
-
"a_attr": {
|
|
1321
|
-
"href": "apex_classes_with_security_enforced.htm"
|
|
1322
|
-
},
|
|
1323
|
-
"id": "apex_classes_with_security_enforced"
|
|
1324
|
-
},
|
|
1325
|
-
{
|
|
1326
|
-
"text": "Class Security",
|
|
1327
|
-
"a_attr": {
|
|
1328
|
-
"href": "apex_classes_security.htm"
|
|
1329
|
-
},
|
|
1330
|
-
"id": "apex_classes_security"
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
"children": [
|
|
1334
|
-
{
|
|
1335
|
-
"text": "Understanding Sharing",
|
|
1336
|
-
"a_attr": {
|
|
1337
|
-
"href": "apex_bulk_sharing_understanding.htm"
|
|
1338
|
-
},
|
|
1339
|
-
"id": "apex_bulk_sharing_understanding"
|
|
1340
|
-
},
|
|
1341
|
-
{
|
|
1342
|
-
"text": "Sharing a Record Using Apex",
|
|
1343
|
-
"a_attr": {
|
|
1344
|
-
"href": "apex_bulk_sharing_creating_with_apex.htm"
|
|
1345
|
-
},
|
|
1346
|
-
"id": "apex_bulk_sharing_creating_with_apex"
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
"text": "Recalculating Apex Managed Sharing",
|
|
1350
|
-
"a_attr": {
|
|
1351
|
-
"href": "apex_bulk_sharing_recalc.htm"
|
|
1352
|
-
},
|
|
1353
|
-
"id": "apex_bulk_sharing_recalc"
|
|
1354
|
-
}
|
|
1355
|
-
],
|
|
1356
|
-
"text": "Understanding Apex Managed Sharing",
|
|
1357
|
-
"a_attr": {
|
|
1358
|
-
"href": "apex_bulk_sharing.htm"
|
|
1359
|
-
},
|
|
1360
|
-
"id": "apex_bulk_sharing"
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
"children": [
|
|
1364
|
-
{
|
|
1365
|
-
"text": "Cross Site Scripting (XSS)",
|
|
1366
|
-
"a_attr": {
|
|
1367
|
-
"href": "pages_security_tips_xss.htm"
|
|
1368
|
-
},
|
|
1369
|
-
"id": "pages_security_tips_xss"
|
|
1370
|
-
},
|
|
1371
|
-
{
|
|
1372
|
-
"text": "Unescaped Output and Formulas in Visualforce Pages",
|
|
1373
|
-
"a_attr": {
|
|
1374
|
-
"href": "pages_security_tips_scontrols.htm"
|
|
1375
|
-
},
|
|
1376
|
-
"id": "pages_security_tips_scontrols"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"text": "Cross-Site Request Forgery (CSRF)",
|
|
1380
|
-
"a_attr": {
|
|
1381
|
-
"href": "pages_security_tips_csrf.htm"
|
|
1382
|
-
},
|
|
1383
|
-
"id": "pages_security_tips_csrf"
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"text": "SOQL Injection",
|
|
1387
|
-
"a_attr": {
|
|
1388
|
-
"href": "pages_security_tips_soql_injection.htm"
|
|
1389
|
-
},
|
|
1390
|
-
"id": "pages_security_tips_soql_injection"
|
|
1391
|
-
},
|
|
1392
|
-
{
|
|
1393
|
-
"text": "Data Access Control",
|
|
1394
|
-
"a_attr": {
|
|
1395
|
-
"href": "pages_security_tips_data_access_control.htm"
|
|
1396
|
-
},
|
|
1397
|
-
"id": "pages_security_tips_data_access_control"
|
|
1398
|
-
}
|
|
1399
|
-
],
|
|
1400
|
-
"text": "Security Tips for Apex and Visualforce Development",
|
|
1401
|
-
"a_attr": {
|
|
1402
|
-
"href": "pages_security_tips_intro.htm"
|
|
1403
|
-
},
|
|
1404
|
-
"id": "pages_security_tips_intro"
|
|
1405
|
-
}
|
|
1406
|
-
],
|
|
1407
|
-
"text": "Apex Security and Sharing",
|
|
1408
|
-
"a_attr": {
|
|
1409
|
-
"href": "apex_security_sharing_chapter.htm"
|
|
1410
|
-
},
|
|
1411
|
-
"id": "apex_security_sharing_chapter"
|
|
1412
|
-
},
|
|
1413
|
-
{
|
|
1414
|
-
"text": "Custom Settings",
|
|
1415
|
-
"a_attr": {
|
|
1416
|
-
"href": "apex_customsettings.htm"
|
|
1417
|
-
},
|
|
1418
|
-
"id": "apex_customsettings"
|
|
1419
|
-
}
|
|
1420
|
-
],
|
|
1421
|
-
"text": "Working with Data in Apex",
|
|
1422
|
-
"a_attr": {
|
|
1423
|
-
"href": "apex_data_intro.htm"
|
|
1424
|
-
},
|
|
1425
|
-
"id": "apex_data_intro"
|
|
1426
|
-
}
|
|
1427
|
-
],
|
|
1428
|
-
"text": "Writing Apex",
|
|
1429
|
-
"a_attr": {
|
|
1430
|
-
"href": "apex_writing.htm"
|
|
1431
|
-
},
|
|
1432
|
-
"id": "apex_writing"
|
|
1433
|
-
},
|
|
1434
|
-
{
|
|
1435
|
-
"children": [
|
|
1436
|
-
{
|
|
1437
|
-
"children": [
|
|
1438
|
-
{
|
|
1439
|
-
"text": "Anonymous Blocks",
|
|
1440
|
-
"a_attr": {
|
|
1441
|
-
"href": "apex_anonymous_block.htm"
|
|
1442
|
-
},
|
|
1443
|
-
"id": "apex_anonymous_block"
|
|
1444
|
-
},
|
|
1445
|
-
{
|
|
1446
|
-
"children": [
|
|
1447
|
-
{
|
|
1448
|
-
"text": "Bulk Triggers",
|
|
1449
|
-
"a_attr": {
|
|
1450
|
-
"href": "apex_triggers_bulk.htm"
|
|
1451
|
-
},
|
|
1452
|
-
"id": "apex_triggers_bulk"
|
|
1453
|
-
},
|
|
1454
|
-
{
|
|
1455
|
-
"text": "Trigger Syntax",
|
|
1456
|
-
"a_attr": {
|
|
1457
|
-
"href": "apex_triggers_syntax.htm"
|
|
1458
|
-
},
|
|
1459
|
-
"id": "apex_triggers_syntax"
|
|
1460
|
-
},
|
|
1461
|
-
{
|
|
1462
|
-
"text": "Trigger Context Variables",
|
|
1463
|
-
"a_attr": {
|
|
1464
|
-
"href": "apex_triggers_context_variables.htm"
|
|
1465
|
-
},
|
|
1466
|
-
"id": "apex_triggers_context_variables"
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
"text": "Context Variable Considerations",
|
|
1470
|
-
"a_attr": {
|
|
1471
|
-
"href": "apex_triggers_context_variables_considerations.htm"
|
|
1472
|
-
},
|
|
1473
|
-
"id": "apex_triggers_context_variables_considerations"
|
|
1474
|
-
},
|
|
1475
|
-
{
|
|
1476
|
-
"text": "Common Bulk Trigger Idioms",
|
|
1477
|
-
"a_attr": {
|
|
1478
|
-
"href": "apex_triggers_bulk_idioms.htm"
|
|
1479
|
-
},
|
|
1480
|
-
"id": "apex_triggers_bulk_idioms"
|
|
1481
|
-
},
|
|
1482
|
-
{
|
|
1483
|
-
"text": "Defining Triggers",
|
|
1484
|
-
"a_attr": {
|
|
1485
|
-
"href": "apex_triggers_defining.htm"
|
|
1486
|
-
},
|
|
1487
|
-
"id": "apex_triggers_defining"
|
|
1488
|
-
},
|
|
1489
|
-
{
|
|
1490
|
-
"text": "Triggers and Merge Statements",
|
|
1491
|
-
"a_attr": {
|
|
1492
|
-
"href": "apex_triggers_merge_statements.htm"
|
|
1493
|
-
},
|
|
1494
|
-
"id": "apex_triggers_merge_statements"
|
|
1495
|
-
},
|
|
1496
|
-
{
|
|
1497
|
-
"text": "Triggers and Recovered Records",
|
|
1498
|
-
"a_attr": {
|
|
1499
|
-
"href": "apex_triggers_recovered_records.htm"
|
|
1500
|
-
},
|
|
1501
|
-
"id": "apex_triggers_recovered_records"
|
|
1502
|
-
},
|
|
1503
|
-
{
|
|
1504
|
-
"text": "Triggers and Order of Execution",
|
|
1505
|
-
"a_attr": {
|
|
1506
|
-
"href": "apex_triggers_order_of_execution.htm"
|
|
1507
|
-
},
|
|
1508
|
-
"id": "apex_triggers_order_of_execution"
|
|
1509
|
-
},
|
|
1510
|
-
{
|
|
1511
|
-
"text": "Operations That Don't Invoke Triggers",
|
|
1512
|
-
"a_attr": {
|
|
1513
|
-
"href": "apex_triggers_ignoring_operations.htm"
|
|
1514
|
-
},
|
|
1515
|
-
"id": "apex_triggers_ignoring_operations"
|
|
1516
|
-
},
|
|
1517
|
-
{
|
|
1518
|
-
"text": "Entity and Field Considerations in Triggers",
|
|
1519
|
-
"a_attr": {
|
|
1520
|
-
"href": "apex_triggers_fields_not_updated.htm"
|
|
1521
|
-
},
|
|
1522
|
-
"id": "apex_triggers_fields_not_updated"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
"text": "Triggers for Chatter Objects",
|
|
1526
|
-
"a_attr": {
|
|
1527
|
-
"href": "apex_triggers_fields_not_updated_chatter.htm"
|
|
1528
|
-
},
|
|
1529
|
-
"id": "apex_triggers_fields_not_updated_chatter"
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"text": "Trigger Considerations for Knowledge Articles",
|
|
1533
|
-
"a_attr": {
|
|
1534
|
-
"href": "apex_triggers_knowledge_considerations.htm"
|
|
1535
|
-
},
|
|
1536
|
-
"id": "apex_triggers_knowledge_considerations"
|
|
1537
|
-
},
|
|
1538
|
-
{
|
|
1539
|
-
"text": "Trigger Exceptions",
|
|
1540
|
-
"a_attr": {
|
|
1541
|
-
"href": "apex_triggers_exceptions.htm"
|
|
1542
|
-
},
|
|
1543
|
-
"id": "apex_triggers_exceptions"
|
|
1544
|
-
},
|
|
1545
|
-
{
|
|
1546
|
-
"text": "Trigger and Bulk Request Best Practices",
|
|
1547
|
-
"a_attr": {
|
|
1548
|
-
"href": "apex_triggers_bestpract.htm"
|
|
1549
|
-
},
|
|
1550
|
-
"id": "apex_triggers_bestpract"
|
|
1551
|
-
}
|
|
1552
|
-
],
|
|
1553
|
-
"text": "Triggers",
|
|
1554
|
-
"a_attr": {
|
|
1555
|
-
"href": "apex_triggers.htm"
|
|
1556
|
-
},
|
|
1557
|
-
"id": "apex_triggers"
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
"children": [
|
|
1561
|
-
{
|
|
1562
|
-
"children": [
|
|
1563
|
-
{
|
|
1564
|
-
"text": "Transaction Finalizers (Pilot)",
|
|
1565
|
-
"a_attr": {
|
|
1566
|
-
"href": "apex_transaction_finalizers.htm"
|
|
1567
|
-
},
|
|
1568
|
-
"id": "apex_transaction_finalizers"
|
|
1569
|
-
}
|
|
1570
|
-
],
|
|
1571
|
-
"text": "Queueable Apex",
|
|
1572
|
-
"a_attr": {
|
|
1573
|
-
"href": "apex_queueing_jobs.htm"
|
|
1574
|
-
},
|
|
1575
|
-
"id": "apex_queueing_jobs"
|
|
1576
|
-
},
|
|
1577
|
-
{
|
|
1578
|
-
"text": "Apex Scheduler",
|
|
1579
|
-
"a_attr": {
|
|
1580
|
-
"href": "apex_scheduler.htm"
|
|
1581
|
-
},
|
|
1582
|
-
"id": "apex_scheduler"
|
|
1583
|
-
},
|
|
1584
|
-
{
|
|
1585
|
-
"children": [
|
|
1586
|
-
{
|
|
1587
|
-
"text": "Using Batch Apex",
|
|
1588
|
-
"a_attr": {
|
|
1589
|
-
"href": "apex_batch_interface.htm"
|
|
1590
|
-
},
|
|
1591
|
-
"id": "apex_batch_interface"
|
|
1592
|
-
},
|
|
1593
|
-
{
|
|
1594
|
-
"text": "Firing Platform Events from Batch Apex",
|
|
1595
|
-
"a_attr": {
|
|
1596
|
-
"href": "apex_batch_platformevents.htm"
|
|
1597
|
-
},
|
|
1598
|
-
"id": "apex_batch_platformevents"
|
|
1599
|
-
}
|
|
1600
|
-
],
|
|
1601
|
-
"text": "Batch Apex",
|
|
1602
|
-
"a_attr": {
|
|
1603
|
-
"href": "apex_batch.htm"
|
|
1604
|
-
},
|
|
1605
|
-
"id": "apex_batch"
|
|
1606
|
-
},
|
|
1607
|
-
{
|
|
1608
|
-
"text": "Future Methods",
|
|
1609
|
-
"a_attr": {
|
|
1610
|
-
"href": "apex_invoking_future_methods.htm"
|
|
1611
|
-
},
|
|
1612
|
-
"id": "apex_invoking_future_methods"
|
|
1613
|
-
}
|
|
1614
|
-
],
|
|
1615
|
-
"text": "Asynchronous Apex",
|
|
1616
|
-
"a_attr": {
|
|
1617
|
-
"href": "apex_async_overview.htm"
|
|
1618
|
-
},
|
|
1619
|
-
"id": "apex_async_overview"
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
"children": [
|
|
1623
|
-
{
|
|
1624
|
-
"text": "Webservice Methods",
|
|
1625
|
-
"a_attr": {
|
|
1626
|
-
"href": "apex_web_services_methods.htm"
|
|
1627
|
-
},
|
|
1628
|
-
"id": "apex_web_services_methods"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"text": "Exposing Data with Webservice Methods",
|
|
1632
|
-
"a_attr": {
|
|
1633
|
-
"href": "apex_web_services_methods_exposing.htm"
|
|
1634
|
-
},
|
|
1635
|
-
"id": "apex_web_services_methods_exposing"
|
|
1636
|
-
},
|
|
1637
|
-
{
|
|
1638
|
-
"text": "Considerations for Using the webservice Keyword",
|
|
1639
|
-
"a_attr": {
|
|
1640
|
-
"href": "apex_web_services_methods_considerations.htm"
|
|
1641
|
-
},
|
|
1642
|
-
"id": "apex_web_services_methods_considerations"
|
|
1643
|
-
},
|
|
1644
|
-
{
|
|
1645
|
-
"text": "Overloading Web Service Methods",
|
|
1646
|
-
"a_attr": {
|
|
1647
|
-
"href": "apex_web_services_methods_overloading.htm"
|
|
1648
|
-
},
|
|
1649
|
-
"id": "apex_web_services_methods_overloading"
|
|
1650
|
-
}
|
|
1651
|
-
],
|
|
1652
|
-
"text": "Exposing Apex Methods as SOAP Web Services",
|
|
1653
|
-
"a_attr": {
|
|
1654
|
-
"href": "apex_web_services.htm"
|
|
1655
|
-
},
|
|
1656
|
-
"id": "apex_web_services"
|
|
1657
|
-
},
|
|
1658
|
-
{
|
|
1659
|
-
"children": [
|
|
1660
|
-
{
|
|
1661
|
-
"text": "Introduction to Apex REST",
|
|
1662
|
-
"a_attr": {
|
|
1663
|
-
"href": "apex_rest_intro.htm"
|
|
1664
|
-
},
|
|
1665
|
-
"id": "apex_rest_intro"
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
"text": "Apex REST Annotations",
|
|
1669
|
-
"a_attr": {
|
|
1670
|
-
"href": "apex_rest_annotations_list.htm"
|
|
1671
|
-
},
|
|
1672
|
-
"id": "apex_rest_annotations_list"
|
|
1673
|
-
},
|
|
1674
|
-
{
|
|
1675
|
-
"text": "Apex REST Methods",
|
|
1676
|
-
"a_attr": {
|
|
1677
|
-
"href": "apex_rest_methods.htm"
|
|
1678
|
-
},
|
|
1679
|
-
"id": "apex_rest_methods"
|
|
1680
|
-
},
|
|
1681
|
-
{
|
|
1682
|
-
"text": "Exposing Data with Apex REST Web Service Methods",
|
|
1683
|
-
"a_attr": {
|
|
1684
|
-
"href": "apex_rest_exposing_data.htm"
|
|
1685
|
-
},
|
|
1686
|
-
"id": "apex_rest_exposing_data"
|
|
1687
|
-
},
|
|
1688
|
-
{
|
|
1689
|
-
"children": [
|
|
1690
|
-
{
|
|
1691
|
-
"text": "Apex REST Basic Code Sample",
|
|
1692
|
-
"a_attr": {
|
|
1693
|
-
"href": "apex_rest_code_sample_basic.htm"
|
|
1694
|
-
},
|
|
1695
|
-
"id": "apex_rest_code_sample_basic"
|
|
1696
|
-
},
|
|
1697
|
-
{
|
|
1698
|
-
"text": "Apex REST Code Sample Using RestRequest",
|
|
1699
|
-
"a_attr": {
|
|
1700
|
-
"href": "apex_rest_code_sample_restrequest.htm"
|
|
1701
|
-
},
|
|
1702
|
-
"id": "apex_rest_code_sample_restrequest"
|
|
1703
|
-
}
|
|
1704
|
-
],
|
|
1705
|
-
"text": "Apex REST Code Samples",
|
|
1706
|
-
"a_attr": {
|
|
1707
|
-
"href": "apex_rest_code_samples.htm"
|
|
1708
|
-
},
|
|
1709
|
-
"id": "apex_rest_code_samples"
|
|
1710
|
-
}
|
|
1711
|
-
],
|
|
1712
|
-
"text": "Exposing Apex Classes as REST Web Services",
|
|
1713
|
-
"a_attr": {
|
|
1714
|
-
"href": "apex_rest.htm"
|
|
1715
|
-
},
|
|
1716
|
-
"id": "apex_rest"
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
"text": "Apex Email Service",
|
|
1720
|
-
"a_attr": {
|
|
1721
|
-
"href": "apex_classes_email_inbound_what_is.htm"
|
|
1722
|
-
},
|
|
1723
|
-
"id": "apex_classes_email_inbound_what_is"
|
|
1724
|
-
},
|
|
1725
|
-
{
|
|
1726
|
-
"text": "Using the InboundEmail Object",
|
|
1727
|
-
"a_attr": {
|
|
1728
|
-
"href": "apex_classes_email_inbound_using.htm"
|
|
1729
|
-
},
|
|
1730
|
-
"id": "apex_classes_email_inbound_using"
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"text": "Visualforce Classes",
|
|
1734
|
-
"a_attr": {
|
|
1735
|
-
"href": "apex_pages.htm"
|
|
1736
|
-
},
|
|
1737
|
-
"id": "apex_pages"
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"text": "JavaScript Remoting",
|
|
1741
|
-
"a_attr": {
|
|
1742
|
-
"href": "apex_invoking_javascript_remoting.htm"
|
|
1743
|
-
},
|
|
1744
|
-
"id": "apex_invoking_javascript_remoting"
|
|
1745
|
-
},
|
|
1746
|
-
{
|
|
1747
|
-
"text": "Apex in AJAX",
|
|
1748
|
-
"a_attr": {
|
|
1749
|
-
"href": "apex_and_ajax.htm"
|
|
1750
|
-
},
|
|
1751
|
-
"id": "apex_and_ajax"
|
|
1752
|
-
}
|
|
1753
|
-
],
|
|
1754
|
-
"text": "Invoking Apex",
|
|
1755
|
-
"a_attr": {
|
|
1756
|
-
"href": "apex_invoking.htm"
|
|
1757
|
-
},
|
|
1758
|
-
"id": "apex_invoking"
|
|
1759
|
-
},
|
|
1760
|
-
{
|
|
1761
|
-
"children": [
|
|
1762
|
-
{
|
|
1763
|
-
"text": "Apex Transactions",
|
|
1764
|
-
"a_attr": {
|
|
1765
|
-
"href": "apex_transaction.htm"
|
|
1766
|
-
},
|
|
1767
|
-
"id": "apex_transaction"
|
|
1768
|
-
},
|
|
1769
|
-
{
|
|
1770
|
-
"text": "Execution Governors and Limits",
|
|
1771
|
-
"a_attr": {
|
|
1772
|
-
"href": "apex_gov_limits.htm"
|
|
1773
|
-
},
|
|
1774
|
-
"id": "apex_gov_limits"
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"text": "Set Up Governor Limit Email Warnings",
|
|
1778
|
-
"a_attr": {
|
|
1779
|
-
"href": "apex_gov_limits_emails.htm"
|
|
1780
|
-
},
|
|
1781
|
-
"id": "apex_gov_limits_emails"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"text": "Running Apex within Governor Execution Limits",
|
|
1785
|
-
"a_attr": {
|
|
1786
|
-
"href": "apex_limits_tips.htm"
|
|
1787
|
-
},
|
|
1788
|
-
"id": "apex_limits_tips"
|
|
1789
|
-
}
|
|
1790
|
-
],
|
|
1791
|
-
"text": "Apex Transactions and Governor Limits",
|
|
1792
|
-
"a_attr": {
|
|
1793
|
-
"href": "apex_limits_intro.htm"
|
|
1794
|
-
},
|
|
1795
|
-
"id": "apex_limits_intro"
|
|
1796
|
-
},
|
|
1797
|
-
{
|
|
1798
|
-
"children": [
|
|
1799
|
-
{
|
|
1800
|
-
"text": "Actions",
|
|
1801
|
-
"a_attr": {
|
|
1802
|
-
"href": "apex_quickaction.htm"
|
|
1803
|
-
},
|
|
1804
|
-
"id": "apex_quickaction"
|
|
1805
|
-
},
|
|
1806
|
-
{
|
|
1807
|
-
"children": [
|
|
1808
|
-
{
|
|
1809
|
-
"text": "Apex Approval Processing Example",
|
|
1810
|
-
"a_attr": {
|
|
1811
|
-
"href": "apex_process_example.htm"
|
|
1812
|
-
},
|
|
1813
|
-
"id": "apex_process_example"
|
|
1814
|
-
}
|
|
1815
|
-
],
|
|
1816
|
-
"text": "Approval Processing",
|
|
1817
|
-
"a_attr": {
|
|
1818
|
-
"href": "apex_process.htm"
|
|
1819
|
-
},
|
|
1820
|
-
"id": "apex_process"
|
|
1821
|
-
},
|
|
1822
|
-
{
|
|
1823
|
-
"children": [
|
|
1824
|
-
{
|
|
1825
|
-
"text": "Create a Custom Authentication Provider Plug-in",
|
|
1826
|
-
"a_attr": {
|
|
1827
|
-
"href": "authproviderplugin.htm"
|
|
1828
|
-
},
|
|
1829
|
-
"id": "authproviderplugin"
|
|
1830
|
-
}
|
|
1831
|
-
],
|
|
1832
|
-
"text": "Authentication",
|
|
1833
|
-
"a_attr": {
|
|
1834
|
-
"href": "authentication.htm"
|
|
1835
|
-
},
|
|
1836
|
-
"id": "authentication"
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"text": "Chatter Answers and Ideas",
|
|
1840
|
-
"a_attr": {
|
|
1841
|
-
"href": "apex_forcecom_zones_communities.htm"
|
|
1842
|
-
},
|
|
1843
|
-
"id": "apex_forcecom_zones_communities"
|
|
1844
|
-
},
|
|
1845
|
-
{
|
|
1846
|
-
"children": [
|
|
1847
|
-
{
|
|
1848
|
-
"children": [
|
|
1849
|
-
{
|
|
1850
|
-
"text": "Building a Synchronous Gateway Adapter",
|
|
1851
|
-
"a_attr": {
|
|
1852
|
-
"href": "apex_commercepayments_sync_adapter_concept.htm"
|
|
1853
|
-
},
|
|
1854
|
-
"id": "apex_commercepayments_sync_adapter_concept"
|
|
1855
|
-
},
|
|
1856
|
-
{
|
|
1857
|
-
"text": "Set Up a Synchronous Payment Gateway Adapter in Salesforce",
|
|
1858
|
-
"a_attr": {
|
|
1859
|
-
"href": "apex_commercepayments_sync_adapter_setup.htm"
|
|
1860
|
-
},
|
|
1861
|
-
"id": "apex_commercepayments_sync_adapter_setup"
|
|
1862
|
-
},
|
|
1863
|
-
{
|
|
1864
|
-
"text": "Building an Asynchronous Gateway Adapter",
|
|
1865
|
-
"a_attr": {
|
|
1866
|
-
"href": "apex_commercepayments_async_adapter_concept.htm"
|
|
1867
|
-
},
|
|
1868
|
-
"id": "apex_commercepayments_async_adapter_concept"
|
|
1869
|
-
},
|
|
1870
|
-
{
|
|
1871
|
-
"text": "Set Up an Asynchronous Payment Gateway Adapter in Salesforce",
|
|
1872
|
-
"a_attr": {
|
|
1873
|
-
"href": "apex_commercepayments_async_adapter_setup.htm"
|
|
1874
|
-
},
|
|
1875
|
-
"id": "apex_commercepayments_async_adapter_setup"
|
|
1876
|
-
},
|
|
1877
|
-
{
|
|
1878
|
-
"text": "Builder Examples for Payment Gateway Adapters",
|
|
1879
|
-
"a_attr": {
|
|
1880
|
-
"href": "apex_commercepayments_builder_examples.htm"
|
|
1881
|
-
},
|
|
1882
|
-
"id": "apex_commercepayments_builder_examples"
|
|
1883
|
-
}
|
|
1884
|
-
],
|
|
1885
|
-
"text": "Payment Gateway Adapters",
|
|
1886
|
-
"a_attr": {
|
|
1887
|
-
"href": "apex_commercepayments_adapter_intro.htm"
|
|
1888
|
-
},
|
|
1889
|
-
"id": "apex_commercepayments_adapter_intro"
|
|
1890
|
-
},
|
|
1891
|
-
{
|
|
1892
|
-
"text": "Process Payments",
|
|
1893
|
-
"a_attr": {
|
|
1894
|
-
"href": "apex_commercepayments_process_payments.htm"
|
|
1895
|
-
},
|
|
1896
|
-
"id": "apex_commercepayments_process_payments"
|
|
1897
|
-
},
|
|
1898
|
-
{
|
|
1899
|
-
"text": "Process Refund",
|
|
1900
|
-
"a_attr": {
|
|
1901
|
-
"href": "apex_commercepayments_process_refund.htm"
|
|
1902
|
-
},
|
|
1903
|
-
"id": "apex_commercepayments_process_refund"
|
|
1904
|
-
},
|
|
1905
|
-
{
|
|
1906
|
-
"text": "Idempotency Guidelines",
|
|
1907
|
-
"a_attr": {
|
|
1908
|
-
"href": "apex_commercepayments_idempotency_guidelines.htm"
|
|
1909
|
-
},
|
|
1910
|
-
"id": "apex_commercepayments_idempotency_guidelines"
|
|
1911
|
-
},
|
|
1912
|
-
{
|
|
1913
|
-
"text": "Sample Payment Gateway Implementation for CommercePayments",
|
|
1914
|
-
"a_attr": {
|
|
1915
|
-
"href": "apex_commercepayments_ref_github_repo.htm"
|
|
1916
|
-
},
|
|
1917
|
-
"id": "apex_commercepayments_ref_github_repo"
|
|
1918
|
-
}
|
|
1919
|
-
],
|
|
1920
|
-
"text": "Use Cases for the CommercePayments Namespace",
|
|
1921
|
-
"a_attr": {
|
|
1922
|
-
"href": "apex_commercepayments_use_cases.htm"
|
|
1923
|
-
},
|
|
1924
|
-
"id": "apex_commercepayments_use_cases"
|
|
1925
|
-
},
|
|
1926
|
-
{
|
|
1927
|
-
"children": [
|
|
1928
|
-
{
|
|
1929
|
-
"children": [
|
|
1930
|
-
{
|
|
1931
|
-
"text": "Get Feed Elements From a Feed",
|
|
1932
|
-
"a_attr": {
|
|
1933
|
-
"href": "connectapi_examples_get_feed_elements.htm"
|
|
1934
|
-
},
|
|
1935
|
-
"id": "connectapi_examples_get_feed_elements"
|
|
1936
|
-
},
|
|
1937
|
-
{
|
|
1938
|
-
"text": "Get Feed Elements From Another User’s Feed",
|
|
1939
|
-
"a_attr": {
|
|
1940
|
-
"href": "connectapi_examples_get_feed_elements_another_user.htm"
|
|
1941
|
-
},
|
|
1942
|
-
"id": "connectapi_examples_get_feed_elements_another_user"
|
|
1943
|
-
},
|
|
1944
|
-
{
|
|
1945
|
-
"text": "Get Community-Specific Feed Elements from a Feed",
|
|
1946
|
-
"a_attr": {
|
|
1947
|
-
"href": "connectapi_examples_get_feed_elements_community_scoped.htm"
|
|
1948
|
-
},
|
|
1949
|
-
"id": "connectapi_examples_get_feed_elements_community_scoped"
|
|
1950
|
-
},
|
|
1951
|
-
{
|
|
1952
|
-
"text": "Post a Feed Element",
|
|
1953
|
-
"a_attr": {
|
|
1954
|
-
"href": "connectapi_examples_post_feed_element.htm"
|
|
1955
|
-
},
|
|
1956
|
-
"id": "connectapi_examples_post_feed_element"
|
|
1957
|
-
},
|
|
1958
|
-
{
|
|
1959
|
-
"text": "Post a Feed Element with a Mention",
|
|
1960
|
-
"a_attr": {
|
|
1961
|
-
"href": "connectapi_examples_post_feed_element_mention.htm"
|
|
1962
|
-
},
|
|
1963
|
-
"id": "connectapi_examples_post_feed_element_mention"
|
|
1964
|
-
},
|
|
1965
|
-
{
|
|
1966
|
-
"text": "Post a Feed Element with Existing Content",
|
|
1967
|
-
"a_attr": {
|
|
1968
|
-
"href": "connectapi_examples_post_feed_element_content.htm"
|
|
1969
|
-
},
|
|
1970
|
-
"id": "connectapi_examples_post_feed_element_content"
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
"text": "Post a Rich-Text Feed Element with Inline Image",
|
|
1974
|
-
"a_attr": {
|
|
1975
|
-
"href": "connectapi_examples_post_feed_element_richtext_inlineimage.htm"
|
|
1976
|
-
},
|
|
1977
|
-
"id": "connectapi_examples_post_feed_element_richtext_inlineimage"
|
|
1978
|
-
},
|
|
1979
|
-
{
|
|
1980
|
-
"text": "Post a Rich-Text Feed Element with a Code Block",
|
|
1981
|
-
"a_attr": {
|
|
1982
|
-
"href": "connectapi_examples_post_feed_element_richtext_code_snippet.htm"
|
|
1983
|
-
},
|
|
1984
|
-
"id": "connectapi_examples_post_feed_element_richtext_code_snippet"
|
|
1985
|
-
},
|
|
1986
|
-
{
|
|
1987
|
-
"text": "Post a Feed Element with a New File (Binary) Attachment",
|
|
1988
|
-
"a_attr": {
|
|
1989
|
-
"href": "connectapi_examples_post_feed_element_binary.htm"
|
|
1990
|
-
},
|
|
1991
|
-
"id": "connectapi_examples_post_feed_element_binary"
|
|
1992
|
-
},
|
|
1993
|
-
{
|
|
1994
|
-
"text": "Post a Batch of Feed Elements",
|
|
1995
|
-
"a_attr": {
|
|
1996
|
-
"href": "connectapi_examples_post_feed_element_batch.htm"
|
|
1997
|
-
},
|
|
1998
|
-
"id": "connectapi_examples_post_feed_element_batch"
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
"text": "Post a Batch of Feed Elements with a New (Binary) File",
|
|
2002
|
-
"a_attr": {
|
|
2003
|
-
"href": "connectapi_examples_post_feed_element_batch_binary.htm"
|
|
2004
|
-
},
|
|
2005
|
-
"id": "connectapi_examples_post_feed_element_batch_binary"
|
|
2006
|
-
},
|
|
2007
|
-
{
|
|
2008
|
-
"text": "Define an Action Link and Post with a Feed Element",
|
|
2009
|
-
"a_attr": {
|
|
2010
|
-
"href": "connectapi_examples_define_post_action_link.htm"
|
|
2011
|
-
},
|
|
2012
|
-
"id": "connectapi_examples_define_post_action_link"
|
|
2013
|
-
},
|
|
2014
|
-
{
|
|
2015
|
-
"text": "Define an Action Link in a Template and Post with a Feed Element",
|
|
2016
|
-
"a_attr": {
|
|
2017
|
-
"href": "connectapi_examples_define_post_action_link_template.htm"
|
|
2018
|
-
},
|
|
2019
|
-
"id": "connectapi_examples_define_post_action_link_template"
|
|
2020
|
-
},
|
|
2021
|
-
{
|
|
2022
|
-
"text": "Edit a Feed Element",
|
|
2023
|
-
"a_attr": {
|
|
2024
|
-
"href": "connectapi_examples_edit_feed_element.htm"
|
|
2025
|
-
},
|
|
2026
|
-
"id": "connectapi_examples_edit_feed_element"
|
|
2027
|
-
},
|
|
2028
|
-
{
|
|
2029
|
-
"text": "Edit a Question Title and Post",
|
|
2030
|
-
"a_attr": {
|
|
2031
|
-
"href": "connectapi_examples_edit_question_title_post.htm"
|
|
2032
|
-
},
|
|
2033
|
-
"id": "connectapi_examples_edit_question_title_post"
|
|
2034
|
-
},
|
|
2035
|
-
{
|
|
2036
|
-
"text": "Like a Feed Element",
|
|
2037
|
-
"a_attr": {
|
|
2038
|
-
"href": "connectapi_examples_like_feed_element.htm"
|
|
2039
|
-
},
|
|
2040
|
-
"id": "connectapi_examples_like_feed_element"
|
|
2041
|
-
},
|
|
2042
|
-
{
|
|
2043
|
-
"text": "Bookmark a Feed Element",
|
|
2044
|
-
"a_attr": {
|
|
2045
|
-
"href": "connectapi_examples_bookmark_feed_element.htm"
|
|
2046
|
-
},
|
|
2047
|
-
"id": "connectapi_examples_bookmark_feed_element"
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"text": "Share a Feed Element (prior to Version 39.0)",
|
|
2051
|
-
"a_attr": {
|
|
2052
|
-
"href": "connectapi_examples_share_feed_element.htm"
|
|
2053
|
-
},
|
|
2054
|
-
"id": "connectapi_examples_share_feed_element"
|
|
2055
|
-
},
|
|
2056
|
-
{
|
|
2057
|
-
"text": "Share a Feed Element (in Version 39.0 and Later)",
|
|
2058
|
-
"a_attr": {
|
|
2059
|
-
"href": "connectapi_examples_share_feed_element_comment.htm"
|
|
2060
|
-
},
|
|
2061
|
-
"id": "connectapi_examples_share_feed_element_comment"
|
|
2062
|
-
},
|
|
2063
|
-
{
|
|
2064
|
-
"text": "Send a Direct Message",
|
|
2065
|
-
"a_attr": {
|
|
2066
|
-
"href": "connectapi_examples_post_feed_element_direct_message.htm"
|
|
2067
|
-
},
|
|
2068
|
-
"id": "connectapi_examples_post_feed_element_direct_message"
|
|
2069
|
-
},
|
|
2070
|
-
{
|
|
2071
|
-
"text": "Post a Comment",
|
|
2072
|
-
"a_attr": {
|
|
2073
|
-
"href": "connectapi_examples_post_comment_feed_element.htm"
|
|
2074
|
-
},
|
|
2075
|
-
"id": "connectapi_examples_post_comment_feed_element"
|
|
2076
|
-
},
|
|
2077
|
-
{
|
|
2078
|
-
"text": "Post a Comment with a Mention",
|
|
2079
|
-
"a_attr": {
|
|
2080
|
-
"href": "connectapi_examples_post_comment_feed_element_2.htm"
|
|
2081
|
-
},
|
|
2082
|
-
"id": "connectapi_examples_post_comment_feed_element_2"
|
|
2083
|
-
},
|
|
2084
|
-
{
|
|
2085
|
-
"text": "Post a Comment with an Existing File",
|
|
2086
|
-
"a_attr": {
|
|
2087
|
-
"href": "connectapi_examples_post_comment_feed_element_4.htm"
|
|
2088
|
-
},
|
|
2089
|
-
"id": "connectapi_examples_post_comment_feed_element_4"
|
|
2090
|
-
},
|
|
2091
|
-
{
|
|
2092
|
-
"text": "Post a Comment with a New File",
|
|
2093
|
-
"a_attr": {
|
|
2094
|
-
"href": "connectapi_examples_post_comment_feed_element_3.htm"
|
|
2095
|
-
},
|
|
2096
|
-
"id": "connectapi_examples_post_comment_feed_element_3"
|
|
2097
|
-
},
|
|
2098
|
-
{
|
|
2099
|
-
"text": "Post a Rich-Text Comment with Inline Image",
|
|
2100
|
-
"a_attr": {
|
|
2101
|
-
"href": "connectapi_examples_post_comment_richtext_inlineimage.htm"
|
|
2102
|
-
},
|
|
2103
|
-
"id": "connectapi_examples_post_comment_richtext_inlineimage"
|
|
2104
|
-
},
|
|
2105
|
-
{
|
|
2106
|
-
"text": "Post a Rich-Text Feed Comment with a Code Block",
|
|
2107
|
-
"a_attr": {
|
|
2108
|
-
"href": "connectapi_examples_post_comment_richtext_code_snippet.htm"
|
|
2109
|
-
},
|
|
2110
|
-
"id": "connectapi_examples_post_comment_richtext_code_snippet"
|
|
2111
|
-
},
|
|
2112
|
-
{
|
|
2113
|
-
"text": "Edit a Comment",
|
|
2114
|
-
"a_attr": {
|
|
2115
|
-
"href": "connectapi_examples_edit_comment.htm"
|
|
2116
|
-
},
|
|
2117
|
-
"id": "connectapi_examples_edit_comment"
|
|
2118
|
-
},
|
|
2119
|
-
{
|
|
2120
|
-
"text": "Follow a Record",
|
|
2121
|
-
"a_attr": {
|
|
2122
|
-
"href": "connectapi_examples_follow_record.htm"
|
|
2123
|
-
},
|
|
2124
|
-
"id": "connectapi_examples_follow_record"
|
|
2125
|
-
},
|
|
2126
|
-
{
|
|
2127
|
-
"text": "Unfollow a Record",
|
|
2128
|
-
"a_attr": {
|
|
2129
|
-
"href": "connectapi_examples_unfollow_record.htm"
|
|
2130
|
-
},
|
|
2131
|
-
"id": "connectapi_examples_unfollow_record"
|
|
2132
|
-
},
|
|
2133
|
-
{
|
|
2134
|
-
"text": "Get a Repository",
|
|
2135
|
-
"a_attr": {
|
|
2136
|
-
"href": "connectapi_examples_get_repository.htm"
|
|
2137
|
-
},
|
|
2138
|
-
"id": "connectapi_examples_get_repository"
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
"text": "Get Repositories",
|
|
2142
|
-
"a_attr": {
|
|
2143
|
-
"href": "connectapi_examples_get_repositories.htm"
|
|
2144
|
-
},
|
|
2145
|
-
"id": "connectapi_examples_get_repositories"
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
"text": "Get Allowed Item Types",
|
|
2149
|
-
"a_attr": {
|
|
2150
|
-
"href": "connectapi_examples_get_allowed_item_types.htm"
|
|
2151
|
-
},
|
|
2152
|
-
"id": "connectapi_examples_get_allowed_item_types"
|
|
2153
|
-
},
|
|
2154
|
-
{
|
|
2155
|
-
"text": "Get Previews",
|
|
2156
|
-
"a_attr": {
|
|
2157
|
-
"href": "connectapi_examples_get_previews.htm"
|
|
2158
|
-
},
|
|
2159
|
-
"id": "connectapi_examples_get_previews"
|
|
2160
|
-
},
|
|
2161
|
-
{
|
|
2162
|
-
"text": "Get a File Preview",
|
|
2163
|
-
"a_attr": {
|
|
2164
|
-
"href": "connectapi_examples_get_file_preview.htm"
|
|
2165
|
-
},
|
|
2166
|
-
"id": "connectapi_examples_get_file_preview"
|
|
2167
|
-
},
|
|
2168
|
-
{
|
|
2169
|
-
"text": "Get Repository Folder Items",
|
|
2170
|
-
"a_attr": {
|
|
2171
|
-
"href": "connectapi_examples_get_repository_folder_items.htm"
|
|
2172
|
-
},
|
|
2173
|
-
"id": "connectapi_examples_get_repository_folder_items"
|
|
2174
|
-
},
|
|
2175
|
-
{
|
|
2176
|
-
"text": "Get a Repository Folder",
|
|
2177
|
-
"a_attr": {
|
|
2178
|
-
"href": "connectapi_examples_get_repository_folder.htm"
|
|
2179
|
-
},
|
|
2180
|
-
"id": "connectapi_examples_get_repository_folder"
|
|
2181
|
-
},
|
|
2182
|
-
{
|
|
2183
|
-
"text": "Get a Repository File Without Permissions Information",
|
|
2184
|
-
"a_attr": {
|
|
2185
|
-
"href": "connectapi_examples_get_repository_file_without_perms.htm"
|
|
2186
|
-
},
|
|
2187
|
-
"id": "connectapi_examples_get_repository_file_without_perms"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"text": "Get a Repository File with Permissions Information",
|
|
2191
|
-
"a_attr": {
|
|
2192
|
-
"href": "connectapi_examples_get_repository_file_with_perms.htm"
|
|
2193
|
-
},
|
|
2194
|
-
"id": "connectapi_examples_get_repository_file_with_perms"
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
"text": "Create a Repository File Without Content (Metadata Only)",
|
|
2198
|
-
"a_attr": {
|
|
2199
|
-
"href": "connectapi_examples_add_repository_item_metadata.htm"
|
|
2200
|
-
},
|
|
2201
|
-
"id": "connectapi_examples_add_repository_item_metadata"
|
|
2202
|
-
},
|
|
2203
|
-
{
|
|
2204
|
-
"text": "Create a Repository File with Content",
|
|
2205
|
-
"a_attr": {
|
|
2206
|
-
"href": "connectapi_examples_add_repository_item_binary.htm"
|
|
2207
|
-
},
|
|
2208
|
-
"id": "connectapi_examples_add_repository_item_binary"
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"text": "Update a Repository File Without Content (Metadata Only)",
|
|
2212
|
-
"a_attr": {
|
|
2213
|
-
"href": "connectapi_examples_update_repository_item_metadata.htm"
|
|
2214
|
-
},
|
|
2215
|
-
"id": "connectapi_examples_update_repository_item_metadata"
|
|
2216
|
-
},
|
|
2217
|
-
{
|
|
2218
|
-
"text": "Update a Repository File with Content",
|
|
2219
|
-
"a_attr": {
|
|
2220
|
-
"href": "connectapi_examples_update_repository_item_binary.htm"
|
|
2221
|
-
},
|
|
2222
|
-
"id": "connectapi_examples_update_repository_item_binary"
|
|
2223
|
-
}
|
|
2224
|
-
],
|
|
2225
|
-
"text": "Connect in Apex Examples",
|
|
2226
|
-
"a_attr": {
|
|
2227
|
-
"href": "connectapi_examples.htm"
|
|
2228
|
-
},
|
|
2229
|
-
"id": "connectapi_examples"
|
|
2230
|
-
},
|
|
2231
|
-
{
|
|
2232
|
-
"children": [
|
|
2233
|
-
{
|
|
2234
|
-
"children": [
|
|
2235
|
-
{
|
|
2236
|
-
"text": "Action Links Overview, Authentication, and Security",
|
|
2237
|
-
"a_attr": {
|
|
2238
|
-
"href": "connectapi_features_action_links_overview.htm"
|
|
2239
|
-
},
|
|
2240
|
-
"id": "connectapi_features_action_links_overview"
|
|
2241
|
-
},
|
|
2242
|
-
{
|
|
2243
|
-
"text": "Action Links Use Case",
|
|
2244
|
-
"a_attr": {
|
|
2245
|
-
"href": "connectapi_features_action_links_use_cases.htm"
|
|
2246
|
-
},
|
|
2247
|
-
"id": "connectapi_features_action_links_use_cases"
|
|
2248
|
-
},
|
|
2249
|
-
{
|
|
2250
|
-
"children": [
|
|
2251
|
-
{
|
|
2252
|
-
"text": "Design Action Link Templates",
|
|
2253
|
-
"a_attr": {
|
|
2254
|
-
"href": "action_link_group_template_design.htm"
|
|
2255
|
-
},
|
|
2256
|
-
"id": "action_link_group_template_design"
|
|
2257
|
-
},
|
|
2258
|
-
{
|
|
2259
|
-
"text": "Create Action Link Templates",
|
|
2260
|
-
"a_attr": {
|
|
2261
|
-
"href": "action_link_group_template_create.htm"
|
|
2262
|
-
},
|
|
2263
|
-
"id": "action_link_group_template_create"
|
|
2264
|
-
},
|
|
2265
|
-
{
|
|
2266
|
-
"text": "Edit Action Link Templates",
|
|
2267
|
-
"a_attr": {
|
|
2268
|
-
"href": "action_link_group_template_edit.htm"
|
|
2269
|
-
},
|
|
2270
|
-
"id": "action_link_group_template_edit"
|
|
2271
|
-
},
|
|
2272
|
-
{
|
|
2273
|
-
"text": "Delete Action Link Group Templates",
|
|
2274
|
-
"a_attr": {
|
|
2275
|
-
"href": "action_link_group_template_delete.htm"
|
|
2276
|
-
},
|
|
2277
|
-
"id": "action_link_group_template_delete"
|
|
2278
|
-
},
|
|
2279
|
-
{
|
|
2280
|
-
"text": "Package Action Link Templates",
|
|
2281
|
-
"a_attr": {
|
|
2282
|
-
"href": "action_link_group_template_package.htm"
|
|
2283
|
-
},
|
|
2284
|
-
"id": "action_link_group_template_package"
|
|
2285
|
-
}
|
|
2286
|
-
],
|
|
2287
|
-
"text": "Action Link Templates",
|
|
2288
|
-
"a_attr": {
|
|
2289
|
-
"href": "action_link_group_template.htm"
|
|
2290
|
-
},
|
|
2291
|
-
"id": "action_link_group_template"
|
|
2292
|
-
}
|
|
2293
|
-
],
|
|
2294
|
-
"text": "Working with Action Links",
|
|
2295
|
-
"a_attr": {
|
|
2296
|
-
"href": "connectapi_features_action_links.htm"
|
|
2297
|
-
},
|
|
2298
|
-
"id": "connectapi_features_action_links"
|
|
2299
|
-
},
|
|
2300
|
-
{
|
|
2301
|
-
"text": "Working with Feeds and Feed Elements",
|
|
2302
|
-
"a_attr": {
|
|
2303
|
-
"href": "connectapi_features_feeds_feed_elements.htm"
|
|
2304
|
-
},
|
|
2305
|
-
"id": "connectapi_features_feeds_feed_elements"
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"text": "Accessing ConnectApi Data in Communities and Portals",
|
|
2309
|
-
"a_attr": {
|
|
2310
|
-
"href": "apex_connectapi_communities.htm"
|
|
2311
|
-
},
|
|
2312
|
-
"id": "apex_connectapi_communities"
|
|
2313
|
-
},
|
|
2314
|
-
{
|
|
2315
|
-
"text": "Methods Available to Communities Guest Users",
|
|
2316
|
-
"a_attr": {
|
|
2317
|
-
"href": "apex_connectapi_public_communities.htm"
|
|
2318
|
-
},
|
|
2319
|
-
"id": "apex_connectapi_public_communities"
|
|
2320
|
-
}
|
|
2321
|
-
],
|
|
2322
|
-
"text": "Connect in Apex Features",
|
|
2323
|
-
"a_attr": {
|
|
2324
|
-
"href": "connectapi_features.htm"
|
|
2325
|
-
},
|
|
2326
|
-
"id": "connectapi_features"
|
|
2327
|
-
},
|
|
2328
|
-
{
|
|
2329
|
-
"text": "Using ConnectApi Input and Output Classes",
|
|
2330
|
-
"a_attr": {
|
|
2331
|
-
"href": "apex_connectapi_inputs_outputs.htm"
|
|
2332
|
-
},
|
|
2333
|
-
"id": "apex_connectapi_inputs_outputs"
|
|
2334
|
-
},
|
|
2335
|
-
{
|
|
2336
|
-
"text": "Understanding Limits for ConnectApi Classes",
|
|
2337
|
-
"a_attr": {
|
|
2338
|
-
"href": "apex_connect_api_limits.htm"
|
|
2339
|
-
},
|
|
2340
|
-
"id": "apex_connect_api_limits"
|
|
2341
|
-
},
|
|
2342
|
-
{
|
|
2343
|
-
"text": "Packaging ConnectApi Classes",
|
|
2344
|
-
"a_attr": {
|
|
2345
|
-
"href": "apex_connect_api_packaging.htm"
|
|
2346
|
-
},
|
|
2347
|
-
"id": "apex_connect_api_packaging"
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"text": "Serializing and Deserializing ConnectApi Objects",
|
|
2351
|
-
"a_attr": {
|
|
2352
|
-
"href": "apex_connectapi_serialization.htm"
|
|
2353
|
-
},
|
|
2354
|
-
"id": "apex_connectapi_serialization"
|
|
2355
|
-
},
|
|
2356
|
-
{
|
|
2357
|
-
"text": "ConnectApi Versioning and Equality Checking",
|
|
2358
|
-
"a_attr": {
|
|
2359
|
-
"href": "apex_connectapi_versioning.htm"
|
|
2360
|
-
},
|
|
2361
|
-
"id": "apex_connectapi_versioning"
|
|
2362
|
-
},
|
|
2363
|
-
{
|
|
2364
|
-
"text": "Casting ConnectApi Objects",
|
|
2365
|
-
"a_attr": {
|
|
2366
|
-
"href": "apex_connectapi_casting.htm"
|
|
2367
|
-
},
|
|
2368
|
-
"id": "apex_connectapi_casting"
|
|
2369
|
-
},
|
|
2370
|
-
{
|
|
2371
|
-
"text": "Wildcards",
|
|
2372
|
-
"a_attr": {
|
|
2373
|
-
"href": "intro_wildcards.htm"
|
|
2374
|
-
},
|
|
2375
|
-
"id": "intro_wildcards"
|
|
2376
|
-
},
|
|
2377
|
-
{
|
|
2378
|
-
"text": "Testing ConnectApi Code",
|
|
2379
|
-
"a_attr": {
|
|
2380
|
-
"href": "connectAPI_TestingApex.htm"
|
|
2381
|
-
},
|
|
2382
|
-
"id": "connectAPI_TestingApex"
|
|
2383
|
-
},
|
|
2384
|
-
{
|
|
2385
|
-
"text": "Differences Between ConnectApi Classes and Other Apex Classes",
|
|
2386
|
-
"a_attr": {
|
|
2387
|
-
"href": "apex_connectapi_differences.htm"
|
|
2388
|
-
},
|
|
2389
|
-
"id": "apex_connectapi_differences"
|
|
2390
|
-
}
|
|
2391
|
-
],
|
|
2392
|
-
"text": "Connect in Apex",
|
|
2393
|
-
"a_attr": {
|
|
2394
|
-
"href": "connectAPI_overview.htm"
|
|
2395
|
-
},
|
|
2396
|
-
"id": "connectAPI_overview"
|
|
2397
|
-
},
|
|
2398
|
-
{
|
|
2399
|
-
"text": "Moderate Chatter Private Messages with Triggers",
|
|
2400
|
-
"a_attr": {
|
|
2401
|
-
"href": "apex_chattermessage_triggers.htm"
|
|
2402
|
-
},
|
|
2403
|
-
"id": "apex_chattermessage_triggers"
|
|
2404
|
-
},
|
|
2405
|
-
{
|
|
2406
|
-
"text": "Moderate Feed Items with Triggers",
|
|
2407
|
-
"a_attr": {
|
|
2408
|
-
"href": "apex_feedItem_triggers.htm"
|
|
2409
|
-
},
|
|
2410
|
-
"id": "apex_feedItem_triggers"
|
|
2411
|
-
},
|
|
2412
|
-
{
|
|
2413
|
-
"text": "Communities",
|
|
2414
|
-
"a_attr": {
|
|
2415
|
-
"href": "apex_forcecom_communities.htm"
|
|
2416
|
-
},
|
|
2417
|
-
"id": "apex_forcecom_communities"
|
|
2418
|
-
},
|
|
2419
|
-
{
|
|
2420
|
-
"children": [
|
|
2421
|
-
{
|
|
2422
|
-
"text": "Inbound Email",
|
|
2423
|
-
"a_attr": {
|
|
2424
|
-
"href": "apex_classes_email_inbound.htm"
|
|
2425
|
-
},
|
|
2426
|
-
"id": "apex_classes_email_inbound"
|
|
2427
|
-
},
|
|
2428
|
-
{
|
|
2429
|
-
"text": "Outbound Email",
|
|
2430
|
-
"a_attr": {
|
|
2431
|
-
"href": "apex_forcecom_email_outbound.htm"
|
|
2432
|
-
},
|
|
2433
|
-
"id": "apex_forcecom_email_outbound"
|
|
2434
|
-
}
|
|
2435
|
-
],
|
|
2436
|
-
"text": "Email",
|
|
2437
|
-
"a_attr": {
|
|
2438
|
-
"href": "apex_forcecom_email.htm"
|
|
2439
|
-
},
|
|
2440
|
-
"id": "apex_forcecom_email"
|
|
2441
|
-
},
|
|
2442
|
-
{
|
|
2443
|
-
"children": [
|
|
2444
|
-
{
|
|
2445
|
-
"text": "Retrieving and Deploying Metadata",
|
|
2446
|
-
"a_attr": {
|
|
2447
|
-
"href": "apex_metadata_retrieve_deploy.htm"
|
|
2448
|
-
},
|
|
2449
|
-
"id": "apex_metadata_retrieve_deploy"
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"text": "Supported Metadata Types",
|
|
2453
|
-
"a_attr": {
|
|
2454
|
-
"href": "apex_metadata_supported_types.htm"
|
|
2455
|
-
},
|
|
2456
|
-
"id": "apex_metadata_supported_types"
|
|
2457
|
-
},
|
|
2458
|
-
{
|
|
2459
|
-
"text": "Security Considerations",
|
|
2460
|
-
"a_attr": {
|
|
2461
|
-
"href": "apex_metadata_security.htm"
|
|
2462
|
-
},
|
|
2463
|
-
"id": "apex_metadata_security"
|
|
2464
|
-
},
|
|
2465
|
-
{
|
|
2466
|
-
"text": "Testing Metadata Deployments",
|
|
2467
|
-
"a_attr": {
|
|
2468
|
-
"href": "apex_metadata_testing.htm"
|
|
2469
|
-
},
|
|
2470
|
-
"id": "apex_metadata_testing"
|
|
2471
|
-
}
|
|
2472
|
-
],
|
|
2473
|
-
"text": "Metadata",
|
|
2474
|
-
"a_attr": {
|
|
2475
|
-
"href": "apex_metadata.htm"
|
|
2476
|
-
},
|
|
2477
|
-
"id": "apex_metadata"
|
|
2478
|
-
},
|
|
2479
|
-
{
|
|
2480
|
-
"children": [
|
|
2481
|
-
{
|
|
2482
|
-
"text": "Platform Cache Features",
|
|
2483
|
-
"a_attr": {
|
|
2484
|
-
"href": "apex_platform_cache_features.htm"
|
|
2485
|
-
},
|
|
2486
|
-
"id": "apex_platform_cache_features"
|
|
2487
|
-
},
|
|
2488
|
-
{
|
|
2489
|
-
"text": "Platform Cache Considerations",
|
|
2490
|
-
"a_attr": {
|
|
2491
|
-
"href": "apex_platform_cache_limitations.htm"
|
|
2492
|
-
},
|
|
2493
|
-
"id": "apex_platform_cache_limitations"
|
|
2494
|
-
},
|
|
2495
|
-
{
|
|
2496
|
-
"text": "Platform Cache Limits",
|
|
2497
|
-
"a_attr": {
|
|
2498
|
-
"href": "apex_platform_cache_limits.htm"
|
|
2499
|
-
},
|
|
2500
|
-
"id": "apex_platform_cache_limits"
|
|
2501
|
-
},
|
|
2502
|
-
{
|
|
2503
|
-
"text": "Platform Cache Partitions",
|
|
2504
|
-
"a_attr": {
|
|
2505
|
-
"href": "apex_cache_partition_setup.htm"
|
|
2506
|
-
},
|
|
2507
|
-
"id": "apex_cache_partition_setup"
|
|
2508
|
-
},
|
|
2509
|
-
{
|
|
2510
|
-
"text": "Platform Cache Internals",
|
|
2511
|
-
"a_attr": {
|
|
2512
|
-
"href": "apex_platform_cache_internals.htm"
|
|
2513
|
-
},
|
|
2514
|
-
"id": "apex_platform_cache_internals"
|
|
2515
|
-
},
|
|
2516
|
-
{
|
|
2517
|
-
"text": "Store and Retrieve Values from the Session Cache",
|
|
2518
|
-
"a_attr": {
|
|
2519
|
-
"href": "apex_platform_cache_session_examples.htm"
|
|
2520
|
-
},
|
|
2521
|
-
"id": "apex_platform_cache_session_examples"
|
|
2522
|
-
},
|
|
2523
|
-
{
|
|
2524
|
-
"text": "Store and Retrieve Values from the Org Cache",
|
|
2525
|
-
"a_attr": {
|
|
2526
|
-
"href": "apex_platform_cache_org_examples.htm"
|
|
2527
|
-
},
|
|
2528
|
-
"id": "apex_platform_cache_org_examples"
|
|
2529
|
-
},
|
|
2530
|
-
{
|
|
2531
|
-
"text": "Use a Visualforce Global Variable for the Platform Cache",
|
|
2532
|
-
"a_attr": {
|
|
2533
|
-
"href": "apex_platform_cache_global_variable.htm"
|
|
2534
|
-
},
|
|
2535
|
-
"id": "apex_platform_cache_global_variable"
|
|
2536
|
-
},
|
|
2537
|
-
{
|
|
2538
|
-
"text": "Safely Cache Values with the CacheBuilder Interface",
|
|
2539
|
-
"a_attr": {
|
|
2540
|
-
"href": "apex_platform_cache_builder.htm"
|
|
2541
|
-
},
|
|
2542
|
-
"id": "apex_platform_cache_builder"
|
|
2543
|
-
},
|
|
2544
|
-
{
|
|
2545
|
-
"text": "Platform Cache Best Practices",
|
|
2546
|
-
"a_attr": {
|
|
2547
|
-
"href": "apex_platform_cache_best_practices.htm"
|
|
2548
|
-
},
|
|
2549
|
-
"id": "apex_platform_cache_best_practices"
|
|
2550
|
-
}
|
|
2551
|
-
],
|
|
2552
|
-
"text": "Platform Cache",
|
|
2553
|
-
"a_attr": {
|
|
2554
|
-
"href": "apex_cache_namespace_overview.htm"
|
|
2555
|
-
},
|
|
2556
|
-
"id": "apex_cache_namespace_overview"
|
|
2557
|
-
},
|
|
2558
|
-
{
|
|
2559
|
-
"children": [
|
|
2560
|
-
{
|
|
2561
|
-
"text": "Knowledge Management",
|
|
2562
|
-
"a_attr": {
|
|
2563
|
-
"href": "apex_forcecom_kbmanagement.htm"
|
|
2564
|
-
},
|
|
2565
|
-
"id": "apex_forcecom_kbmanagement"
|
|
2566
|
-
},
|
|
2567
|
-
{
|
|
2568
|
-
"text": "Promoted Search Terms",
|
|
2569
|
-
"a_attr": {
|
|
2570
|
-
"href": "apex_forcecom_promoted_search_terms.htm"
|
|
2571
|
-
},
|
|
2572
|
-
"id": "apex_forcecom_promoted_search_terms"
|
|
2573
|
-
},
|
|
2574
|
-
{
|
|
2575
|
-
"text": "Suggest Salesforce Knowledge Articles",
|
|
2576
|
-
"a_attr": {
|
|
2577
|
-
"href": "apex_forcecom_kb_suggestions.htm"
|
|
2578
|
-
},
|
|
2579
|
-
"id": "apex_forcecom_kb_suggestions"
|
|
2580
|
-
}
|
|
2581
|
-
],
|
|
2582
|
-
"text": "Salesforce Knowledge",
|
|
2583
|
-
"a_attr": {
|
|
2584
|
-
"href": "apex_forcecom_knowledge.htm"
|
|
2585
|
-
},
|
|
2586
|
-
"id": "apex_forcecom_knowledge"
|
|
2587
|
-
},
|
|
2588
|
-
{
|
|
2589
|
-
"children": [
|
|
2590
|
-
{
|
|
2591
|
-
"text": "Customize File Downloads",
|
|
2592
|
-
"a_attr": {
|
|
2593
|
-
"href": "apex_salesforce_files_customize_downloads.htm"
|
|
2594
|
-
},
|
|
2595
|
-
"id": "apex_salesforce_files_customize_downloads"
|
|
2596
|
-
},
|
|
2597
|
-
{
|
|
2598
|
-
"text": "Custom File Download Examples",
|
|
2599
|
-
"a_attr": {
|
|
2600
|
-
"href": "apex_salesforce_files_customize_downloads_examples.htm"
|
|
2601
|
-
},
|
|
2602
|
-
"id": "apex_salesforce_files_customize_downloads_examples"
|
|
2603
|
-
}
|
|
2604
|
-
],
|
|
2605
|
-
"text": "Salesforce Files",
|
|
2606
|
-
"a_attr": {
|
|
2607
|
-
"href": "apex_salesforce_files.htm"
|
|
2608
|
-
},
|
|
2609
|
-
"id": "apex_salesforce_files"
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"children": [
|
|
2613
|
-
{
|
|
2614
|
-
"children": [
|
|
2615
|
-
{
|
|
2616
|
-
"text": "Salesforce Connect Adapters",
|
|
2617
|
-
"a_attr": {
|
|
2618
|
-
"href": "platform_connect_adapters.htm"
|
|
2619
|
-
},
|
|
2620
|
-
"id": "platform_connect_adapters"
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
"text": "Salesforce Connect Custom Adapter",
|
|
2624
|
-
"a_attr": {
|
|
2625
|
-
"href": "apex_connector_custom_adapter.htm"
|
|
2626
|
-
},
|
|
2627
|
-
"id": "apex_connector_custom_adapter"
|
|
2628
|
-
}
|
|
2629
|
-
],
|
|
2630
|
-
"text": "Salesforce Connect",
|
|
2631
|
-
"a_attr": {
|
|
2632
|
-
"href": "platform_connect_about.htm"
|
|
2633
|
-
},
|
|
2634
|
-
"id": "platform_connect_about"
|
|
2635
|
-
},
|
|
2636
|
-
{
|
|
2637
|
-
"text": "Apex Considerations for Salesforce Connect External Objects",
|
|
2638
|
-
"a_attr": {
|
|
2639
|
-
"href": "apex_external_objects_considerations.htm"
|
|
2640
|
-
},
|
|
2641
|
-
"id": "apex_external_objects_considerations"
|
|
2642
|
-
},
|
|
2643
|
-
{
|
|
2644
|
-
"text": "Writable External Objects",
|
|
2645
|
-
"a_attr": {
|
|
2646
|
-
"href": "apex_connector_external_objects_writeable.htm"
|
|
2647
|
-
},
|
|
2648
|
-
"id": "apex_connector_external_objects_writeable"
|
|
2649
|
-
},
|
|
2650
|
-
{
|
|
2651
|
-
"text": "External Change Data Capture Packaging and Testing",
|
|
2652
|
-
"a_attr": {
|
|
2653
|
-
"href": "apex_connector_external_tracking_package_and_test.htm"
|
|
2654
|
-
},
|
|
2655
|
-
"id": "apex_connector_external_tracking_package_and_test"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"children": [
|
|
2659
|
-
{
|
|
2660
|
-
"text": "Create a Sample DataSource.Connection Class",
|
|
2661
|
-
"a_attr": {
|
|
2662
|
-
"href": "apex_connector_start_connection_class.htm"
|
|
2663
|
-
},
|
|
2664
|
-
"id": "apex_connector_start_connection_class"
|
|
2665
|
-
},
|
|
2666
|
-
{
|
|
2667
|
-
"text": "Create a Sample DataSource.Provider Class",
|
|
2668
|
-
"a_attr": {
|
|
2669
|
-
"href": "apex_connector_start_provider_class.htm"
|
|
2670
|
-
},
|
|
2671
|
-
"id": "apex_connector_start_provider_class"
|
|
2672
|
-
},
|
|
2673
|
-
{
|
|
2674
|
-
"text": "Set Up Salesforce Connect to Use Your Custom Adapter",
|
|
2675
|
-
"a_attr": {
|
|
2676
|
-
"href": "apex_connector_start_setup.htm"
|
|
2677
|
-
},
|
|
2678
|
-
"id": "apex_connector_start_setup"
|
|
2679
|
-
}
|
|
2680
|
-
],
|
|
2681
|
-
"text": "Get Started with the Apex Connector Framework",
|
|
2682
|
-
"a_attr": {
|
|
2683
|
-
"href": "apex_connector_start.htm"
|
|
2684
|
-
},
|
|
2685
|
-
"id": "apex_connector_start"
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"children": [
|
|
2689
|
-
{
|
|
2690
|
-
"text": "External IDs for Salesforce Connect External Objects",
|
|
2691
|
-
"a_attr": {
|
|
2692
|
-
"href": "apex_connector_external_id.htm"
|
|
2693
|
-
},
|
|
2694
|
-
"id": "apex_connector_external_id"
|
|
2695
|
-
},
|
|
2696
|
-
{
|
|
2697
|
-
"children": [
|
|
2698
|
-
{
|
|
2699
|
-
"text": "OAuth for Salesforce Connect Custom Adapters",
|
|
2700
|
-
"a_attr": {
|
|
2701
|
-
"href": "apex_connector_oauth.htm"
|
|
2702
|
-
},
|
|
2703
|
-
"id": "apex_connector_oauth"
|
|
2704
|
-
}
|
|
2705
|
-
],
|
|
2706
|
-
"text": "Authentication for Salesforce Connect Custom Adapters",
|
|
2707
|
-
"a_attr": {
|
|
2708
|
-
"href": "apex_connector_authentication.htm"
|
|
2709
|
-
},
|
|
2710
|
-
"id": "apex_connector_authentication"
|
|
2711
|
-
},
|
|
2712
|
-
{
|
|
2713
|
-
"text": "Callouts for Salesforce Connect Custom Adapters",
|
|
2714
|
-
"a_attr": {
|
|
2715
|
-
"href": "apex_connector_callouts.htm"
|
|
2716
|
-
},
|
|
2717
|
-
"id": "apex_connector_callouts"
|
|
2718
|
-
},
|
|
2719
|
-
{
|
|
2720
|
-
"text": "Paging with the Apex Connector Framework",
|
|
2721
|
-
"a_attr": {
|
|
2722
|
-
"href": "apex_connector_paging.htm"
|
|
2723
|
-
},
|
|
2724
|
-
"id": "apex_connector_paging"
|
|
2725
|
-
},
|
|
2726
|
-
{
|
|
2727
|
-
"children": [
|
|
2728
|
-
{
|
|
2729
|
-
"text": "Support queryMore by Using Server-Driven Paging",
|
|
2730
|
-
"a_attr": {
|
|
2731
|
-
"href": "apex_connector_querymore_server_driven_paging.htm"
|
|
2732
|
-
},
|
|
2733
|
-
"id": "apex_connector_querymore_server_driven_paging"
|
|
2734
|
-
},
|
|
2735
|
-
{
|
|
2736
|
-
"text": "Support queryMore by Using Client-Driven Paging",
|
|
2737
|
-
"a_attr": {
|
|
2738
|
-
"href": "apex_connector_querymore_client_driven_paging.htm"
|
|
2739
|
-
},
|
|
2740
|
-
"id": "apex_connector_querymore_client_driven_paging"
|
|
2741
|
-
}
|
|
2742
|
-
],
|
|
2743
|
-
"text": "queryMore with the Apex Connector Framework",
|
|
2744
|
-
"a_attr": {
|
|
2745
|
-
"href": "apex_connector_querymore.htm"
|
|
2746
|
-
},
|
|
2747
|
-
"id": "apex_connector_querymore"
|
|
2748
|
-
},
|
|
2749
|
-
{
|
|
2750
|
-
"text": "Aggregation for Salesforce Connect Custom Adapters",
|
|
2751
|
-
"a_attr": {
|
|
2752
|
-
"href": "apex_connector_aggregation.htm"
|
|
2753
|
-
},
|
|
2754
|
-
"id": "apex_connector_aggregation"
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"children": [
|
|
2758
|
-
{
|
|
2759
|
-
"text": "Evaluating Filters in the Apex Connector Framework",
|
|
2760
|
-
"a_attr": {
|
|
2761
|
-
"href": "apex_connector_filters_evaluating.htm"
|
|
2762
|
-
},
|
|
2763
|
-
"id": "apex_connector_filters_evaluating"
|
|
2764
|
-
},
|
|
2765
|
-
{
|
|
2766
|
-
"text": "Compound Filters in the Apex Connector Framework",
|
|
2767
|
-
"a_attr": {
|
|
2768
|
-
"href": "apex_connector_filters_compound.htm"
|
|
2769
|
-
},
|
|
2770
|
-
"id": "apex_connector_filters_compound"
|
|
2771
|
-
}
|
|
2772
|
-
],
|
|
2773
|
-
"text": "Filters in the Apex Connector Framework",
|
|
2774
|
-
"a_attr": {
|
|
2775
|
-
"href": "apex_connector_filters.htm"
|
|
2776
|
-
},
|
|
2777
|
-
"id": "apex_connector_filters"
|
|
2778
|
-
}
|
|
2779
|
-
],
|
|
2780
|
-
"text": "Key Concepts About the Apex Connector Framework",
|
|
2781
|
-
"a_attr": {
|
|
2782
|
-
"href": "apex_connector_concepts.htm"
|
|
2783
|
-
},
|
|
2784
|
-
"id": "apex_connector_concepts"
|
|
2785
|
-
},
|
|
2786
|
-
{
|
|
2787
|
-
"text": "Considerations for the Apex Connector Framework",
|
|
2788
|
-
"a_attr": {
|
|
2789
|
-
"href": "apex_connector_considerations.htm"
|
|
2790
|
-
},
|
|
2791
|
-
"id": "apex_connector_considerations"
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"children": [
|
|
2795
|
-
{
|
|
2796
|
-
"text": "Google Drive™ Custom Adapter for Salesforce Connect",
|
|
2797
|
-
"a_attr": {
|
|
2798
|
-
"href": "apex_connector_example_google_drive.htm"
|
|
2799
|
-
},
|
|
2800
|
-
"id": "apex_connector_example_google_drive"
|
|
2801
|
-
},
|
|
2802
|
-
{
|
|
2803
|
-
"text": "Google Books™ Custom Adapter for Salesforce Connect",
|
|
2804
|
-
"a_attr": {
|
|
2805
|
-
"href": "apex_connector_example_google_books.htm"
|
|
2806
|
-
},
|
|
2807
|
-
"id": "apex_connector_example_google_books"
|
|
2808
|
-
},
|
|
2809
|
-
{
|
|
2810
|
-
"text": "Loopback Custom Adapter for Salesforce Connect",
|
|
2811
|
-
"a_attr": {
|
|
2812
|
-
"href": "apex_connector_example_loopback.htm"
|
|
2813
|
-
},
|
|
2814
|
-
"id": "apex_connector_example_loopback"
|
|
2815
|
-
},
|
|
2816
|
-
{
|
|
2817
|
-
"text": "GitHub Custom Adapter for Salesforce Connect",
|
|
2818
|
-
"a_attr": {
|
|
2819
|
-
"href": "apex_connector_example_github.htm"
|
|
2820
|
-
},
|
|
2821
|
-
"id": "apex_connector_example_github"
|
|
2822
|
-
},
|
|
2823
|
-
{
|
|
2824
|
-
"text": "Stack Overflow Custom Adapter for Salesforce Connect",
|
|
2825
|
-
"a_attr": {
|
|
2826
|
-
"href": "apex_connector_example_stackoverflow.htm"
|
|
2827
|
-
},
|
|
2828
|
-
"id": "apex_connector_example_stackoverflow"
|
|
2829
|
-
}
|
|
2830
|
-
],
|
|
2831
|
-
"text": "Apex Connector Framework Examples",
|
|
2832
|
-
"a_attr": {
|
|
2833
|
-
"href": "apex_connector_examples.htm"
|
|
2834
|
-
},
|
|
2835
|
-
"id": "apex_connector_examples"
|
|
2836
|
-
}
|
|
2837
|
-
],
|
|
2838
|
-
"text": "Salesforce Connect",
|
|
2839
|
-
"a_attr": {
|
|
2840
|
-
"href": "apex_connector_top.htm"
|
|
2841
|
-
},
|
|
2842
|
-
"id": "apex_connector_top"
|
|
2843
|
-
},
|
|
2844
|
-
{
|
|
2845
|
-
"children": [
|
|
2846
|
-
{
|
|
2847
|
-
"text": "Requirements and Limitations",
|
|
2848
|
-
"a_attr": {
|
|
2849
|
-
"href": "apex_analytics_limitations.htm"
|
|
2850
|
-
},
|
|
2851
|
-
"id": "apex_analytics_limitations"
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"text": "Run Reports",
|
|
2855
|
-
"a_attr": {
|
|
2856
|
-
"href": "apex_analytics_run_reports.htm"
|
|
2857
|
-
},
|
|
2858
|
-
"id": "apex_analytics_run_reports"
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"text": "List Asynchronous Runs of a Report",
|
|
2862
|
-
"a_attr": {
|
|
2863
|
-
"href": "apex_analytics_list_async_runs.htm"
|
|
2864
|
-
},
|
|
2865
|
-
"id": "apex_analytics_list_async_runs"
|
|
2866
|
-
},
|
|
2867
|
-
{
|
|
2868
|
-
"text": "Get Report Metadata",
|
|
2869
|
-
"a_attr": {
|
|
2870
|
-
"href": "apex_analytics_report_metadata.htm"
|
|
2871
|
-
},
|
|
2872
|
-
"id": "apex_analytics_report_metadata"
|
|
2873
|
-
},
|
|
2874
|
-
{
|
|
2875
|
-
"text": "Get Report Data",
|
|
2876
|
-
"a_attr": {
|
|
2877
|
-
"href": "apex_analytics_report_data.htm"
|
|
2878
|
-
},
|
|
2879
|
-
"id": "apex_analytics_report_data"
|
|
2880
|
-
},
|
|
2881
|
-
{
|
|
2882
|
-
"text": "Filter Reports",
|
|
2883
|
-
"a_attr": {
|
|
2884
|
-
"href": "apex_analytics_filter_reports.htm"
|
|
2885
|
-
},
|
|
2886
|
-
"id": "apex_analytics_filter_reports"
|
|
2887
|
-
},
|
|
2888
|
-
{
|
|
2889
|
-
"text": "Decode the Fact Map",
|
|
2890
|
-
"a_attr": {
|
|
2891
|
-
"href": "apex_analytics_fact_map.htm"
|
|
2892
|
-
},
|
|
2893
|
-
"id": "apex_analytics_fact_map"
|
|
2894
|
-
},
|
|
2895
|
-
{
|
|
2896
|
-
"text": "Test Reports",
|
|
2897
|
-
"a_attr": {
|
|
2898
|
-
"href": "apex_analytics_test_reports.htm"
|
|
2899
|
-
},
|
|
2900
|
-
"id": "apex_analytics_test_reports"
|
|
2901
|
-
}
|
|
2902
|
-
],
|
|
2903
|
-
"text": "Salesforce Reports and Dashboards API via Apex",
|
|
2904
|
-
"a_attr": {
|
|
2905
|
-
"href": "apex_analytics_intro.htm"
|
|
2906
|
-
},
|
|
2907
|
-
"id": "apex_analytics_intro"
|
|
2908
|
-
},
|
|
2909
|
-
{
|
|
2910
|
-
"children": [
|
|
2911
|
-
{
|
|
2912
|
-
"text": "Rewrite URLs for Salesforce Sites",
|
|
2913
|
-
"a_attr": {
|
|
2914
|
-
"href": "apex_site_urlRewriter.htm"
|
|
2915
|
-
},
|
|
2916
|
-
"id": "apex_site_urlRewriter"
|
|
2917
|
-
}
|
|
2918
|
-
],
|
|
2919
|
-
"text": "Salesforce Sites",
|
|
2920
|
-
"a_attr": {
|
|
2921
|
-
"href": "apex_forcecom_sites.htm"
|
|
2922
|
-
},
|
|
2923
|
-
"id": "apex_forcecom_sites"
|
|
2924
|
-
},
|
|
2925
|
-
{
|
|
2926
|
-
"text": "Support Classes",
|
|
2927
|
-
"a_attr": {
|
|
2928
|
-
"href": "apex_forcecom_support.htm"
|
|
2929
|
-
},
|
|
2930
|
-
"id": "apex_forcecom_support"
|
|
2931
|
-
},
|
|
2932
|
-
{
|
|
2933
|
-
"text": "Territory Management 2.0",
|
|
2934
|
-
"a_attr": {
|
|
2935
|
-
"href": "Territory2.htm"
|
|
2936
|
-
},
|
|
2937
|
-
"id": "Territory2"
|
|
2938
|
-
},
|
|
2939
|
-
{
|
|
2940
|
-
"children": [
|
|
2941
|
-
{
|
|
2942
|
-
"text": "Getting Flow Variables",
|
|
2943
|
-
"a_attr": {
|
|
2944
|
-
"href": "apex_forcecom_visualworkflow_vars.htm"
|
|
2945
|
-
},
|
|
2946
|
-
"id": "apex_forcecom_visualworkflow_vars"
|
|
2947
|
-
},
|
|
2948
|
-
{
|
|
2949
|
-
"children": [
|
|
2950
|
-
{
|
|
2951
|
-
"text": "Implementing the Process.Plugin Interface",
|
|
2952
|
-
"a_attr": {
|
|
2953
|
-
"href": "apex_process_plugin.htm"
|
|
2954
|
-
},
|
|
2955
|
-
"id": "apex_process_plugin"
|
|
2956
|
-
},
|
|
2957
|
-
{
|
|
2958
|
-
"text": "Using the Process.PluginRequest Class",
|
|
2959
|
-
"a_attr": {
|
|
2960
|
-
"href": "apex_plugin_request.htm"
|
|
2961
|
-
},
|
|
2962
|
-
"id": "apex_plugin_request"
|
|
2963
|
-
},
|
|
2964
|
-
{
|
|
2965
|
-
"text": "Using the Process.PluginResult Class",
|
|
2966
|
-
"a_attr": {
|
|
2967
|
-
"href": "apex_plugin_result.htm"
|
|
2968
|
-
},
|
|
2969
|
-
"id": "apex_plugin_result"
|
|
2970
|
-
},
|
|
2971
|
-
{
|
|
2972
|
-
"text": "Using the Process.PluginDescribeResult Class",
|
|
2973
|
-
"a_attr": {
|
|
2974
|
-
"href": "apex_plugin_describe_result.htm"
|
|
2975
|
-
},
|
|
2976
|
-
"id": "apex_plugin_describe_result"
|
|
2977
|
-
},
|
|
2978
|
-
{
|
|
2979
|
-
"text": "Process.Plugin Data Type Conversions",
|
|
2980
|
-
"a_attr": {
|
|
2981
|
-
"href": "apex_plugin_datatype_conversions.htm"
|
|
2982
|
-
},
|
|
2983
|
-
"id": "apex_plugin_datatype_conversions"
|
|
2984
|
-
},
|
|
2985
|
-
{
|
|
2986
|
-
"text": "Sample Process.Plugin Implementation for Lead Conversion",
|
|
2987
|
-
"a_attr": {
|
|
2988
|
-
"href": "apex_process_plugin_example_lead_convert.htm"
|
|
2989
|
-
},
|
|
2990
|
-
"id": "apex_process_plugin_example_lead_convert"
|
|
2991
|
-
}
|
|
2992
|
-
],
|
|
2993
|
-
"text": "Passing Data to a Flow Using the Process.Plugin Interface",
|
|
2994
|
-
"a_attr": {
|
|
2995
|
-
"href": "apex_process_plugin_using.htm"
|
|
2996
|
-
},
|
|
2997
|
-
"id": "apex_process_plugin_using"
|
|
2998
|
-
}
|
|
2999
|
-
],
|
|
3000
|
-
"text": "Flows",
|
|
3001
|
-
"a_attr": {
|
|
3002
|
-
"href": "apex_forcecom_visualworkflow.htm"
|
|
3003
|
-
},
|
|
3004
|
-
"id": "apex_forcecom_visualworkflow"
|
|
3005
|
-
}
|
|
3006
|
-
],
|
|
3007
|
-
"text": "Using Salesforce Features with Apex",
|
|
3008
|
-
"a_attr": {
|
|
3009
|
-
"href": "apex_forcecom_intro.htm"
|
|
3010
|
-
},
|
|
3011
|
-
"id": "apex_forcecom_intro"
|
|
3012
|
-
},
|
|
3013
|
-
{
|
|
3014
|
-
"children": [
|
|
3015
|
-
{
|
|
3016
|
-
"children": [
|
|
3017
|
-
{
|
|
3018
|
-
"text": "Adding Remote Site Settings",
|
|
3019
|
-
"a_attr": {
|
|
3020
|
-
"href": "apex_callouts_remote_site_settings.htm"
|
|
3021
|
-
},
|
|
3022
|
-
"id": "apex_callouts_remote_site_settings"
|
|
3023
|
-
},
|
|
3024
|
-
{
|
|
3025
|
-
"children": [
|
|
3026
|
-
{
|
|
3027
|
-
"text": "Custom Headers and Bodies of Apex Callouts That Use Named Credentials",
|
|
3028
|
-
"a_attr": {
|
|
3029
|
-
"href": "apex_callouts_named_credentials_custom_headers_bodies.htm"
|
|
3030
|
-
},
|
|
3031
|
-
"id": "apex_callouts_named_credentials_custom_headers_bodies"
|
|
3032
|
-
},
|
|
3033
|
-
{
|
|
3034
|
-
"text": "Merge Fields for Apex Callouts That Use Named Credentials",
|
|
3035
|
-
"a_attr": {
|
|
3036
|
-
"href": "apex_callouts_named_credentials_merge_fields.htm"
|
|
3037
|
-
},
|
|
3038
|
-
"id": "apex_callouts_named_credentials_merge_fields"
|
|
3039
|
-
}
|
|
3040
|
-
],
|
|
3041
|
-
"text": "Named Credentials as Callout Endpoints",
|
|
3042
|
-
"a_attr": {
|
|
3043
|
-
"href": "apex_callouts_named_credentials.htm"
|
|
3044
|
-
},
|
|
3045
|
-
"id": "apex_callouts_named_credentials"
|
|
3046
|
-
},
|
|
3047
|
-
{
|
|
3048
|
-
"children": [
|
|
3049
|
-
{
|
|
3050
|
-
"text": "Generated WSDL2Apex Code",
|
|
3051
|
-
"a_attr": {
|
|
3052
|
-
"href": "apex_callouts_wsdl2apex_gen_code.htm"
|
|
3053
|
-
},
|
|
3054
|
-
"id": "apex_callouts_wsdl2apex_gen_code"
|
|
3055
|
-
},
|
|
3056
|
-
{
|
|
3057
|
-
"text": "Test Web Service Callouts",
|
|
3058
|
-
"a_attr": {
|
|
3059
|
-
"href": "apex_callouts_wsdl2apex_testing.htm"
|
|
3060
|
-
},
|
|
3061
|
-
"id": "apex_callouts_wsdl2apex_testing"
|
|
3062
|
-
},
|
|
3063
|
-
{
|
|
3064
|
-
"text": "Performing DML Operations and Mock Callouts",
|
|
3065
|
-
"a_attr": {
|
|
3066
|
-
"href": "apex_callouts_wsdl2apex_testing_dml.htm"
|
|
3067
|
-
},
|
|
3068
|
-
"id": "apex_callouts_wsdl2apex_testing_dml"
|
|
3069
|
-
},
|
|
3070
|
-
{
|
|
3071
|
-
"text": "Considerations Using WSDLs",
|
|
3072
|
-
"a_attr": {
|
|
3073
|
-
"href": "apex_callouts_wsdl2apex_considerations.htm"
|
|
3074
|
-
},
|
|
3075
|
-
"id": "apex_callouts_wsdl2apex_considerations"
|
|
3076
|
-
}
|
|
3077
|
-
],
|
|
3078
|
-
"text": "SOAP Services: Defining a Class from a WSDL Document",
|
|
3079
|
-
"a_attr": {
|
|
3080
|
-
"href": "apex_callouts_wsdl2apex.htm"
|
|
3081
|
-
},
|
|
3082
|
-
"id": "apex_callouts_wsdl2apex"
|
|
3083
|
-
},
|
|
3084
|
-
{
|
|
3085
|
-
"children": [
|
|
3086
|
-
{
|
|
3087
|
-
"text": "HTTP Classes",
|
|
3088
|
-
"a_attr": {
|
|
3089
|
-
"href": "apex_classes_restful_http.htm"
|
|
3090
|
-
},
|
|
3091
|
-
"id": "apex_classes_restful_http"
|
|
3092
|
-
},
|
|
3093
|
-
{
|
|
3094
|
-
"children": [
|
|
3095
|
-
{
|
|
3096
|
-
"text": "Testing HTTP Callouts by Implementing the HttpCalloutMock Interface",
|
|
3097
|
-
"a_attr": {
|
|
3098
|
-
"href": "apex_classes_restful_http_testing_httpcalloutmock.htm"
|
|
3099
|
-
},
|
|
3100
|
-
"id": "apex_classes_restful_http_testing_httpcalloutmock"
|
|
3101
|
-
},
|
|
3102
|
-
{
|
|
3103
|
-
"text": "Testing HTTP Callouts Using Static Resources",
|
|
3104
|
-
"a_attr": {
|
|
3105
|
-
"href": "apex_classes_restful_http_testing_static.htm"
|
|
3106
|
-
},
|
|
3107
|
-
"id": "apex_classes_restful_http_testing_static"
|
|
3108
|
-
},
|
|
3109
|
-
{
|
|
3110
|
-
"text": "Performing DML Operations and Mock Callouts",
|
|
3111
|
-
"a_attr": {
|
|
3112
|
-
"href": "apex_classes_restful_http_testing_dml.htm"
|
|
3113
|
-
},
|
|
3114
|
-
"id": "apex_classes_restful_http_testing_dml"
|
|
3115
|
-
}
|
|
3116
|
-
],
|
|
3117
|
-
"text": "Testing HTTP Callouts",
|
|
3118
|
-
"a_attr": {
|
|
3119
|
-
"href": "apex_classes_restful_http_testing.htm"
|
|
3120
|
-
},
|
|
3121
|
-
"id": "apex_classes_restful_http_testing"
|
|
3122
|
-
}
|
|
3123
|
-
],
|
|
3124
|
-
"text": "Invoking HTTP Callouts",
|
|
3125
|
-
"a_attr": {
|
|
3126
|
-
"href": "apex_callouts_http.htm"
|
|
3127
|
-
},
|
|
3128
|
-
"id": "apex_callouts_http"
|
|
3129
|
-
},
|
|
3130
|
-
{
|
|
3131
|
-
"children": [
|
|
3132
|
-
{
|
|
3133
|
-
"text": "Generating Certificates",
|
|
3134
|
-
"a_attr": {
|
|
3135
|
-
"href": "apex_callouts_client_certs_generate.htm"
|
|
3136
|
-
},
|
|
3137
|
-
"id": "apex_callouts_client_certs_generate"
|
|
3138
|
-
},
|
|
3139
|
-
{
|
|
3140
|
-
"text": "Using Certificates with SOAP Services",
|
|
3141
|
-
"a_attr": {
|
|
3142
|
-
"href": "apex_callouts_client_certs_soap.htm"
|
|
3143
|
-
},
|
|
3144
|
-
"id": "apex_callouts_client_certs_soap"
|
|
3145
|
-
},
|
|
3146
|
-
{
|
|
3147
|
-
"text": "Using Certificates with HTTP Requests",
|
|
3148
|
-
"a_attr": {
|
|
3149
|
-
"href": "apex_callouts_client_certs_http.htm"
|
|
3150
|
-
},
|
|
3151
|
-
"id": "apex_callouts_client_certs_http"
|
|
3152
|
-
}
|
|
3153
|
-
],
|
|
3154
|
-
"text": "Using Certificates",
|
|
3155
|
-
"a_attr": {
|
|
3156
|
-
"href": "apex_callouts_client_certs.htm"
|
|
3157
|
-
},
|
|
3158
|
-
"id": "apex_callouts_client_certs"
|
|
3159
|
-
},
|
|
3160
|
-
{
|
|
3161
|
-
"text": "Callout Limits and Limitations",
|
|
3162
|
-
"a_attr": {
|
|
3163
|
-
"href": "apex_callouts_timeouts.htm"
|
|
3164
|
-
},
|
|
3165
|
-
"id": "apex_callouts_timeouts"
|
|
3166
|
-
},
|
|
3167
|
-
{
|
|
3168
|
-
"children": [
|
|
3169
|
-
{
|
|
3170
|
-
"text": "Process for Using Asynchronous Callouts",
|
|
3171
|
-
"a_attr": {
|
|
3172
|
-
"href": "apex_continuation_process.htm"
|
|
3173
|
-
},
|
|
3174
|
-
"id": "apex_continuation_process"
|
|
3175
|
-
},
|
|
3176
|
-
{
|
|
3177
|
-
"text": "Testing Asynchronous Callouts",
|
|
3178
|
-
"a_attr": {
|
|
3179
|
-
"href": "apex_continuation_testing.htm"
|
|
3180
|
-
},
|
|
3181
|
-
"id": "apex_continuation_testing"
|
|
3182
|
-
},
|
|
3183
|
-
{
|
|
3184
|
-
"text": "Asynchronous Callout Limits",
|
|
3185
|
-
"a_attr": {
|
|
3186
|
-
"href": "apex_continuation_limits.htm"
|
|
3187
|
-
},
|
|
3188
|
-
"id": "apex_continuation_limits"
|
|
3189
|
-
},
|
|
3190
|
-
{
|
|
3191
|
-
"text": "Making Multiple Asynchronous Callouts",
|
|
3192
|
-
"a_attr": {
|
|
3193
|
-
"href": "apex_continuation_multiple_callouts.htm"
|
|
3194
|
-
},
|
|
3195
|
-
"id": "apex_continuation_multiple_callouts"
|
|
3196
|
-
},
|
|
3197
|
-
{
|
|
3198
|
-
"text": "Chaining Asynchronous Callouts",
|
|
3199
|
-
"a_attr": {
|
|
3200
|
-
"href": "apex_continuation_chained_callouts.htm"
|
|
3201
|
-
},
|
|
3202
|
-
"id": "apex_continuation_chained_callouts"
|
|
3203
|
-
},
|
|
3204
|
-
{
|
|
3205
|
-
"text": "Making an Asynchronous Callout from an Imported WSDL",
|
|
3206
|
-
"a_attr": {
|
|
3207
|
-
"href": "apex_continuation_callout_soap.htm"
|
|
3208
|
-
},
|
|
3209
|
-
"id": "apex_continuation_callout_soap"
|
|
3210
|
-
}
|
|
3211
|
-
],
|
|
3212
|
-
"text": "Make Long-Running Callouts from a Visualforce Page",
|
|
3213
|
-
"a_attr": {
|
|
3214
|
-
"href": "apex_continuation_overview.htm"
|
|
3215
|
-
},
|
|
3216
|
-
"id": "apex_continuation_overview"
|
|
3217
|
-
}
|
|
3218
|
-
],
|
|
3219
|
-
"text": "Invoking Callouts Using Apex",
|
|
3220
|
-
"a_attr": {
|
|
3221
|
-
"href": "apex_callouts.htm"
|
|
3222
|
-
},
|
|
3223
|
-
"id": "apex_callouts"
|
|
3224
|
-
},
|
|
3225
|
-
{
|
|
3226
|
-
"children": [
|
|
3227
|
-
{
|
|
3228
|
-
"text": "Roundtrip Serialization and Deserialization",
|
|
3229
|
-
"a_attr": {
|
|
3230
|
-
"href": "apex_json_json.htm"
|
|
3231
|
-
},
|
|
3232
|
-
"id": "apex_json_json"
|
|
3233
|
-
},
|
|
3234
|
-
{
|
|
3235
|
-
"text": "JSON Generator",
|
|
3236
|
-
"a_attr": {
|
|
3237
|
-
"href": "apex_json_jsongenerator.htm"
|
|
3238
|
-
},
|
|
3239
|
-
"id": "apex_json_jsongenerator"
|
|
3240
|
-
},
|
|
3241
|
-
{
|
|
3242
|
-
"text": "JSON Parsing",
|
|
3243
|
-
"a_attr": {
|
|
3244
|
-
"href": "apex_json_jsonparser.htm"
|
|
3245
|
-
},
|
|
3246
|
-
"id": "apex_json_jsonparser"
|
|
3247
|
-
}
|
|
3248
|
-
],
|
|
3249
|
-
"text": "JSON Support",
|
|
3250
|
-
"a_attr": {
|
|
3251
|
-
"href": "apex_methods_system_json_overview.htm"
|
|
3252
|
-
},
|
|
3253
|
-
"id": "apex_methods_system_json_overview"
|
|
3254
|
-
},
|
|
3255
|
-
{
|
|
3256
|
-
"children": [
|
|
3257
|
-
{
|
|
3258
|
-
"children": [
|
|
3259
|
-
{
|
|
3260
|
-
"text": "Reading XML Using Streams",
|
|
3261
|
-
"a_attr": {
|
|
3262
|
-
"href": "apex_xml_streaming_reading.htm"
|
|
3263
|
-
},
|
|
3264
|
-
"id": "apex_xml_streaming_reading"
|
|
3265
|
-
},
|
|
3266
|
-
{
|
|
3267
|
-
"text": "Writing XML Using Streams",
|
|
3268
|
-
"a_attr": {
|
|
3269
|
-
"href": "apex_xml_streaming_writing.htm"
|
|
3270
|
-
},
|
|
3271
|
-
"id": "apex_xml_streaming_writing"
|
|
3272
|
-
}
|
|
3273
|
-
],
|
|
3274
|
-
"text": "Reading and Writing XML Using Streams",
|
|
3275
|
-
"a_attr": {
|
|
3276
|
-
"href": "apex_xml_streaming.htm"
|
|
3277
|
-
},
|
|
3278
|
-
"id": "apex_xml_streaming"
|
|
3279
|
-
},
|
|
3280
|
-
{
|
|
3281
|
-
"text": "Reading and Writing XML Using the DOM",
|
|
3282
|
-
"a_attr": {
|
|
3283
|
-
"href": "apex_xml_dom.htm"
|
|
3284
|
-
},
|
|
3285
|
-
"id": "apex_xml_dom"
|
|
3286
|
-
}
|
|
3287
|
-
],
|
|
3288
|
-
"text": "XML Support",
|
|
3289
|
-
"a_attr": {
|
|
3290
|
-
"href": "apex_xml_support.htm"
|
|
3291
|
-
},
|
|
3292
|
-
"id": "apex_xml_support"
|
|
3293
|
-
},
|
|
3294
|
-
{
|
|
3295
|
-
"text": "Securing Your Data",
|
|
3296
|
-
"a_attr": {
|
|
3297
|
-
"href": "apex_crypto.htm"
|
|
3298
|
-
},
|
|
3299
|
-
"id": "apex_crypto"
|
|
3300
|
-
},
|
|
3301
|
-
{
|
|
3302
|
-
"text": "Encoding Your Data",
|
|
3303
|
-
"a_attr": {
|
|
3304
|
-
"href": "apex_encoding.htm"
|
|
3305
|
-
},
|
|
3306
|
-
"id": "apex_encoding"
|
|
3307
|
-
},
|
|
3308
|
-
{
|
|
3309
|
-
"children": [
|
|
3310
|
-
{
|
|
3311
|
-
"text": "Using Regions",
|
|
3312
|
-
"a_attr": {
|
|
3313
|
-
"href": "apex_classes_pattern_and_matcher_regions.htm"
|
|
3314
|
-
},
|
|
3315
|
-
"id": "apex_classes_pattern_and_matcher_regions"
|
|
3316
|
-
},
|
|
3317
|
-
{
|
|
3318
|
-
"text": "Using Match Operations",
|
|
3319
|
-
"a_attr": {
|
|
3320
|
-
"href": "apex_classes_pattern_and_matcher_matching.htm"
|
|
3321
|
-
},
|
|
3322
|
-
"id": "apex_classes_pattern_and_matcher_matching"
|
|
3323
|
-
},
|
|
3324
|
-
{
|
|
3325
|
-
"text": "Using Bounds",
|
|
3326
|
-
"a_attr": {
|
|
3327
|
-
"href": "apex_classes_pattern_and_matcher_bounds.htm"
|
|
3328
|
-
},
|
|
3329
|
-
"id": "apex_classes_pattern_and_matcher_bounds"
|
|
3330
|
-
},
|
|
3331
|
-
{
|
|
3332
|
-
"text": "Understanding Capturing Groups",
|
|
3333
|
-
"a_attr": {
|
|
3334
|
-
"href": "apex_classes_pattern_and_matcher_capturing_groups.htm"
|
|
3335
|
-
},
|
|
3336
|
-
"id": "apex_classes_pattern_and_matcher_capturing_groups"
|
|
3337
|
-
},
|
|
3338
|
-
{
|
|
3339
|
-
"text": "Pattern and Matcher Example",
|
|
3340
|
-
"a_attr": {
|
|
3341
|
-
"href": "apex_classes_pattern_and_matcher_example.htm"
|
|
3342
|
-
},
|
|
3343
|
-
"id": "apex_classes_pattern_and_matcher_example"
|
|
3344
|
-
}
|
|
3345
|
-
],
|
|
3346
|
-
"text": "Using Patterns and Matchers",
|
|
3347
|
-
"a_attr": {
|
|
3348
|
-
"href": "apex_classes_pattern_and_matcher_using.htm"
|
|
3349
|
-
},
|
|
3350
|
-
"id": "apex_classes_pattern_and_matcher_using"
|
|
3351
|
-
}
|
|
3352
|
-
],
|
|
3353
|
-
"text": "Integration and Apex Utilities",
|
|
3354
|
-
"a_attr": {
|
|
3355
|
-
"href": "apex_integration_intro.htm"
|
|
3356
|
-
},
|
|
3357
|
-
"id": "apex_integration_intro"
|
|
3358
|
-
}
|
|
3359
|
-
],
|
|
3360
|
-
"text": "Running Apex",
|
|
3361
|
-
"a_attr": {
|
|
3362
|
-
"href": "apex_running.htm"
|
|
3363
|
-
},
|
|
3364
|
-
"id": "apex_running"
|
|
3365
|
-
},
|
|
3366
|
-
{
|
|
3367
|
-
"children": [
|
|
3368
|
-
{
|
|
3369
|
-
"children": [
|
|
3370
|
-
{
|
|
3371
|
-
"children": [
|
|
3372
|
-
{
|
|
3373
|
-
"text": "Working with Logs in the Developer Console",
|
|
3374
|
-
"a_attr": {
|
|
3375
|
-
"href": "apex_debugging_system_log_console.htm"
|
|
3376
|
-
},
|
|
3377
|
-
"id": "apex_debugging_system_log_console"
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
"text": "Debugging Apex API Calls",
|
|
3381
|
-
"a_attr": {
|
|
3382
|
-
"href": "apex_debugging_API_calls.htm"
|
|
3383
|
-
},
|
|
3384
|
-
"id": "apex_debugging_API_calls"
|
|
3385
|
-
},
|
|
3386
|
-
{
|
|
3387
|
-
"text": "Debug Log Order of Precedence",
|
|
3388
|
-
"a_attr": {
|
|
3389
|
-
"href": "apex_debugging_debug_log_precedence.htm"
|
|
3390
|
-
},
|
|
3391
|
-
"id": "apex_debugging_debug_log_precedence"
|
|
3392
|
-
}
|
|
3393
|
-
],
|
|
3394
|
-
"text": "Debug Log",
|
|
3395
|
-
"a_attr": {
|
|
3396
|
-
"href": "apex_debugging_debug_log.htm"
|
|
3397
|
-
},
|
|
3398
|
-
"id": "apex_debugging_debug_log"
|
|
3399
|
-
},
|
|
3400
|
-
{
|
|
3401
|
-
"children": [
|
|
3402
|
-
{
|
|
3403
|
-
"text": "Exception Statements",
|
|
3404
|
-
"a_attr": {
|
|
3405
|
-
"href": "apex_exception_statements.htm"
|
|
3406
|
-
},
|
|
3407
|
-
"id": "apex_exception_statements"
|
|
3408
|
-
},
|
|
3409
|
-
{
|
|
3410
|
-
"text": "Exception Handling Example",
|
|
3411
|
-
"a_attr": {
|
|
3412
|
-
"href": "apex_exception_trycatch_example.htm"
|
|
3413
|
-
},
|
|
3414
|
-
"id": "apex_exception_trycatch_example"
|
|
3415
|
-
},
|
|
3416
|
-
{
|
|
3417
|
-
"text": "Built-In Exceptions and Common Methods",
|
|
3418
|
-
"a_attr": {
|
|
3419
|
-
"href": "apex_exception_builtin.htm"
|
|
3420
|
-
},
|
|
3421
|
-
"id": "apex_exception_builtin"
|
|
3422
|
-
},
|
|
3423
|
-
{
|
|
3424
|
-
"text": "Catching Different Exception Types",
|
|
3425
|
-
"a_attr": {
|
|
3426
|
-
"href": "apex_exception_types_catching.htm"
|
|
3427
|
-
},
|
|
3428
|
-
"id": "apex_exception_types_catching"
|
|
3429
|
-
},
|
|
3430
|
-
{
|
|
3431
|
-
"text": "Create Custom Exceptions",
|
|
3432
|
-
"a_attr": {
|
|
3433
|
-
"href": "apex_exception_custom.htm"
|
|
3434
|
-
},
|
|
3435
|
-
"id": "apex_exception_custom"
|
|
3436
|
-
}
|
|
3437
|
-
],
|
|
3438
|
-
"text": "Exceptions in Apex",
|
|
3439
|
-
"a_attr": {
|
|
3440
|
-
"href": "apex_exception_definition.htm"
|
|
3441
|
-
},
|
|
3442
|
-
"id": "apex_exception_definition"
|
|
3443
|
-
}
|
|
3444
|
-
],
|
|
3445
|
-
"text": "Debugging Apex",
|
|
3446
|
-
"a_attr": {
|
|
3447
|
-
"href": "apex_debugging.htm"
|
|
3448
|
-
},
|
|
3449
|
-
"id": "apex_debugging"
|
|
3450
|
-
},
|
|
3451
|
-
{
|
|
3452
|
-
"children": [
|
|
3453
|
-
{
|
|
3454
|
-
"text": "Understanding Testing in Apex",
|
|
3455
|
-
"a_attr": {
|
|
3456
|
-
"href": "apex_testing_intro.htm"
|
|
3457
|
-
},
|
|
3458
|
-
"id": "apex_testing_intro"
|
|
3459
|
-
},
|
|
3460
|
-
{
|
|
3461
|
-
"text": "What to Test in Apex",
|
|
3462
|
-
"a_attr": {
|
|
3463
|
-
"href": "apex_testing_what.htm"
|
|
3464
|
-
},
|
|
3465
|
-
"id": "apex_testing_what"
|
|
3466
|
-
},
|
|
3467
|
-
{
|
|
3468
|
-
"children": [
|
|
3469
|
-
{
|
|
3470
|
-
"text": "Accessing Private Test Class Members",
|
|
3471
|
-
"a_attr": {
|
|
3472
|
-
"href": "apex_testing_testvisible.htm"
|
|
3473
|
-
},
|
|
3474
|
-
"id": "apex_testing_testvisible"
|
|
3475
|
-
}
|
|
3476
|
-
],
|
|
3477
|
-
"text": "What Are Apex Unit Tests?",
|
|
3478
|
-
"a_attr": {
|
|
3479
|
-
"href": "apex_testing_unit_tests.htm"
|
|
3480
|
-
},
|
|
3481
|
-
"id": "apex_testing_unit_tests"
|
|
3482
|
-
},
|
|
3483
|
-
{
|
|
3484
|
-
"children": [
|
|
3485
|
-
{
|
|
3486
|
-
"text": "Isolation of Test Data from Organization Data in Unit Tests",
|
|
3487
|
-
"a_attr": {
|
|
3488
|
-
"href": "apex_testing_data_access.htm"
|
|
3489
|
-
},
|
|
3490
|
-
"id": "apex_testing_data_access"
|
|
3491
|
-
},
|
|
3492
|
-
{
|
|
3493
|
-
"text": "Using the isTest(SeeAllData=True) Annotation",
|
|
3494
|
-
"a_attr": {
|
|
3495
|
-
"href": "apex_testing_seealldata_using.htm"
|
|
3496
|
-
},
|
|
3497
|
-
"id": "apex_testing_seealldata_using"
|
|
3498
|
-
},
|
|
3499
|
-
{
|
|
3500
|
-
"text": "Loading Test Data",
|
|
3501
|
-
"a_attr": {
|
|
3502
|
-
"href": "apex_testing_load_data.htm"
|
|
3503
|
-
},
|
|
3504
|
-
"id": "apex_testing_load_data"
|
|
3505
|
-
},
|
|
3506
|
-
{
|
|
3507
|
-
"text": "Common Test Utility Classes for Test Data Creation",
|
|
3508
|
-
"a_attr": {
|
|
3509
|
-
"href": "apex_testing_utility_classes.htm"
|
|
3510
|
-
},
|
|
3511
|
-
"id": "apex_testing_utility_classes"
|
|
3512
|
-
},
|
|
3513
|
-
{
|
|
3514
|
-
"text": "Using Test Setup Methods",
|
|
3515
|
-
"a_attr": {
|
|
3516
|
-
"href": "apex_testing_testsetup_using.htm"
|
|
3517
|
-
},
|
|
3518
|
-
"id": "apex_testing_testsetup_using"
|
|
3519
|
-
}
|
|
3520
|
-
],
|
|
3521
|
-
"text": "Understanding Test Data",
|
|
3522
|
-
"a_attr": {
|
|
3523
|
-
"href": "apex_testing_data.htm"
|
|
3524
|
-
},
|
|
3525
|
-
"id": "apex_testing_data"
|
|
3526
|
-
},
|
|
3527
|
-
{
|
|
3528
|
-
"children": [
|
|
3529
|
-
{
|
|
3530
|
-
"text": "Using the runAs Method",
|
|
3531
|
-
"a_attr": {
|
|
3532
|
-
"href": "apex_testing_tools_runas.htm"
|
|
3533
|
-
},
|
|
3534
|
-
"id": "apex_testing_tools_runas"
|
|
3535
|
-
},
|
|
3536
|
-
{
|
|
3537
|
-
"text": "Using Limits, startTest, and stopTest",
|
|
3538
|
-
"a_attr": {
|
|
3539
|
-
"href": "apex_testing_tools_start_stop_test.htm"
|
|
3540
|
-
},
|
|
3541
|
-
"id": "apex_testing_tools_start_stop_test"
|
|
3542
|
-
},
|
|
3543
|
-
{
|
|
3544
|
-
"text": "Adding SOSL Queries to Unit Tests",
|
|
3545
|
-
"a_attr": {
|
|
3546
|
-
"href": "apex_testing_SOSL.htm"
|
|
3547
|
-
},
|
|
3548
|
-
"id": "apex_testing_SOSL"
|
|
3549
|
-
}
|
|
3550
|
-
],
|
|
3551
|
-
"text": "Run Unit Test Methods",
|
|
3552
|
-
"a_attr": {
|
|
3553
|
-
"href": "apex_testing_unit_tests_running.htm"
|
|
3554
|
-
},
|
|
3555
|
-
"id": "apex_testing_unit_tests_running"
|
|
3556
|
-
},
|
|
3557
|
-
{
|
|
3558
|
-
"text": "Testing Best Practices",
|
|
3559
|
-
"a_attr": {
|
|
3560
|
-
"href": "apex_testing_best_practices.htm"
|
|
3561
|
-
},
|
|
3562
|
-
"id": "apex_testing_best_practices"
|
|
3563
|
-
},
|
|
3564
|
-
{
|
|
3565
|
-
"text": "Testing Example",
|
|
3566
|
-
"a_attr": {
|
|
3567
|
-
"href": "apex_testing_example.htm"
|
|
3568
|
-
},
|
|
3569
|
-
"id": "apex_testing_example"
|
|
3570
|
-
},
|
|
3571
|
-
{
|
|
3572
|
-
"text": "Testing and Code Coverage",
|
|
3573
|
-
"a_attr": {
|
|
3574
|
-
"href": "apex_code_coverage_intro.htm"
|
|
3575
|
-
},
|
|
3576
|
-
"id": "apex_code_coverage_intro"
|
|
3577
|
-
},
|
|
3578
|
-
{
|
|
3579
|
-
"text": "Code Coverage Best Practices",
|
|
3580
|
-
"a_attr": {
|
|
3581
|
-
"href": "apex_code_coverage_best_pract.htm"
|
|
3582
|
-
},
|
|
3583
|
-
"id": "apex_code_coverage_best_pract"
|
|
3584
|
-
},
|
|
3585
|
-
{
|
|
3586
|
-
"text": "Build a Mocking Framework with the Stub API",
|
|
3587
|
-
"a_attr": {
|
|
3588
|
-
"href": "apex_testing_stub_api.htm"
|
|
3589
|
-
},
|
|
3590
|
-
"id": "apex_testing_stub_api"
|
|
3591
|
-
}
|
|
3592
|
-
],
|
|
3593
|
-
"text": "Testing Apex",
|
|
3594
|
-
"a_attr": {
|
|
3595
|
-
"href": "apex_testing.htm"
|
|
3596
|
-
},
|
|
3597
|
-
"id": "apex_testing"
|
|
3598
|
-
},
|
|
3599
|
-
{
|
|
3600
|
-
"children": [
|
|
3601
|
-
{
|
|
3602
|
-
"text": "Using Change Sets To Deploy Apex",
|
|
3603
|
-
"a_attr": {
|
|
3604
|
-
"href": "apex_deploying_changesets.htm"
|
|
3605
|
-
},
|
|
3606
|
-
"id": "apex_deploying_changesets"
|
|
3607
|
-
},
|
|
3608
|
-
{
|
|
3609
|
-
"text": "Using the Salesforce Extensions for Visual Studio Code to Deploy Apex",
|
|
3610
|
-
"a_attr": {
|
|
3611
|
-
"href": "apex_deploying_ide.htm"
|
|
3612
|
-
},
|
|
3613
|
-
"id": "apex_deploying_ide"
|
|
3614
|
-
},
|
|
3615
|
-
{
|
|
3616
|
-
"children": [
|
|
3617
|
-
{
|
|
3618
|
-
"text": "Understanding deploy",
|
|
3619
|
-
"a_attr": {
|
|
3620
|
-
"href": "apex_deploying_ant_deploy.htm"
|
|
3621
|
-
},
|
|
3622
|
-
"id": "apex_deploying_ant_deploy"
|
|
3623
|
-
},
|
|
3624
|
-
{
|
|
3625
|
-
"text": "Understanding retrieve",
|
|
3626
|
-
"a_attr": {
|
|
3627
|
-
"href": "apex_deploying_ant_retrieveCode.htm"
|
|
3628
|
-
},
|
|
3629
|
-
"id": "apex_deploying_ant_retrieveCode"
|
|
3630
|
-
}
|
|
3631
|
-
],
|
|
3632
|
-
"text": "Using the Ant Migration Tool to Deploy Changes",
|
|
3633
|
-
"a_attr": {
|
|
3634
|
-
"href": "apex_deploying_ant.htm"
|
|
3635
|
-
},
|
|
3636
|
-
"id": "apex_deploying_ant"
|
|
3637
|
-
},
|
|
3638
|
-
{
|
|
3639
|
-
"text": "Using SOAP API to Deploy Apex",
|
|
3640
|
-
"a_attr": {
|
|
3641
|
-
"href": "apex_deploying_additional.htm"
|
|
3642
|
-
},
|
|
3643
|
-
"id": "apex_deploying_additional"
|
|
3644
|
-
}
|
|
3645
|
-
],
|
|
3646
|
-
"text": "Deploying Apex",
|
|
3647
|
-
"a_attr": {
|
|
3648
|
-
"href": "apex_deploying.htm"
|
|
3649
|
-
},
|
|
3650
|
-
"id": "apex_deploying"
|
|
3651
|
-
},
|
|
3652
|
-
{
|
|
3653
|
-
"children": [
|
|
3654
|
-
{
|
|
3655
|
-
"text": "What is a Package?",
|
|
3656
|
-
"a_attr": {
|
|
3657
|
-
"href": "apex_manpkgs_dev.htm"
|
|
3658
|
-
},
|
|
3659
|
-
"id": "apex_manpkgs_dev"
|
|
3660
|
-
},
|
|
3661
|
-
{
|
|
3662
|
-
"text": "Package Versions",
|
|
3663
|
-
"a_attr": {
|
|
3664
|
-
"href": "apex_manpkgs_package_versions.htm"
|
|
3665
|
-
},
|
|
3666
|
-
"id": "apex_manpkgs_package_versions"
|
|
3667
|
-
},
|
|
3668
|
-
{
|
|
3669
|
-
"text": "Deprecating Apex",
|
|
3670
|
-
"a_attr": {
|
|
3671
|
-
"href": "apex_manpkgs_deprecated.htm"
|
|
3672
|
-
},
|
|
3673
|
-
"id": "apex_manpkgs_deprecated"
|
|
3674
|
-
},
|
|
3675
|
-
{
|
|
3676
|
-
"children": [
|
|
3677
|
-
{
|
|
3678
|
-
"text": "Versioning Apex Code Behavior",
|
|
3679
|
-
"a_attr": {
|
|
3680
|
-
"href": "apex_manpkgs_behavior.htm"
|
|
3681
|
-
},
|
|
3682
|
-
"id": "apex_manpkgs_behavior"
|
|
3683
|
-
},
|
|
3684
|
-
{
|
|
3685
|
-
"text": "Apex Code Items that Are Not Versioned",
|
|
3686
|
-
"a_attr": {
|
|
3687
|
-
"href": "apex_manpkgs_behavior_not_versioned.htm"
|
|
3688
|
-
},
|
|
3689
|
-
"id": "apex_manpkgs_behavior_not_versioned"
|
|
3690
|
-
},
|
|
3691
|
-
{
|
|
3692
|
-
"text": "Testing Behavior in Package Versions",
|
|
3693
|
-
"a_attr": {
|
|
3694
|
-
"href": "apex_manpkgs_behavior_testing.htm"
|
|
3695
|
-
},
|
|
3696
|
-
"id": "apex_manpkgs_behavior_testing"
|
|
3697
|
-
}
|
|
3698
|
-
],
|
|
3699
|
-
"text": "Behavior in Package Versions",
|
|
3700
|
-
"a_attr": {
|
|
3701
|
-
"href": "apex_manpkgs_behavior_intro.htm"
|
|
3702
|
-
},
|
|
3703
|
-
"id": "apex_manpkgs_behavior_intro"
|
|
3704
|
-
}
|
|
3705
|
-
],
|
|
3706
|
-
"text": "Distributing Apex Using Managed Packages",
|
|
3707
|
-
"a_attr": {
|
|
3708
|
-
"href": "apex_manpkgs_chapter.htm"
|
|
3709
|
-
},
|
|
3710
|
-
"id": "apex_manpkgs_chapter"
|
|
3711
|
-
}
|
|
3712
|
-
],
|
|
3713
|
-
"text": "Debugging, Testing, and Deploying Apex",
|
|
3714
|
-
"a_attr": {
|
|
3715
|
-
"href": "apex_debug_test_deploy.htm"
|
|
3716
|
-
},
|
|
3717
|
-
"id": "apex_debug_test_deploy"
|
|
3718
|
-
},
|
|
3719
|
-
{
|
|
3720
|
-
"children": [
|
|
3721
|
-
{
|
|
3722
|
-
"children": [
|
|
3723
|
-
{
|
|
3724
|
-
"text": "ApexTestQueueItem",
|
|
3725
|
-
"a_attr": {
|
|
3726
|
-
"href": "sforce_api_objects_apextestqueueitem.htm"
|
|
3727
|
-
},
|
|
3728
|
-
"id": "sforce_api_objects_apextestqueueitem"
|
|
3729
|
-
},
|
|
3730
|
-
{
|
|
3731
|
-
"text": "ApexTestResult",
|
|
3732
|
-
"a_attr": {
|
|
3733
|
-
"href": "sforce_api_objects_apextestresult.htm"
|
|
3734
|
-
},
|
|
3735
|
-
"id": "sforce_api_objects_apextestresult"
|
|
3736
|
-
},
|
|
3737
|
-
{
|
|
3738
|
-
"text": "ApexTestResultLimits",
|
|
3739
|
-
"a_attr": {
|
|
3740
|
-
"href": "sforce_api_objects_apextestresultlimits.htm"
|
|
3741
|
-
},
|
|
3742
|
-
"id": "sforce_api_objects_apextestresultlimits"
|
|
3743
|
-
},
|
|
3744
|
-
{
|
|
3745
|
-
"text": "ApexTestRunResult",
|
|
3746
|
-
"a_attr": {
|
|
3747
|
-
"href": "sforce_api_objects_apextestrunresult.htm"
|
|
3748
|
-
},
|
|
3749
|
-
"id": "sforce_api_objects_apextestrunresult"
|
|
3750
|
-
},
|
|
3751
|
-
{
|
|
3752
|
-
"children": [
|
|
3753
|
-
{
|
|
3754
|
-
"text": "CompileAndTestRequest",
|
|
3755
|
-
"a_attr": {
|
|
3756
|
-
"href": "sforce_api_calls_compileandtest_request.htm"
|
|
3757
|
-
},
|
|
3758
|
-
"id": "sforce_api_calls_compileandtest_request"
|
|
3759
|
-
},
|
|
3760
|
-
{
|
|
3761
|
-
"text": "CompileAndTestResult",
|
|
3762
|
-
"a_attr": {
|
|
3763
|
-
"href": "sforce_api_calls_compileandtest_result.htm"
|
|
3764
|
-
},
|
|
3765
|
-
"id": "sforce_api_calls_compileandtest_result"
|
|
3766
|
-
}
|
|
3767
|
-
],
|
|
3768
|
-
"text": "compileAndTest()",
|
|
3769
|
-
"a_attr": {
|
|
3770
|
-
"href": "sforce_api_calls_compileandtest.htm"
|
|
3771
|
-
},
|
|
3772
|
-
"id": "sforce_api_calls_compileandtest"
|
|
3773
|
-
},
|
|
3774
|
-
{
|
|
3775
|
-
"text": "compileClasses()",
|
|
3776
|
-
"a_attr": {
|
|
3777
|
-
"href": "sforce_api_calls_compileclasses.htm"
|
|
3778
|
-
},
|
|
3779
|
-
"id": "sforce_api_calls_compileclasses"
|
|
3780
|
-
},
|
|
3781
|
-
{
|
|
3782
|
-
"text": "compileTriggers()",
|
|
3783
|
-
"a_attr": {
|
|
3784
|
-
"href": "sforce_api_calls_compiletriggers.htm"
|
|
3785
|
-
},
|
|
3786
|
-
"id": "sforce_api_calls_compiletriggers"
|
|
3787
|
-
},
|
|
3788
|
-
{
|
|
3789
|
-
"children": [
|
|
3790
|
-
{
|
|
3791
|
-
"text": "ExecuteAnonymousResult",
|
|
3792
|
-
"a_attr": {
|
|
3793
|
-
"href": "sforce_api_calls_executeanonymous_result.htm"
|
|
3794
|
-
},
|
|
3795
|
-
"id": "sforce_api_calls_executeanonymous_result"
|
|
3796
|
-
}
|
|
3797
|
-
],
|
|
3798
|
-
"text": "executeanonymous()",
|
|
3799
|
-
"a_attr": {
|
|
3800
|
-
"href": "sforce_api_calls_executeanonymous.htm"
|
|
3801
|
-
},
|
|
3802
|
-
"id": "sforce_api_calls_executeanonymous"
|
|
3803
|
-
},
|
|
3804
|
-
{
|
|
3805
|
-
"children": [
|
|
3806
|
-
{
|
|
3807
|
-
"text": "RunTestsRequest",
|
|
3808
|
-
"a_attr": {
|
|
3809
|
-
"href": "sforce_api_calls_runtests_request.htm"
|
|
3810
|
-
},
|
|
3811
|
-
"id": "sforce_api_calls_runtests_request"
|
|
3812
|
-
},
|
|
3813
|
-
{
|
|
3814
|
-
"text": "RunTestsResult",
|
|
3815
|
-
"a_attr": {
|
|
3816
|
-
"href": "sforce_api_calls_runtests_result.htm"
|
|
3817
|
-
},
|
|
3818
|
-
"id": "sforce_api_calls_runtests_result"
|
|
3819
|
-
}
|
|
3820
|
-
],
|
|
3821
|
-
"text": "runTests()",
|
|
3822
|
-
"a_attr": {
|
|
3823
|
-
"href": "sforce_api_calls_runtests.htm"
|
|
3824
|
-
},
|
|
3825
|
-
"id": "sforce_api_calls_runtests"
|
|
3826
|
-
},
|
|
3827
|
-
{
|
|
3828
|
-
"text": "DebuggingHeader",
|
|
3829
|
-
"a_attr": {
|
|
3830
|
-
"href": "sforce_api_header_debuggingheader.htm"
|
|
3831
|
-
},
|
|
3832
|
-
"id": "sforce_api_header_debuggingheader"
|
|
3833
|
-
},
|
|
3834
|
-
{
|
|
3835
|
-
"text": "PackageVersionHeader",
|
|
3836
|
-
"a_attr": {
|
|
3837
|
-
"href": "apex_api_packageversionheader.htm"
|
|
3838
|
-
},
|
|
3839
|
-
"id": "apex_api_packageversionheader"
|
|
3840
|
-
}
|
|
3841
|
-
],
|
|
3842
|
-
"text": "SOAP API and SOAP Headers for Apex",
|
|
3843
|
-
"a_attr": {
|
|
3844
|
-
"href": "apex_api.htm"
|
|
3845
|
-
},
|
|
3846
|
-
"id": "apex_api"
|
|
3847
|
-
},
|
|
3848
|
-
{
|
|
3849
|
-
"children": [
|
|
3850
|
-
{
|
|
3851
|
-
"text": "Shipping Invoice Example Walk-Through",
|
|
3852
|
-
"a_attr": {
|
|
3853
|
-
"href": "apex_shopping_cart_example_walkthru.htm"
|
|
3854
|
-
},
|
|
3855
|
-
"id": "apex_shopping_cart_example_walkthru"
|
|
3856
|
-
},
|
|
3857
|
-
{
|
|
3858
|
-
"text": "Shipping Invoice Example Code",
|
|
3859
|
-
"a_attr": {
|
|
3860
|
-
"href": "apex_shopping_cart_example_code.htm"
|
|
3861
|
-
},
|
|
3862
|
-
"id": "apex_shopping_cart_example_code"
|
|
3863
|
-
}
|
|
3864
|
-
],
|
|
3865
|
-
"text": "Shipping Invoice Example",
|
|
3866
|
-
"a_attr": {
|
|
3867
|
-
"href": "apex_shopping_cart_example.htm"
|
|
3868
|
-
},
|
|
3869
|
-
"id": "apex_shopping_cart_example"
|
|
3870
|
-
},
|
|
3871
|
-
{
|
|
3872
|
-
"text": "Reserved Keywords",
|
|
3873
|
-
"a_attr": {
|
|
3874
|
-
"href": "apex_reserved_words.htm"
|
|
3875
|
-
},
|
|
3876
|
-
"id": "apex_reserved_words"
|
|
3877
|
-
},
|
|
3878
|
-
{
|
|
3879
|
-
"text": "Action Links Labels",
|
|
3880
|
-
"a_attr": {
|
|
3881
|
-
"href": "connect_appendices_action_links_labels.htm"
|
|
3882
|
-
},
|
|
3883
|
-
"id": "connect_appendices_action_links_labels"
|
|
3884
|
-
},
|
|
3885
|
-
{
|
|
3886
|
-
"text": "Documentation Typographical Conventions",
|
|
3887
|
-
"a_attr": {
|
|
3888
|
-
"href": "apex_qs_conventions.htm"
|
|
3889
|
-
},
|
|
3890
|
-
"id": "apex_qs_conventions"
|
|
3891
|
-
}
|
|
3892
|
-
],
|
|
3893
|
-
"text": "Appendices",
|
|
3894
|
-
"a_attr": {
|
|
3895
|
-
"href": "apex_appendices.htm"
|
|
3896
|
-
},
|
|
3897
|
-
"id": "apex_appendices"
|
|
3898
|
-
},
|
|
3899
|
-
{
|
|
3900
|
-
"text": "Glossary",
|
|
3901
|
-
"a_attr": {
|
|
3902
|
-
"href": "glossary_apex.htm"
|
|
3903
|
-
},
|
|
3904
|
-
"id": "glossary_apex"
|
|
3905
|
-
}
|
|
3906
|
-
],
|
|
3907
|
-
"text": "Apex Developer Guide",
|
|
3908
|
-
"a_attr": {
|
|
3909
|
-
"href": "apex_dev_guide.htm"
|
|
3910
|
-
},
|
|
3911
|
-
"id": "apex_dev_guide"
|
|
3912
|
-
}
|
|
3913
|
-
],
|
|
3914
|
-
"deliverable": "apexcode",
|
|
3915
|
-
"pdf_url": "https://resources.docs.salesforce.com/228/latest/en-us/sfdc/pdf/salesforce_apex_language_reference.pdf",
|
|
3916
|
-
"version": {
|
|
3917
|
-
"version_text": "Winter '21 (API version 50.0)",
|
|
3918
|
-
"release_version": "50.0",
|
|
3919
|
-
"doc_version": "228.0",
|
|
3920
|
-
"version_url": "atlas.en-us.apexcode.meta"
|
|
3921
|
-
},
|
|
3922
|
-
"language": {
|
|
3923
|
-
"label": "ENGLISH",
|
|
3924
|
-
"code": "EN",
|
|
3925
|
-
"locale": "en-us",
|
|
3926
|
-
"url": "atlas.en-us.228.0.apexcode.meta"
|
|
3927
|
-
},
|
|
3928
|
-
"locale": "en-us",
|
|
3929
|
-
"doc_title": "Apex Developer Guide",
|
|
3930
|
-
"available_versions": [
|
|
3931
|
-
{
|
|
3932
|
-
"version_text": "Winter '21 (API version 50.0)",
|
|
3933
|
-
"release_version": "50.0",
|
|
3934
|
-
"doc_version": "228.0",
|
|
3935
|
-
"version_url": "atlas.en-us.apexcode.meta"
|
|
3936
|
-
},
|
|
3937
|
-
{
|
|
3938
|
-
"version_text": "Summer '20 (API version 49.0)",
|
|
3939
|
-
"release_version": "49.0",
|
|
3940
|
-
"doc_version": "226.0",
|
|
3941
|
-
"version_url": "atlas.en-us.226.0.apexcode.meta"
|
|
3942
|
-
},
|
|
3943
|
-
{
|
|
3944
|
-
"version_text": "Spring '20 (API version 48.0)",
|
|
3945
|
-
"release_version": "48.0",
|
|
3946
|
-
"doc_version": "224.0",
|
|
3947
|
-
"version_url": "atlas.en-us.224.0.apexcode.meta"
|
|
3948
|
-
},
|
|
3949
|
-
{
|
|
3950
|
-
"version_text": "Winter '20 (API version 47.0)",
|
|
3951
|
-
"release_version": "47.0",
|
|
3952
|
-
"doc_version": "222.0",
|
|
3953
|
-
"version_url": "atlas.en-us.222.0.apexcode.meta"
|
|
3954
|
-
},
|
|
3955
|
-
{
|
|
3956
|
-
"version_text": "Summer '19 (API version 46.0)",
|
|
3957
|
-
"release_version": "46.0",
|
|
3958
|
-
"doc_version": "220.0",
|
|
3959
|
-
"version_url": "atlas.en-us.220.0.apexcode.meta"
|
|
3960
|
-
},
|
|
3961
|
-
{
|
|
3962
|
-
"version_text": "Spring '19 (API version 45.0)",
|
|
3963
|
-
"release_version": "45.0",
|
|
3964
|
-
"doc_version": "218.0",
|
|
3965
|
-
"version_url": "atlas.en-us.218.0.apexcode.meta"
|
|
3966
|
-
},
|
|
3967
|
-
{
|
|
3968
|
-
"version_text": "Winter '19 (API version 44.0)",
|
|
3969
|
-
"release_version": "44.0",
|
|
3970
|
-
"doc_version": "216.0",
|
|
3971
|
-
"version_url": "atlas.en-us.216.0.apexcode.meta"
|
|
3972
|
-
},
|
|
3973
|
-
{
|
|
3974
|
-
"version_text": "Summer '18 (API version 43.0)",
|
|
3975
|
-
"release_version": "43.0",
|
|
3976
|
-
"doc_version": "214.0",
|
|
3977
|
-
"version_url": "atlas.en-us.214.0.apexcode.meta"
|
|
3978
|
-
},
|
|
3979
|
-
{
|
|
3980
|
-
"version_text": "Spring '18 (API version 42.0)",
|
|
3981
|
-
"release_version": "42.0",
|
|
3982
|
-
"doc_version": "212.0",
|
|
3983
|
-
"version_url": "atlas.en-us.212.0.apexcode.meta"
|
|
3984
|
-
},
|
|
3985
|
-
{
|
|
3986
|
-
"version_text": "Winter '18 (API version 41.0)",
|
|
3987
|
-
"release_version": "41.0",
|
|
3988
|
-
"doc_version": "210.0",
|
|
3989
|
-
"version_url": "atlas.en-us.210.0.apexcode.meta"
|
|
3990
|
-
},
|
|
3991
|
-
{
|
|
3992
|
-
"version_text": "Summer '17 (API version 40.0)",
|
|
3993
|
-
"release_version": "40.0",
|
|
3994
|
-
"doc_version": "208.0",
|
|
3995
|
-
"version_url": "atlas.en-us.208.0.apexcode.meta"
|
|
3996
|
-
},
|
|
3997
|
-
{
|
|
3998
|
-
"version_text": "Spring '17 (API version 39.0)",
|
|
3999
|
-
"release_version": "39.0",
|
|
4000
|
-
"doc_version": "206.0",
|
|
4001
|
-
"version_url": "atlas.en-us.206.0.apexcode.meta"
|
|
4002
|
-
},
|
|
4003
|
-
{
|
|
4004
|
-
"version_text": "Winter '17 (API version 38.0)",
|
|
4005
|
-
"release_version": "38.0",
|
|
4006
|
-
"doc_version": "204.0",
|
|
4007
|
-
"version_url": "atlas.en-us.204.0.apexcode.meta"
|
|
4008
|
-
},
|
|
4009
|
-
{
|
|
4010
|
-
"version_text": "Summer '16 (API version 37.0)",
|
|
4011
|
-
"release_version": "37.0",
|
|
4012
|
-
"doc_version": "202.0",
|
|
4013
|
-
"version_url": "atlas.en-us.202.0.apexcode.meta"
|
|
4014
|
-
},
|
|
4015
|
-
{
|
|
4016
|
-
"version_text": "Spring '16 (API version 36.0)",
|
|
4017
|
-
"release_version": "36.0",
|
|
4018
|
-
"doc_version": "200.0",
|
|
4019
|
-
"version_url": "atlas.en-us.200.0.apexcode.meta"
|
|
4020
|
-
},
|
|
4021
|
-
{
|
|
4022
|
-
"version_text": "Winter '16 (API version 35.0)",
|
|
4023
|
-
"release_version": "35.0",
|
|
4024
|
-
"doc_version": "198.0",
|
|
4025
|
-
"version_url": "atlas.en-us.198.0.apexcode.meta"
|
|
4026
|
-
},
|
|
4027
|
-
{
|
|
4028
|
-
"version_text": "Summer '15 (API version 34.0)",
|
|
4029
|
-
"release_version": "34.0",
|
|
4030
|
-
"doc_version": "196.0",
|
|
4031
|
-
"version_url": "atlas.en-us.196.0.apexcode.meta"
|
|
4032
|
-
},
|
|
4033
|
-
{
|
|
4034
|
-
"version_text": "Spring '15 (API version 33.0)",
|
|
4035
|
-
"release_version": "33.0",
|
|
4036
|
-
"doc_version": "194.0",
|
|
4037
|
-
"version_url": "atlas.en-us.194.0.apexcode.meta"
|
|
4038
|
-
},
|
|
4039
|
-
{
|
|
4040
|
-
"version_text": "Winter '15 (API version 32.0)",
|
|
4041
|
-
"release_version": "32.0",
|
|
4042
|
-
"doc_version": "192.0",
|
|
4043
|
-
"version_url": "atlas.en-us.192.0.apexcode.meta"
|
|
4044
|
-
},
|
|
4045
|
-
{
|
|
4046
|
-
"version_text": "Spring '14 (API version 30.0)",
|
|
4047
|
-
"release_version": "30.0",
|
|
4048
|
-
"doc_version": "188.0",
|
|
4049
|
-
"version_url": "atlas.en-us.188.0.apexcode.meta"
|
|
4050
|
-
}
|
|
4051
|
-
],
|
|
4052
|
-
"available_languages": [
|
|
4053
|
-
{
|
|
4054
|
-
"label": "ENGLISH",
|
|
4055
|
-
"code": "EN",
|
|
4056
|
-
"locale": "en-us",
|
|
4057
|
-
"url": "atlas.en-us.228.0.apexcode.meta"
|
|
4058
|
-
}
|
|
4059
|
-
],
|
|
4060
|
-
"html_toc": null
|
|
4061
|
-
}
|