This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 895c5a7 CAMEL-13989: Enhance schema name javadoc in UriEndpoint annotation 895c5a7 is described below commit 895c5a753a031251d6cf4f47d95b9efc364f91ee Author: Omar Al-Safi <omars...@gmail.com> AuthorDate: Tue Sep 17 16:31:52 2019 +0200 CAMEL-13989: Enhance schema name javadoc in UriEndpoint annotation --- .../spi-annotations/src/main/java/org/apache/camel/spi/UriEndpoint.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tooling/spi-annotations/src/main/java/org/apache/camel/spi/UriEndpoint.java b/tooling/spi-annotations/src/main/java/org/apache/camel/spi/UriEndpoint.java index 703c80d..8e770b2 100644 --- a/tooling/spi-annotations/src/main/java/org/apache/camel/spi/UriEndpoint.java +++ b/tooling/spi-annotations/src/main/java/org/apache/camel/spi/UriEndpoint.java @@ -44,6 +44,8 @@ public @interface UriEndpoint { * For example to associate <tt>http</tt> and <tt>https</tt> to the same endpoint implementation. * <p/> * The order of the scheme names here should be the same order as in {@link #extendsScheme()} so their are paired. + * <p/> + * The schema name must be lowercase, it may contain dashes as well. For example: robot-framework. */ String scheme();