Package | Description |
---|---|
org.apache.camel.component.salesforce.api.dto.composite | |
org.apache.camel.component.salesforce.internal.client |
Modifier and Type | Method and Description |
---|---|
SObjectBatch |
SObjectBatch.addCreate(AbstractDescribedSObjectBase data)
Add create SObject to the batch request.
|
SObjectBatch |
SObjectBatch.addDelete(String type,
String id)
Add delete SObject with identifier to the batch request.
|
SObjectBatch |
SObjectBatch.addGeneric(SObjectBatch.Method method,
String url)
Generic way to add requests to batch.
|
SObjectBatch |
SObjectBatch.addGeneric(SObjectBatch.Method method,
String url,
Object richInput)
Generic way to add requests to batch with
richInput payload. |
SObjectBatch |
SObjectBatch.addGet(String type,
String id,
String... fields)
Add field retrieval of an SObject by identifier to the batch request.
|
SObjectBatch |
SObjectBatch.addGetByExternalId(String type,
String fieldName,
String fieldValue)
Add field retrieval of an SObject by external identifier to the batch request.
|
SObjectBatch |
SObjectBatch.addGetRelated(String type,
String id,
String relation,
String... fields)
Add retrieval of related SObject fields by identifier.
|
SObjectBatch |
SObjectBatch.addLimits()
Add retrieval of limits to the batch.
|
SObjectBatch |
SObjectBatch.addQuery(String query)
Add retrieval of SObject records by query to the batch.
|
SObjectBatch |
SObjectBatch.addQueryAll(String query)
Add retrieval of all SObject records by query to the batch.
|
SObjectBatch |
SObjectBatch.addSearch(String searchString)
Add retrieval of SObject records by search to the batch.
|
SObjectBatch |
SObjectBatch.addUpdate(String type,
String id,
AbstractSObjectBase data)
Add update of SObject record to the batch.
|
SObjectBatch |
SObjectBatch.addUpdateByExternalId(String type,
String fieldName,
String fieldValue,
AbstractSObjectBase data)
Add update of SObject record by external identifier to the batch.
|
SObjectBatch |
SObjectBatch.addUpsertByExternalId(String type,
String fieldName,
String fieldValue,
AbstractSObjectBase data)
Add insert or update of SObject record by external identifier to the batch.
|
Modifier and Type | Method and Description |
---|---|
void |
CompositeApiClient.submitCompositeBatch(SObjectBatch batch,
CompositeApiClient.ResponseCallback<SObjectBatchResponse> callback) |
void |
DefaultCompositeApiClient.submitCompositeBatch(SObjectBatch batch,
CompositeApiClient.ResponseCallback<SObjectBatchResponse> callback) |
Apache Camel