Methods Summary |
---|
public void | addConnector(Connector connector)Add a new Connector to the set of defined Connectors, and associate it
with this Service's Container.
|
public Connector[] | findConnectors()Find and return the set of Connectors associated with this Service.
|
public Container | getContainer()Return the Container that handles requests for all
Connectors associated with this Service.
|
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(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 | 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).
|