Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2015-05-19 20:04:26 +0000
committerThomas Watson2015-05-19 20:06:56 +0000
commit419cdd144c33bd42fa7af9126914907b00907df0 (patch)
treea2cf37381079115ebef8d7193ff86c9584c883c4
parent0f1c189fab479fe03b2c0942cf057b7a2e36f118 (diff)
downloadrt.equinox.framework-419cdd144c33bd42fa7af9126914907b00907df0.tar.gz
rt.equinox.framework-419cdd144c33bd42fa7af9126914907b00907df0.tar.xz
rt.equinox.framework-419cdd144c33bd42fa7af9126914907b00907df0.zip
Bug 467615 - [http whiteboard] small javadoc fix for servlet and filter namesI20150519-2000
-rw-r--r--bundles/org.eclipse.osgi.services/src/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java13
1 files changed, 4 insertions, 9 deletions
diff --git a/bundles/org.eclipse.osgi.services/src/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java b/bundles/org.eclipse.osgi.services/src/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java
index e92aca8f2..b82e6f543 100644
--- a/bundles/org.eclipse.osgi.services/src/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java
+++ b/bundles/org.eclipse.osgi.services/src/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java
@@ -147,10 +147,8 @@ public final class HttpWhiteboardConstants {
* property to apply the filter to the servlet.
*
* <p>
- * Servlet names must be unique among all servlet services associated with a
- * single {@link ServletContextHelper}. If multiple servlet services
- * associated with the same HttpContext have the same servlet name, then all
- * but the highest ranked servlet service are ignored.
+ * Servlet names should be unique among all servlet services associated with
+ * a single {@link ServletContextHelper}.
*
* <p>
* The value of this service property must be of type {@code String}.
@@ -233,11 +231,8 @@ public final class HttpWhiteboardConstants {
* used as the servlet filter name.
*
* <p>
- * Servlet filter names must be unique among all servlet filter services
- * associated with a single {@link ServletContextHelper}. If multiple
- * servlet filter services associated with the same context have the same
- * servlet filter name, then all but the highest ranked servlet filter
- * service are ignored.
+ * Servlet filter names should be unique among all servlet filter services
+ * associated with a single {@link ServletContextHelper}.
*
* <p>
* The value of this service property must be of type {@code String}.

Back to the top