Repository: camel Updated Branches: refs/heads/master e01fdb387 -> 554a7b5de Polished javadoc Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/554a7b5d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/554a7b5d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/554a7b5d Branch: refs/heads/master Commit: 554a7b5de8af4bb5bce45516b3a0cd7119861019 Parents: e01fdb3 Author: Claus Ibsen Authored: Wed Sep 16 16:03:32 2015 +0200 Committer: Claus Ibsen Committed: Wed Sep 16 16:03:32 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/catalog/CamelCatalog.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/554a7b5d/platforms/catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java ---------------------------------------------------------------------- diff --git a/platforms/catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java b/platforms/catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java index a32b0b1..43847d9 100644 --- a/platforms/catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java +++ b/platforms/catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java @@ -166,7 +166,7 @@ public interface CamelCatalog { String endpointComponentName(String uri); /** - * Creates an endpoint uri from the information in the json schema + * Creates an endpoint uri in Java style from the information in the json schema * * @param scheme the endpoint schema * @param json the json schema with the endpoint properties @@ -176,7 +176,7 @@ public interface CamelCatalog { String asEndpointUri(String scheme, String json) throws URISyntaxException; /** - * Creates an endpoint uri from the information in the json schema + * Creates an endpoint uri in XML style (eg escape & as &l;) from the information in the json schema * * @param scheme the endpoint schema * @param json the json schema with the endpoint properties @@ -186,7 +186,7 @@ public interface CamelCatalog { String asEndpointUriXml(String scheme, String json) throws URISyntaxException; /** - * Creates an endpoint uri in XML style from the information from the properties + * Creates an endpoint uri in Java style from the information from the properties * * @param scheme the endpoint schema * @param properties the properties as key value pairs @@ -196,7 +196,7 @@ public interface CamelCatalog { String asEndpointUri(String scheme, Map properties) throws URISyntaxException; /** - * Creates an endpoint uri in XML style from the information from the properties + * Creates an endpoint uri in XML style (eg escape & as &l;) from the information from the properties * * @param scheme the endpoint schema * @param properties the properties as key value pairs