2.37.3. 用途
2.37.3.1. salesforce-maven-plugin
を使用した Salesforce DTO の生成
注記
camel-salesforce-maven-plugin
は、コミュニティーのサポートによってのみカバーされます。
プロジェクトの Salesforce DTO を生成するには、salesforce-maven-plugin
を使用します。以下のサンプルコードスニペットは、Account
オブジェクトの単一の DTO を作成します。
<plugin> <groupId>org.apache.camel.maven</groupId> <artifactId>camel-salesforce-maven-plugin</artifactId> <version>3.11.1</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <clientId>${env.SALESFORCE_CLIENTID}</clientId> <clientSecret>${env.SALESFORCE_CLIENTSECRET}</clientSecret> <userName>${env.SALESFORCE_USERNAME}</userName> <password>${env.SALESFORCE_PASSWORD}</password> <loginUrl>https://login.salesforce.com</loginUrl> <packageName>org.apache.camel.quarkus.component.salesforce.generated</packageName> <outputDirectory>src/main/java</outputDirectory> <includes> <include>Account</include> </includes> </configuration> </execution> </executions> </plugin>