Lines Matching defs:path

45  * with a root URI path which represents the
58 * whose path is the longest matching prefix of the request URI's path.
64 * <tr><th scope="col"><i>Context</i></th><th scope="col"><i>Context path</i></th></tr>
200 * URI path to a exchange handler on this HttpServer. Once created, all requests
201 * received by the server for the path will be handled by calling
202 * the given handler object. The context is identified by the path, and
205 * The path specifies the root URI path for this context. The first character of path must be
209 * @param path the root URI path to associate the context with
211 * @throws IllegalArgumentException if path is invalid, or if a context
212 * already exists for this path
213 * @throws NullPointerException if either path, or handler are <code>null</code>
215 public abstract HttpContext createContext (String path, HttpHandler handler) ;
220 * URI path to an exchange handler on this HttpServer. Once created, and when
222 * received by the server for the path will be handled by calling
223 * the handler object. The context is identified by the path, and
226 * The path specifies the root URI path for this context. The first character of path must be
230 * @param path the root URI path to associate the context with
231 * @throws IllegalArgumentException if path is invalid, or if a context
232 * already exists for this path
233 * @throws NullPointerException if path is <code>null</code>
235 public abstract HttpContext createContext (String path) ;
238 * Removes the context identified by the given path from the server.
241 * @param path the path of the handler to remove
243 * path exists.
244 * @throws NullPointerException if path is <code>null</code>
246 public abstract void removeContext (String path) throws IllegalArgumentException ;