diff src/org/eclipse/jetty/continuation/Continuation.java @ 936:237ace6e8bc2

simplify AsyncContinuation
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 09 Oct 2016 21:35:26 -0600
parents aa7dc1802d29
children
line wrap: on
line diff
--- a/src/org/eclipse/jetty/continuation/Continuation.java	Sun Oct 09 21:15:24 2016 -0600
+++ b/src/org/eclipse/jetty/continuation/Continuation.java	Sun Oct 09 21:35:26 2016 -0600
@@ -360,7 +360,7 @@
 	 * Get the suspended response.
 	 * @return the {@link ServletResponse} passed to {@link #suspend(ServletResponse)}.
 	 */
-	ServletResponse getServletResponse();
+//	ServletResponse getServletResponse();
 	
 	/* ------------------------------------------------------------ */
 	/** 
@@ -378,7 +378,7 @@
 	 * @param name the attribute name
 	 * @param attribute the attribute value
 	 */
-	public void setAttribute(String name, Object attribute);
+//	public void setAttribute(String name, Object attribute);
 	
 	/* ------------------------------------------------------------ */
 	/** Get a request attribute.
@@ -388,7 +388,7 @@
 	 * @param name the attribute name
 	 * @return the attribute value
 	 */
-	public Object getAttribute(String name);
+//	public Object getAttribute(String name);
 	
 	/* ------------------------------------------------------------ */
 	/** Remove a request attribute.
@@ -397,7 +397,7 @@
 	 * This is a thread safe call and may be called by any thread.
 	 * @param name the attribute name
 	 */
-	public void removeAttribute(String name);
+//	public void removeAttribute(String name);
 	
 	/* ------------------------------------------------------------ */
 	/**