Fixing bad javadoc references that broke the build

This commit is contained in:
Joakim Erdfelt 2016-05-04 09:16:15 -07:00
parent cf6c15d8bc
commit bec06de61d
7 changed files with 8 additions and 11 deletions

View File

@ -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)
{

View File

@ -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)

View File

@ -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)
{

View File

@ -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)

View File

@ -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)

View File

@ -920,9 +920,6 @@ public class Session implements SessionHandler.SessionIf
/* ------------------------------------------------------------- */
/**
* @see org.eclipse.jetty.server.session.SessionManager.SessionIf#getSession()
*/
@Override
public Session getSession()
{

View File

@ -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()
*/