org.cougaar.lib.web.arch.util |
|
Java Source File Name | Type | Comment |
PathParser.java | Class | Parses a URL path into its name, is_node_of, options, and subpath.
"is_node_of" is a special flag. |
PrefixMatch.java | Class | Returned by PrefixTable.match(input) if the
matched entry was not an exact match. |
PrefixTable.java | Interface | A table of (prefix --> object) entries, suitable for
Servlet PATH_INFO lookups.
Each prefix match(input) lookup supports either an
exact match or a prefix match + "/" + optional additional text.
(I.e. |
PrefixTableImpl.java | Class | Implementation of PrefixTable API.
This is a lazy implementation with a flat list of (String, Object)
pairs. |
SynchronizedServlet.java | Class | An internal wrapper for Servlets that implement
SingleThreadModel -- note that
if a Servlet is registered under multiple names then
this will only synchronize per name. |