comparison src/org/eclipse/jetty/server/Request.java @ 1001:39154cfa58e4

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 22 Oct 2016 20:56:41 -0600
parents 32d4b569567c
children 6939226e0ac4
comparison
equal deleted inserted replaced
1000:32d4b569567c 1001:39154cfa58e4
153 private HttpURI _uri; 153 private HttpURI _uri;
154 154
155 public Request(AbstractHttpConnection connection) 155 public Request(AbstractHttpConnection connection)
156 { 156 {
157 _connection = connection; 157 _connection = connection;
158 _endp = connection.getEndPoint(); 158 _endp = connection._endp;
159 } 159 }
160 160
161 /* ------------------------------------------------------------ */ 161 /* ------------------------------------------------------------ */
162 /** 162 /**
163 * Extract Parameters from query string and/or form _content. 163 * Extract Parameters from query string and/or form _content.
901 901
902 /* ------------------------------------------------------------ */ 902 /* ------------------------------------------------------------ */
903 /* 903 /*
904 * Set a request attribute. if the attribute name is "org.eclipse.jetty.server.server.Request.queryEncoding" then the value is also passed in a call to 904 * Set a request attribute. if the attribute name is "org.eclipse.jetty.server.server.Request.queryEncoding" then the value is also passed in a call to
905 * {@link #setQueryEncoding}. <p> if the attribute name is "org.eclipse.jetty.server.server.ResponseBuffer", then the response buffer is flushed with @{link 905 * {@link #setQueryEncoding}. <p> if the attribute name is "org.eclipse.jetty.server.server.ResponseBuffer", then the response buffer is flushed with @{link
906 * #flushResponseBuffer} <p> if the attribute name is "org.eclipse.jetty.io.EndPoint.maxIdleTime", then the value is passed to the associated {@link 906 * #flushResponseBuffer}.
907 * EndPoint#setMaxIdleTime}.
908 * 907 *
909 * @see javax.servlet.ServletRequest#setAttribute(java.lang.String, java.lang.Object) 908 * @see javax.servlet.ServletRequest#setAttribute(java.lang.String, java.lang.Object)
910 */ 909 */
911 @Override 910 @Override
912 public void setAttribute(String name, Object value) 911 public void setAttribute(String name, Object value)