You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dh...@apache.org on 2015/03/20 22:30:37 UTC

[06/17] camel git commit: CAMEL-8152: Added enum value EXTENDED

CAMEL-8152: Added enum value EXTENDED


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/cbbc8f07
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/cbbc8f07
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/cbbc8f07

Branch: refs/heads/camel-2.12.x
Commit: cbbc8f07e21b7eaffe936f9b3a8ae8882c8f7972
Parents: 36a1747
Author: Dhiraj Bokde <dh...@yahoo.com>
Authored: Sat Dec 13 10:18:31 2014 -0800
Committer: Dhiraj Bokde <dh...@yahoo.com>
Committed: Fri Mar 20 14:24:43 2015 -0700

----------------------------------------------------------------------
 .../salesforce/internal/dto/NotifyForOperationsEnum.java          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/cbbc8f07/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/NotifyForOperationsEnum.java
----------------------------------------------------------------------
diff --git a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/NotifyForOperationsEnum.java b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/NotifyForOperationsEnum.java
index 807fef5..f75839c 100644
--- a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/NotifyForOperationsEnum.java
+++ b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/NotifyForOperationsEnum.java
@@ -26,7 +26,8 @@ public enum NotifyForOperationsEnum {
 
     CREATE("Create"),
     UPDATE("Update"),
-    ALL("All");
+    ALL("All"),
+    EXTENDED("Extended");
 
     final String value;