This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch camel-2.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.x by this push: new d36d6d8 CAMEL-13638: Fixed camel-salesforce-maven-plugin expected for the new attributes/type d36d6d8 is described below commit d36d6d8bed3bd895b8668d72598ca82f5a91f1c9 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 da90919..77bc567 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 @@ -18,6 +18,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")