Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java')
-rw-r--r--jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java b/jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java
index f9d96ced22..e03a035de1 100644
--- a/jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java
+++ b/jetty-http/src/main/java/org/eclipse/jetty/http/pathmap/PathSpecGroup.java
@@ -35,6 +35,17 @@ public enum PathSpecGroup
// NOTE: Order of enums determines order of Groups.
/**
+ * The root spec for accessing the Root behavior.
+ *
+ * <pre>
+ * "" - servlet spec (Root Servlet)
+ * null - servlet spec (Root Servlet)
+ * </pre>
+ *
+ * Note: there is no known uri-template spec variant of this kind of path spec
+ */
+ ROOT,
+ /**
* For exactly defined path specs, no glob.
*/
EXACT,
@@ -75,17 +86,6 @@ public enum PathSpecGroup
*/
SUFFIX_GLOB,
/**
- * The root spec for accessing the Root behavior.
- *
- * <pre>
- * "" - servlet spec (Root Servlet)
- * null - servlet spec (Root Servlet)
- * </pre>
- *
- * Note: there is no known uri-template spec variant of this kind of path spec
- */
- ROOT,
- /**
* The default spec for accessing the Default path behavior.
*
* <pre>

Back to the top