You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2014/12/02 16:31:47 UTC

camel git commit: CAMEl-8104 Fixed the unit test error of camel-core

Repository: camel
Updated Branches:
  refs/heads/camel-2.14.x be560320d -> e3b0bb3a6


CAMEl-8104 Fixed the unit test error of camel-core


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

Branch: refs/heads/camel-2.14.x
Commit: e3b0bb3a654c9ce04182ea072639e998a2b98b48
Parents: be56032
Author: Willem Jiang <wi...@gmail.com>
Authored: Tue Dec 2 22:22:32 2014 +0800
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Dec 2 16:31:27 2014 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/model/rest/RestDefinition.java    | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/e3b0bb3a/camel-core/src/main/java/org/apache/camel/model/rest/RestDefinition.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/model/rest/RestDefinition.java b/camel-core/src/main/java/org/apache/camel/model/rest/RestDefinition.java
index adc0df9..2ddbcca 100644
--- a/camel-core/src/main/java/org/apache/camel/model/rest/RestDefinition.java
+++ b/camel-core/src/main/java/org/apache/camel/model/rest/RestDefinition.java
@@ -103,10 +103,19 @@ public class RestDefinition extends OptionalIdentifiedDefinition<RestDefinition>
     public void setVerbs(List<VerbDefinition> verbs) {
         this.verbs = verbs;
     }
+   
+    public Boolean getSkipBindingOnErrorCode() {
+        return skipBindingOnErrorCode;
+    }
 
+    public void setSkipBindingOnErrorCode(Boolean skipBindingOnErrorCode) {
+        this.skipBindingOnErrorCode = skipBindingOnErrorCode;
+    }
+    
     // Fluent API
     //-------------------------------------------------------------------------
 
+
     /**
      * To set the base path of this REST service
      */