Author: markt Date: Fri Oct 12 09:14:57 2012 New Revision: 1397486 URL: http://svn.apache.org/viewvc?rev=1397486&view=rev Log: Servlet 3.0 Javadoc improvements
Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/javax/servlet/http/HttpServletRequestWrapper.java Propchange: tomcat/tc7.0.x/trunk/ ------------------------------------------------------------------------------ Merged /tomcat/trunk:r1397484 Modified: tomcat/tc7.0.x/trunk/java/javax/servlet/http/HttpServletRequestWrapper.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/javax/servlet/http/HttpServletRequestWrapper.java?rev=1397486&r1=1397485&r2=1397486&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/javax/servlet/http/HttpServletRequestWrapper.java (original) +++ tomcat/tc7.0.x/trunk/java/javax/servlet/http/HttpServletRequestWrapper.java Fri Oct 12 09:14:57 2012 @@ -279,7 +279,13 @@ public class HttpServletRequestWrapper e } /** - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * {@inheritDoc} + * <p> + * The default behavior of this method is to return + * {@link HttpServletRequest#authenticate(HttpServletResponse)} + * on the wrapped request object. + * + * @since Servlet 3.0 */ @Override public boolean authenticate(HttpServletResponse response) @@ -288,7 +294,13 @@ public class HttpServletRequestWrapper e } /** - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * {@inheritDoc} + * <p> + * The default behavior of this method is to return + * {@link HttpServletRequest#login(String, String)} + * on the wrapped request object. + * + * @since Servlet 3.0 */ @Override public void login(String username, String password) throws ServletException { @@ -296,7 +308,13 @@ public class HttpServletRequestWrapper e } /** - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * {@inheritDoc} + * <p> + * The default behavior of this method is to return + * {@link HttpServletRequest#logout()} + * on the wrapped request object. + * + * @since Servlet 3.0 */ @Override public void logout() throws ServletException { @@ -304,7 +322,13 @@ public class HttpServletRequestWrapper e } /** - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * {@inheritDoc} + * <p> + * The default behavior of this method is to return + * {@link HttpServletRequest#getParts()} + * on the wrapped request object. + * + * @since Servlet 3.0 */ @Override public Collection<Part> getParts() throws IllegalStateException, @@ -313,10 +337,13 @@ public class HttpServletRequestWrapper e } /** - * @throws ServletException - * @throws IOException - * @throws IllegalStateException - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * {@inheritDoc} + * <p> + * The default behavior of this method is to return + * {@link HttpServletRequest#getPart(String)} + * on the wrapped request object. + * + * @since Servlet 3.0 */ @Override public Part getPart(String name) throws IllegalStateException, IOException, --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org