/**
- * Notify all {@link ServletRequestListener}s that a request has started.
+ * Notify all {@link javax.servlet.ServletRequestListener}s that a request
+ * has started.
* @return <code>true</code> if the listeners fire successfully, else
* <code>false</code>
*/
public boolean fireRequestInitEvent(ServletRequest request);
/**
- * Notify all {@link ServletRequestListener}s that a request has ended.
+ * Notify all {@link javax.servlet.ServletRequestListener}s that a request
+ * has ended.
* @return <code>true</code> if the listeners fire successfully, else
* <code>false</code>
*/
/**
* Notification that servlet security has been dynamically set in a
- * {@link ServletRegistration.Dynamic}
+ * {@link javax.servlet.ServletRegistration.Dynamic}
* @param registration servlet security was modified for
* @param servletSecurityElement new security constraints for this servlet
* @return urls currently mapped to this registration that are already
/**
* Reload the web application at the specified context path.
*
- * @see ManagerServlet#reload(PrintWriter, String)
+ * @see ManagerServlet#reload(PrintWriter, String, StringManager)
*
* @param path Context path of the application to be restarted
* @return message String
/**
* Undeploy the web application at the specified context path.
*
- * @see ManagerServlet#undeploy(PrintWriter, String)
+ * @see ManagerServlet#undeploy(PrintWriter, String, StringManager)
*
* @param path Context path of the application to be undeployed
* @return message String
/**
* Display session information and invoke list.
*
- * @see ManagerServlet#sessions(PrintWriter, String, int)
+ * @see ManagerServlet#sessions(PrintWriter, String, int, StringManager)
*
* @param path Context path of the application to list session information
* @param idle Expire all sessions with idle time ≥ idle for this context
/**
* Display session information and invoke list.
*
- * @see ManagerServlet#sessions(PrintWriter, String)
+ * @see ManagerServlet#sessions(PrintWriter, String, StringManager)
*
* @param path Context path of the application to list session information
* @return message String
/**
* Start the web application at the specified context path.
*
- * @see ManagerServlet#start(PrintWriter, String)
+ * @see ManagerServlet#start(PrintWriter, String, StringManager)
*
* @param path Context path of the application to be started
* @return message String
/**
* Stop the web application at the specified context path.
*
- * @see ManagerServlet#stop(PrintWriter, String)
+ * @see ManagerServlet#stop(PrintWriter, String, StringManager)
*
* @param path Context path of the application to be stopped
* @return message String
/**
* Find potential memory leaks caused by web application reload.
*
- * @see ManagerServlet#findleaks(PrintWriter)
+ * @see ManagerServlet#findleaks(PrintWriter, StringManager)
*
* @return message String
*/