Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Request.java @ 937:0541b6034003
remove Continuation
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 09 Oct 2016 21:41:28 -0600 |
parents | aa7dc1802d29 |
children | a088981f9cd4 |
comparison
equal
deleted
inserted
replaced
936:237ace6e8bc2 | 937:0541b6034003 |
---|---|
60 import javax.servlet.http.HttpServletRequest; | 60 import javax.servlet.http.HttpServletRequest; |
61 import javax.servlet.http.HttpServletResponse; | 61 import javax.servlet.http.HttpServletResponse; |
62 import javax.servlet.http.HttpSession; | 62 import javax.servlet.http.HttpSession; |
63 import javax.servlet.http.Part; | 63 import javax.servlet.http.Part; |
64 | 64 |
65 import org.eclipse.jetty.continuation.Continuation; | |
66 import org.eclipse.jetty.http.HttpCookie; | 65 import org.eclipse.jetty.http.HttpCookie; |
67 import org.eclipse.jetty.http.HttpFields; | 66 import org.eclipse.jetty.http.HttpFields; |
68 import org.eclipse.jetty.http.HttpHeaders; | 67 import org.eclipse.jetty.http.HttpHeaders; |
69 import org.eclipse.jetty.http.HttpMethods; | 68 import org.eclipse.jetty.http.HttpMethods; |
70 import org.eclipse.jetty.http.HttpParser; | 69 import org.eclipse.jetty.http.HttpParser; |
384 { | 383 { |
385 if ("org.eclipse.jetty.io.EndPoint.maxIdleTime".equalsIgnoreCase(name)) | 384 if ("org.eclipse.jetty.io.EndPoint.maxIdleTime".equalsIgnoreCase(name)) |
386 return new Long(getConnection().getEndPoint().getMaxIdleTime()); | 385 return new Long(getConnection().getEndPoint().getMaxIdleTime()); |
387 | 386 |
388 Object attr = (_attributes == null)?null:_attributes.getAttribute(name); | 387 Object attr = (_attributes == null)?null:_attributes.getAttribute(name); |
389 if (attr == null && Continuation.ATTRIBUTE.equals(name)) | |
390 return _async; | |
391 return attr; | 388 return attr; |
392 } | 389 } |
393 | 390 |
394 /* ------------------------------------------------------------ */ | 391 /* ------------------------------------------------------------ */ |
395 /* | 392 /* |