Repository: camel Updated Branches: refs/heads/master e34ee63cd -> a9982a2d9
Revert "CAMEL-8345 use Properties instead of Property to define the properties in restConfiguration" This reverts commit b4332c1a67271c2148f7e79e8469b0fbdca03cdd. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a9982a2d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a9982a2d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a9982a2d Branch: refs/heads/master Commit: a9982a2d9bf236591df518d31a949c20b036249b Parents: e34ee63 Author: Claus Ibsen <davscl...@apache.org> Authored: Sun Feb 15 15:19:42 2015 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sun Feb 15 15:19:42 2015 +0100 ---------------------------------------------------------------------- .../apache/camel/model/rest/RestConfigurationDefinition.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/a9982a2d/camel-core/src/main/java/org/apache/camel/model/rest/RestConfigurationDefinition.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/model/rest/RestConfigurationDefinition.java b/camel-core/src/main/java/org/apache/camel/model/rest/RestConfigurationDefinition.java index 8c11b6f..f44f5ba 100644 --- a/camel-core/src/main/java/org/apache/camel/model/rest/RestConfigurationDefinition.java +++ b/camel-core/src/main/java/org/apache/camel/model/rest/RestConfigurationDefinition.java @@ -72,16 +72,16 @@ public class RestConfigurationDefinition { @XmlAttribute private String xmlDataFormat; - @XmlElement(name = "componentProperties") + @XmlElement(name = "componentProperty") private List<RestPropertyDefinition> componentProperties = new ArrayList<RestPropertyDefinition>(); - @XmlElement(name = "endpointProperties") + @XmlElement(name = "endpointProperty") private List<RestPropertyDefinition> endpointProperties = new ArrayList<RestPropertyDefinition>(); - @XmlElement(name = "consumerProperties") + @XmlElement(name = "consumerProperty") private List<RestPropertyDefinition> consumerProperties = new ArrayList<RestPropertyDefinition>(); - @XmlElement(name = "dataFormatProperties") + @XmlElement(name = "dataFormatProperty") private List<RestPropertyDefinition> dataFormatProperties = new ArrayList<RestPropertyDefinition>(); @XmlElement(name = "corsHeaders")