You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2019/06/18 10:18:47 UTC

[camel] branch camel-2.x updated: CAMEL-13638: Fixed camel-salesforce-maven-plugin expected for the new attributes/type

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 <al...@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")