Fixing bad javadoc references that broke the build
This commit is contained in:
parent
cf6c15d8bc
commit
bec06de61d
|
@ -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