This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new f3a6a9b CAMEL-13638: Fixed camel-salesforce-maven-plugin expected for the new attributes/type f3a6a9b is described below commit f3a6a9b1c07c20a418a018ad9c7b0fd1aba84496 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Fri Jun 14 17:44:32 2019 +0200 CAMEL-13638: Fixed camel-salesforce-maven-plugin expected for the new attributes/type --- .../test/resources/generated/With_External_Id__c_Lookup.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/camel-salesforce/camel-salesforce-maven-plugin/src/test/resources/generated/With_External_Id__c_Lookup.java b/components/camel-salesforce/camel-salesforce-maven-plugin/src/test/resources/generated/With_External_Id__c_Lookup.java index bb31ba4..b33ef4b 100644 --- a/components/camel-salesforce/camel-salesforce-maven-plugin/src/test/resources/generated/With_External_Id__c_Lookup.java +++ b/components/camel-salesforce/camel-salesforce-maven-plugin/src/test/resources/generated/With_External_Id__c_Lookup.java @@ -17,6 +17,18 @@ import com.thoughtworks.xstream.annotations.XStreamAlias; @XStreamAlias("With_External_Id__c_Lookup") @JsonInclude(Include.NON_NULL) public class With_External_Id__c_Lookup { + class Attributes { + @JsonProperty("type") + public String getType() { + return "With_External_Id__c"; + } + } + + @JsonProperty("attributes") + public Attributes getAttributes() { + return new Attributes(); + } + private String External_Id__c; @JsonProperty("External_Id__c")