Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 67. Salesforce
Communicate with Salesforce using Java DTOs.
67.1. What’s inside Link kopierenLink in die Zwischenablage kopiert!
-
Salesforce component, URI syntax:
salesforce:operationName:topicName
Please refer to the above link for usage and configuration details.
67.2. Maven coordinates Link kopierenLink in die Zwischenablage kopiert!
Create a new project with this extension on code.quarkus.redhat.com
Or add the coordinates to your existing project:
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-salesforce</artifactId> </dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-salesforce</artifactId>
</dependency>
67.3. Usage Link kopierenLink in die Zwischenablage kopiert!
67.3.1. Generating Salesforce DTOs with the salesforce-maven-plugin Link kopierenLink in die Zwischenablage kopiert!
Test content.
To generate Salesforce DTOs for your project, use the salesforce-maven-plugin
. The example code snippet below creates a single DTO for the Account
object.
67.4. SSL in native mode Link kopierenLink in die Zwischenablage kopiert!
This extension auto-enables SSL support in native mode. Hence you do not need to add quarkus.ssl.native=true
to your application.properties
yourself. See also Quarkus SSL guide.