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 继承的嵌套类/接口
AbstractHttpConnection.Output, AbstractHttpConnection.OutputWriter
 
字段摘要
 
从类 org.eclipse.jetty.server.AbstractHttpConnection 继承的字段
_connector, _generator, _in, _out, _parser, _printWriter, _request, _requestFields, _response, _responseFields, _server, _uri, _writer
 
从类 org.eclipse.jetty.io.AbstractConnection 继承的字段
_endp
 
构造方法摘要
Ajp13Connection(Connector connector, EndPoint endPoint, Server server)
           
 
方法摘要
 ServletInputStream getInputStream()
          Get the inputStream from the connection.
 boolean isConfidential(Request request)
          Find out if the request supports CONFIDENTIAL security.
 boolean isIntegral(Request request)
          Find out if the request supports INTEGRAL security.
 
从类 org.eclipse.jetty.server.BlockingHttpConnection 继承的方法
handle, handleRequest
 
从类 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
 
从类 org.eclipse.jetty.io.AbstractConnection 继承的方法
getEndPoint, getTimeStamp, onIdleExpired
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

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.