fixed from sync with jetty-8

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@573 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2009-07-21 22:44:06 +00:00
parent 70c1eee2ce
commit 8169829ce2
2 changed files with 10 additions and 1 deletions

View File

@ -75,6 +75,7 @@ public class ContinuationFilter implements Filter
{
try
{
fc.setServletResponse(response);
chain.doFilter(request,response);
}
catch (ContinuationThrowable e)

View File

@ -249,7 +249,15 @@ class FauxContinuation implements Continuation
throw new IllegalStateException(this.getStatusString());
}
}
}
/* ------------------------------------------------------------ */
/**
* @see org.eclipse.jetty.continuation.Continuation#getServletResponse()
*/
void setServletResponse(ServletResponse response)
{
_response=response;
}
/* ------------------------------------------------------------ */