void | addLifecycleListener(LifecycleListener listener) - Add a lifecycle event listener to this component.
|
Request | createRequest() - Create (or allocate) and return a Request object suitable for
specifying the contents of a Request to the responsible Container.
|
Response | createResponse() - Create (or allocate) and return a Response object suitable for
receiving the contents of a Response from the responsible Container.
|
LifecycleListener[] | findLifecycleListeners() - Get the lifecycle listeners associated with this lifecycle.
|
int | getAcceptCount() - Return the accept count for this Connector.
|
String | getAddress() - Return the bind IP address for this Connector.
|
int | getBufferSize() - Return the input buffer size for this Connector.
|
int | getConnectionLinger() - Return the connection linger settings for this Connector.
|
int | getConnectionTimeout() - Return the connection timeout for this Connector.
|
Container | getContainer() - Return the Container used for processing requests received by this
Connector.
|
int | getCurProcessors() - Return the current number of processors that have been created.
|
int | getDebug() - Return the debugging detail level for this component.
|
boolean | getEnableLookups() - Return the "enable DNS lookups" flag.
|
ServerSocketFactory | getFactory() - Return the server socket factory used by this Container.
|
String | getInfo() - Return descriptive information about this Connector implementation.
|
int | getMaxProcessors() - Return the maximum number of processors allowed, or <0 for unlimited.
|
int | getMinProcessors() - Return the minimum number of processors to start at initialization.
|
int | getPort() - Return the port number on which we listen for AJP13 requests.
|
int | getRedirectPort() - Return the port number to which a request should be redirected if
it comes in on a non-SSL port and is subject to a security constraint
with a transport guarantee that requires SSL.
|
String | getScheme() - Return the scheme that will be assigned to requests received
through this connector.
|
String | getSecret()
|
boolean | getSecure() - Return the secure connection flag that will be assigned to requests
received through this connector.
|
Service | getService() - Returns the
Service with which we are associated.
|
boolean | getTomcatAuthentication() - Get the value of the tomcatAuthentication flag.
|
void | initialize() - Invoke a pre-startup initialization.
|
boolean | isAvailable() - Is this connector available for processing requests?
|
void | removeLifecycleListener(LifecycleListener listener) - Remove a lifecycle event listener from this component.
|
void | run() - The background thread that listens for incoming TCP/IP connections and
hands them off to an appropriate processor.
|
void | setAcceptCount(int count) - Set the accept count for this Connector.
|
void | setAddress(String address) - Set the bind IP address for this Connector.
|
void | setBufferSize(int bufferSize) - Set the input buffer size for this Connector.
|
void | setConnectionLinger(int connectionLinger) - Set the connection linger for this Connector.
|
void | setConnectionTimeout(int connectionTimeout) - Set the connection timeout for this Connector.
|
void | setContainer(Container container) - Set the Container used for processing requests received by this
Connector.
|
void | setDebug(int debug) - Set the debugging detail level for this component.
|
void | setEnableLookups(boolean enableLookups) - Set the "enable DNS lookups" flag.
|
void | setFactory(ServerSocketFactory factory) - Set the server socket factory used by this Container.
|
void | setMaxProcessors(int maxProcessors) - Set the maximum number of processors allowed, or <0 for unlimited.
|
void | setMinProcessors(int minProcessors) - Set the minimum number of processors to start at initialization.
|
void | setPort(int port) - Set the port number on which we listen for AJP13 requests.
|
void | setRedirectPort(int redirectPort) - Set the redirect port number.
|
void | setScheme(String scheme) - Set the scheme that will be assigned to requests received through
this connector.
|
void | setSecret(String s)
|
void | setSecure(boolean secure) - Set the secure connection flag that will be assigned to requests
received through this connector.
|
void | setService(Service service) - Set the
Service with which we are associated.
|
void | setTomcatAuthentication(boolean tomcatAuthentication) - Set the value of the tomcatAuthentication flag.
|
void | start() - Begin processing requests via this Connector.
|
void | stop() - Terminate processing requests via this Connector.
|