Methods Summary |
---|
public void | addConnector(org.apache.catalina.connector.Connector connector)Add a new Connector to the set of defined Connectors, and associate it
with this Service's Container.
|
public void | addExecutor(Executor ex)Adds a named executor to the service
|
public org.apache.catalina.connector.Connector[] | findConnectors()Find and return the set of Connectors associated with this Service.
|
public Executor[] | findExecutors()Retrieves all executors
|
public Container | getContainer()Return the Container that handles requests for all
Connectors associated with this Service.
|
public Executor | getExecutor(java.lang.String name)Retrieves executor by name, null if not found
|
public java.lang.String | getInfo()Return descriptive information about this Service implementation and
the corresponding version number, in the format
<description>/<version> .
|
public java.lang.String | getName()Return the name of this Service.
|
public Server | getServer()Return the Server with which we are associated (if any).
|
public void | initialize()Invoke a pre-startup initialization. This is used to allow connectors
to bind to restricted ports under Unix operating environments.
|
public void | removeConnector(org.apache.catalina.connector.Connector connector)Remove the specified Connector from the set associated from this
Service. The removed Connector will also be disassociated from our
Container.
|
public void | removeExecutor(Executor ex)Removes an executor from the service
|
public void | setContainer(Container container)Set the Container that handles requests for all
Connectors associated with this Service.
|
public void | setName(java.lang.String name)Set the name of this Service.
|
public void | setServer(Server server)Set the Server with which we are associated (if any).
|