org.eclipse.jetty.ajp
类 Ajp13Connection
java.lang.Object
org.eclipse.jetty.io.AbstractConnection
org.eclipse.jetty.server.AbstractHttpConnection
org.eclipse.jetty.server.BlockingHttpConnection
org.eclipse.jetty.ajp.Ajp13Connection
- 所有已实现的接口:
- Connection
public class Ajp13Connection
- extends BlockingHttpConnection
Connection implementation of the Ajp13 protocol.
XXX Refactor to remove
duplication of HttpConnection
| 从类 org.eclipse.jetty.server.AbstractHttpConnection 继承的字段 |
_connector, _generator, _in, _out, _parser, _printWriter, _request, _requestFields, _response, _responseFields, _server, _uri, _writer |
| 从类 org.eclipse.jetty.server.AbstractHttpConnection 继承的方法 |
commitResponse, completeResponse, content, earlyEOF, flushResponse, getAssociatedObject, getConnector, getCurrentConnection, getGenerator, getMaxIdleTime, getOutputStream, getParser, getPrintWriter, getRequest, getRequestFields, getRequests, getResolveNames, getResponse, getResponseFields, getServer, headerComplete, include, included, isEarlyEOF, isExpecting100Continues, isExpecting102Processing, isIdle, isIncluding, isResponseCommitted, isSuspended, messageComplete, newHttpGenerator, newHttpParser, onClose, parsedHeader, reset, setAssociatedObject, setCurrentConnection, startRequest, toString |
Ajp13Connection
public Ajp13Connection(Connector connector,
EndPoint endPoint,
Server server)
isConfidential
public boolean isConfidential(Request request)
- 从类
AbstractHttpConnection 复制的描述
- Find out if the request supports CONFIDENTIAL security.
- 覆盖:
- 类
AbstractHttpConnection 中的 isConfidential
- 参数:
request - the incoming HTTP request
- 返回:
- the result of calling
Connector.isConfidential(Request), or false
if there is no connector
isIntegral
public boolean isIntegral(Request request)
- 从类
AbstractHttpConnection 复制的描述
- Find out if the request supports INTEGRAL security.
- 覆盖:
- 类
AbstractHttpConnection 中的 isIntegral
- 参数:
request - the incoming HTTP request
- 返回:
- the result of calling
Connector.isIntegral(Request), or false
if there is no connector
getInputStream
public ServletInputStream getInputStream()
- 从类
AbstractHttpConnection 复制的描述
- Get the inputStream from the connection.
If the associated response has the Expect header set to 100 Continue,
then accessing the input stream indicates that the handler/servlet
is ready for the request body and thus a 100 Continue response is sent.
- 覆盖:
- 类
AbstractHttpConnection 中的 getInputStream
- 返回:
- The input stream for this connection.
The stream will be created if it does not already exist.
Copyright © 2013. All Rights Reserved.