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

1 2

  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletUtils.java 41 String contextPath = request.getContextPath();
43 if (contextPath.length() < requestURI.length()) {
44 return requestURI.substring(contextPath.length());
46 contextPath.length() == requestURI.length()) {
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ContextHandlerCollection.java 93 String contextPath=handler.getContextPath();
95 if (contextPath==null || contextPath.indexOf(',')>=0 || contextPath.startsWith("*"))
96 throw new IllegalArgumentException ("Illegal context spec:"+contextPath);
98 if(!contextPath.startsWith("/"))
99 contextPath='/'+contextPath;
101 if (contextPath.length()>1)
103 if (contextPath.endsWith("/")
    [all...]
MovedContextHandler.java 54 public MovedContextHandler(HandlerContainer parent, String contextPath, String newContextURL)
56 super(parent,contextPath);
ContextHandler.java 195 public ContextHandler(String contextPath)
198 setContextPath(contextPath);
205 public ContextHandler(HandlerContainer parent, String contextPath)
208 setContextPath(contextPath);
693 throw new IllegalStateException("Null contextPath");
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
PutFilter.java 302 String contextPath = request.getContextPath();
303 if (contextPath != null && !newPath.startsWith(contextPath))
309 if (contextPath != null)
310 newInfo = newInfo.substring(contextPath.length());
ProxyServlet.java 872 String contextPath = _context.getContextPath();
873 _prefix = _prefix == null?contextPath:(contextPath + _prefix);
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletDefinitionPathsTest.java 142 private void pathInfoWithServletStyleMatching(final String requestUri, final String contextPath,
192 .andReturn(contextPath);
242 public final void pathInfoWithRegexMatching(final String requestUri, final String contextPath,
292 .andReturn(contextPath);
ContextPathTest.java 232 private void runTest(final String requestURI, final String servletPath, final String contextPath,
247 expect(req.getContextPath()).andReturn(contextPath).anyTimes();
  /external/jetty/src/java/org/eclipse/jetty/server/
SessionManager.java 181 * @param contextPath the context to which the cookie should be linked.
188 public HttpCookie getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecure);
Server.java 390 final String contextPath=state.getServletContext().getContextPath();
391 HttpURI uri = new HttpURI(URIUtil.addPaths(contextPath,path));
Request.java     [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebInfConfiguration.java 665 String contextPath = context.getContextPath();
666 contextPath=contextPath.replace('/','_');
667 contextPath=contextPath.replace('\\','_');
668 canonicalName.append(contextPath);
WebAppContext.java 203 * @param contextPath The context path
206 public WebAppContext(String webApp,String contextPath)
208 super(null,contextPath,SESSIONS|SECURITY);
210 setContextPath(contextPath);
219 * @param contextPath The context path
222 public WebAppContext(HandlerContainer parent, String webApp, String contextPath)
224 super(parent,contextPath,SESSIONS|SECURITY);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlet/
ServletContextHandler.java 108 public ServletContextHandler(HandlerContainer parent, String contextPath)
110 this(parent,contextPath,null,null,null,null);
114 public ServletContextHandler(HandlerContainer parent, String contextPath, int options)
116 this(parent,contextPath,null,null,null,null);
121 public ServletContextHandler(HandlerContainer parent, String contextPath, boolean sessions, boolean security)
123 this(parent,contextPath,(sessions?SESSIONS:0)|(security?SECURITY:0));
133 public ServletContextHandler(HandlerContainer parent, String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
144 if (contextPath!=null)
145 setContextPath(contextPath);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionIdManager.java 209 public PreparedStatement getLoadStatement (Connection connection, String rowId, String contextPath, String virtualHosts)
212 if (contextPath == null || "".equals(contextPath))
217 " where sessionId = ? and contextPath is null and virtualHost = ?");
228 " where sessionId = ? and contextPath = ? and virtualHost = ?");
230 statement.setString(2, contextPath);
613 " contextPath varchar(60), virtualHost varchar(60), lastNode varchar(60), accessTime "+longType+", "+
642 statement.executeUpdate("create index "+index2+" on "+_sessionTable+" (sessionId, contextPath)");
656 " ("+_sessionTableRowId+", sessionId, contextPath, virtualHost, lastNode, accessTime, lastAccessTime, createTime, cookieTime, lastSavedTime, expiryTime, map) "+
    [all...]
AbstractSessionManager.java 469 public HttpCookie getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecure)
473 String sessionPath = (_sessionPath==null) ? contextPath : _sessionPath;
    [all...]
  /prebuilts/tools/common/m2/repository/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/
jaxb-api-2.2.12-b140109.1041.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 
struts2-core-2.2.1.jar 
  /external/guice/extensions/persist/lib/
dom4j-1.6.1.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
dom4j-1.6.1.jar 
  /prebuilts/tools/common/m2/repository/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-xjc/2.2.11/
jaxb-xjc-2.2.11.jar 

Completed in 1068 milliseconds

1 2