Merge branch 'jetty-9.4.x'
This commit is contained in:
commit
00543724ec
|
@ -71,7 +71,7 @@ public class HttpURIParseTest
|
|||
{"/path/info;param#fragment",null,null,null,"/path/info;param","param",null,"fragment"},
|
||||
{"/path/info;param?query",null,null,null,"/path/info;param","param","query",null},
|
||||
{"/path/info;param?query#fragment",null,null,null,"/path/info;param","param","query","fragment"},
|
||||
// FIXME: {"/path/info;a=b/foo;c=d",null,null,null,"/data/info;a=b/foo;c=d","foo=bar1",null,null},
|
||||
{"/path/info;a=b/foo;c=d",null,null,null,"/path/info;a=b/foo;c=d","c=d",null,null}, // TODO #405
|
||||
|
||||
// Protocol Less (aka scheme-less) URIs
|
||||
{"//host/path/info",null,"host",null,"/path/info",null,null,null},
|
||||
|
|
|
@ -2182,8 +2182,8 @@ public class Request implements HttpServletRequest
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @param sessionManager
|
||||
* The sessionManager to set.
|
||||
* @param sessionHandler
|
||||
* The SessionHandler to set.
|
||||
*/
|
||||
public void setSessionHandler(SessionHandler sessionHandler)
|
||||
{
|
||||
|
|
|
@ -65,7 +65,7 @@ public class DefaultSessionCacheFactory implements SessionCacheFactory
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.server.session.SessionCacheFactory#getSessionStore(org.eclipse.jetty.server.session.SessionHandler)
|
||||
* @see org.eclipse.jetty.server.session.SessionCacheFactory#getSessionCache(SessionHandler)
|
||||
*/
|
||||
@Override
|
||||
public SessionCache getSessionCache (SessionHandler handler)
|
||||
|
|
|
@ -104,7 +104,7 @@ public class DefaultSessionIdManager extends AbstractLifeCycle implements Sessio
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @param inspector inspector of sessions
|
||||
* @param houseKeeper the housekeeper
|
||||
*/
|
||||
public void setSessionHouseKeeper (HouseKeeper houseKeeper)
|
||||
{
|
||||
|
|
|
@ -69,7 +69,7 @@ public class FileSessionStoreFactory extends AbstractSessionStoreFactory
|
|||
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.server.session.SessionStoreFactory#getSessionDataStore(org.eclipse.jetty.server.session.SessionHandler)
|
||||
* @see org.eclipse.jetty.server.session.SessionStoreFactory#getSessionStore(SessionHandler)
|
||||
*/
|
||||
@Override
|
||||
public SessionStore getSessionStore(SessionHandler handler)
|
||||
|
|
|
@ -82,7 +82,7 @@ public class JDBCSessionStoreFactory extends AbstractSessionStoreFactory
|
|||
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.server.session.SessionStoreFactory#getSessionDataStore(org.eclipse.jetty.server.session.SessionHandler)
|
||||
* @see org.eclipse.jetty.server.session.SessionStoreFactory#getSessionStore(SessionHandler)
|
||||
*/
|
||||
@Override
|
||||
public SessionStore getSessionStore(SessionHandler handler)
|
||||
|
|
|
@ -920,9 +920,6 @@ public class Session implements SessionHandler.SessionIf
|
|||
|
||||
|
||||
/* ------------------------------------------------------------- */
|
||||
/**
|
||||
* @see org.eclipse.jetty.server.session.SessionManager.SessionIf#getSession()
|
||||
*/
|
||||
@Override
|
||||
public Session getSession()
|
||||
{
|
||||
|
|
|
@ -471,7 +471,7 @@ public class SessionHandler extends ScopedHandler
|
|||
/**
|
||||
* Returns the <code>HttpSession</code> with the given session id
|
||||
*
|
||||
* @param id the session id
|
||||
* @param extendedId the session id
|
||||
* @return the <code>HttpSession</code> with the corresponding id or null if no session with the given id exists
|
||||
*/
|
||||
public HttpSession getHttpSession(String extendedId)
|
||||
|
@ -841,7 +841,7 @@ public class SessionHandler extends ScopedHandler
|
|||
/**
|
||||
* Sets the session id URL path parameter name.
|
||||
*
|
||||
* @param parameterName the URL path parameter name for session id URL rewriting (null or "none" for no rewriting).
|
||||
* @param param the URL path parameter name for session id URL rewriting (null or "none" for no rewriting).
|
||||
* @see #getSessionIdPathParameterName()
|
||||
* @see #getSessionIdPathParameterNamePrefix()
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue