S
- The type of socket used by the implementationpublic abstract class AbstractAjpProtocol<S> extends AbstractProtocol<S>
ProtocolHandler
. All of the implementations that ship with
Tomcat are implemented this way.AbstractProtocol.AsyncTimeout, AbstractProtocol.ConnectionHandler<S>, AbstractProtocol.RecycledProcessors
Modifier and Type | Field and Description |
---|---|
protected static StringManager |
sm
The string manager for this package.
|
adapter, domain, mserver, oname, processorCache, rgOname
Constructor and Description |
---|
AbstractAjpProtocol(AbstractEndpoint<S,?> endpoint) |
Modifier and Type | Method and Description |
---|---|
void |
addSslHostConfig(SSLHostConfig sslHostConfig) |
void |
addUpgradeProtocol(UpgradeProtocol upgradeProtocol) |
protected Processor |
createProcessor()
Create and configure a new Processor instance for the current protocol
implementation.
|
protected Processor |
createUpgradeProcessor(SocketWrapperBase<?> socket,
UpgradeToken upgradeToken) |
SSLHostConfig[] |
findSslHostConfigs() |
UpgradeProtocol[] |
findUpgradeProtocols() |
boolean |
getAjpFlush() |
protected AbstractEndpoint<S,?> |
getEndpoint()
Overridden to make getter accessible to other classes in this package.
|
protected UpgradeProtocol |
getNegotiatedProtocol(java.lang.String name)
Find a suitable handler for the protocol negotiated
at the network layer.
|
int |
getPacketSize() |
protected java.lang.String |
getProtocolName()
Obtain the name of the protocol, (Http, Ajp, etc.).
|
protected java.lang.String |
getRequiredSecret() |
boolean |
getTomcatAuthentication()
Should authentication be done in the native web server layer,
or in the Servlet container ?
|
boolean |
getTomcatAuthorization()
Should authentication be done in the native web server layer and
authorization in the Servlet container?
|
protected UpgradeProtocol |
getUpgradeProtocol(java.lang.String name)
Find a suitable handler for the protocol upgraded name specified.
|
void |
setAjpFlush(boolean ajpFlush)
Configure whether to aend an AJP flush packet when flushing.
|
void |
setPacketSize(int packetSize) |
void |
setRequiredSecret(java.lang.String requiredSecret)
Set the required secret that must be included with every request.
|
void |
setTomcatAuthentication(boolean tomcatAuthentication) |
void |
setTomcatAuthorization(boolean tomcatAuthorization) |
addWaitingProcessor, destroy, getAcceptCount, getAcceptorThreadCount, getAcceptorThreadPriority, getAdapter, getAddress, getAsyncTimeout, getClientCertProvider, getConnectionCount, getConnectionLinger, getConnectionTimeout, getDomain, getExecutor, getHandler, getKeepAliveTimeout, getLocalPort, getLog, getMaxConnections, getMaxHeaderCount, getMaxThreads, getMinSpareThreads, getName, getNameIndex, getNamePrefix, getObjectName, getPort, getProcessorCache, getProperty, getTcpNoDelay, getThreadPriority, init, isAprRequired, isPaused, isSendfileSupported, pause, postDeregister, postRegister, preDeregister, preRegister, removeWaitingProcessor, resume, setAcceptCount, setAcceptorThreadCount, setAcceptorThreadPriority, setAdapter, setAddress, setClientCertProvider, setConnectionLinger, setConnectionTimeout, setExecutor, setHandler, setKeepAliveTimeout, setMaxConnections, setMaxHeaderCount, setMaxThreads, setMinSpareThreads, setPort, setProcessorCache, setProperty, setTcpNoDelay, setThreadPriority, start, stop
protected static final StringManager sm
public AbstractAjpProtocol(AbstractEndpoint<S,?> endpoint)
protected java.lang.String getProtocolName()
AbstractProtocol
getProtocolName
in class AbstractProtocol<S>
protected AbstractEndpoint<S,?> getEndpoint()
getEndpoint
in class AbstractProtocol<S>
protected UpgradeProtocol getNegotiatedProtocol(java.lang.String name)
getNegotiatedProtocol
in class AbstractProtocol<S>
name
- The name of the requested negotiated protocol.UpgradeProtocol.getAlpnName()
matches
the requested protocolprotected UpgradeProtocol getUpgradeProtocol(java.lang.String name)
getUpgradeProtocol
in class AbstractProtocol<S>
name
- The name of the requested negotiated protocol.UpgradeProtocol.getAlpnName()
matches
the requested protocolpublic boolean getAjpFlush()
public void setAjpFlush(boolean ajpFlush)
ajpFlush
- The new flush settingpublic boolean getTomcatAuthentication()
true
if authentication should be performed by Tomcat,
otherwise false
public void setTomcatAuthentication(boolean tomcatAuthentication)
public boolean getTomcatAuthorization()
true
if authorization should be performed by Tomcat,
otherwise false
public void setTomcatAuthorization(boolean tomcatAuthorization)
public void setRequiredSecret(java.lang.String requiredSecret)
requiredSecret
- The required secretprotected java.lang.String getRequiredSecret()
public int getPacketSize()
public void setPacketSize(int packetSize)
public void addSslHostConfig(SSLHostConfig sslHostConfig)
public SSLHostConfig[] findSslHostConfigs()
public void addUpgradeProtocol(UpgradeProtocol upgradeProtocol)
public UpgradeProtocol[] findUpgradeProtocols()
protected Processor createProcessor()
AbstractProtocol
createProcessor
in class AbstractProtocol<S>
protected Processor createUpgradeProcessor(SocketWrapperBase<?> socket, UpgradeToken upgradeToken)
createUpgradeProcessor
in class AbstractProtocol<S>
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.