| | |
| | | // The monitor associated with this connection handler. |
| | | private ConnectionHandlerMonitor monitor; |
| | | |
| | | // Is this handler the admin connection handler |
| | | private boolean isAdminConnectionHandler = false; |
| | | |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | |
| | | /** |
| | | * Sets this connection handler as the admin connection handler. |
| | | */ |
| | | public void setAdminConnectionHandler() { |
| | | isAdminConnectionHandler = true; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Returns whether this connection handler is the admin |
| | | * connection handler. |
| | | * @return boolean True if this connection handler is the admin |
| | | * connection handler, false otherwise |
| | | */ |
| | | public boolean isAdminConnectionHandler() { |
| | | return isAdminConnectionHandler; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Retrieves a string representation of this connection handler. |
| | | * |
| | | * @return A string representation of this connection handler. |