HomeSort by relevance Sort by last modified time
    Searched refs:getContextPath (Results 1 - 25 of 28) sorted by null

1 2

  /external/jetty/src/java/org/eclipse/jetty/server/handler/jmx/
AbstractHandlerMBean.java 97 if (context.getContextPath()!=null && context.getContextPath().length()>0)
99 int idx = context.getContextPath().lastIndexOf('/');
100 name = idx < 0 ? context.getContextPath() : context.getContextPath().substring(++idx);
  /external/jetty/src/java/org/eclipse/jetty/server/
UserIdentity.java 71 String getContextPath();
ServletRequestHttpWrapper.java 96 public String getContextPath()
Dispatcher.java 176 attr._contextPath=_contextHandler.getContextPath();
215 final String old_context_path=baseRequest.getContextPath();
271 baseRequest.setContextPath(_contextHandler.getContextPath());
Server.java 390 final String contextPath=state.getServletContext().getContextPath();
AsyncContinuation.java     [all...]
Request.java 107 * <li>The {@link Request#getContextPath()} method will return null, until the request has been passed to a {@link ContextHandler} which matches the
548 * @see javax.servlet.http.HttpServletRequest#getContextPath()
550 public String getContextPath()
    [all...]
Response.java 206 !path.startsWith(request.getContextPath())) //TODO the root context path is "", with which every non null string starts
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
DefaultHandler.java 141 writer.write(context.getContextPath());
142 if (context.getContextPath().length()>1 && context.getContextPath().endsWith("/"))
145 writer.write(context.getContextPath());
155 writer.write(context.getContextPath());
ContextHandler.java 490 public String getContextPath()
695 _logger = Log.getLogger(getDisplayName() == null?getContextPath():getDisplayName());
    [all...]
ContextHandlerCollection.java 93 String contextPath=handler.getContextPath();
  /external/jetty/src/java/org/eclipse/jetty/servlet/
Invoker.java 217 request.getContextPath());
288 return URIUtil.addPaths(URIUtil.addPaths(getContextPath(),_servletPath),_pathInfo);
ServletHolder.java 610 * @see org.eclipse.jetty.server.UserIdentity.Scope#getContextPath()
612 public String getContextPath()
614 return _config.getServletContext().getContextPath();
DefaultServlet.java 502 response.sendRedirect(response.encodeRedirectURL(URIUtil.addPaths(_servletContext.getContextPath(),pathInContext)));
557 response.sendRedirect(response.encodeRedirectURL(URIUtil.addPaths( _servletContext.getContextPath(),welcome)+"?"+q));
559 response.sendRedirect(response.encodeRedirectURL(URIUtil.addPaths( _servletContext.getContextPath(),welcome)));
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
FormAuthenticator.java 238 nuri = request.getContextPath();
266 response.sendRedirect(response.encodeRedirectURL(URIUtil.addPaths(request.getContextPath(),_formErrorPage)));
352 response.sendRedirect(response.encodeRedirectURL(URIUtil.addPaths(request.getContextPath(),_formLoginPage)));
DigestAuthenticator.java 236 String domain = request.getContextPath();
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionManager.java 154 _canonicalContext = canonicalize(_context.getContextPath());
482 session = loadSession(idInCluster, canonicalize(_context.getContextPath()), getVirtualHost(_context));
487 session = loadSession(idInCluster, canonicalize(_context.getContextPath()), getVirtualHost(_context));
    [all...]
AbstractSessionManager.java 197 HttpCookie cookie=getSessionCookie(session,_context==null?"/":(_context.getContextPath()),secure);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet_2.5.0.v200910301333.jar 
  /external/jetty/src/java/org/eclipse/jetty/servlets/
PutFilter.java 302 String contextPath = request.getContextPath();
CGI.java 170 LOG.debug("CGI: ContextPath : " + req.getContextPath());
ProxyServlet.java 872 String contextPath = _context.getContextPath();
  /external/jetty/lib/
javax.servlet-3.0.0.v201112011016.jar 
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebInfConfiguration.java 665 String contextPath = context.getContextPath();
WebAppContext.java 580 LOG.info(displayName + " at http://" + connectorName + getContextPath());
    [all...]

Completed in 652 milliseconds

1 2