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/5e3a5baf Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5e3a5baf Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5e3a5baf Branch: refs/heads/camel-2.13.x Commit: 5e3a5baf46d72fb484692bee176728d6d0c85cc4 Parents: c97a081 Author: Dhiraj Bokde <[email protected]> Authored: Sat Dec 13 10:18:31 2014 -0800 Committer: Dhiraj Bokde <[email protected]> Committed: Sat Dec 13 10:30:01 2014 -0800 ---------------------------------------------------------------------- .../salesforce/internal/dto/NotifyForOperationsEnum.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/5e3a5baf/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;
