| | |
| | | |
| | | |
| | | import org.opends.server.core.DirectoryException; |
| | | import org.opends.server.core.Operation; |
| | | |
| | | |
| | | |
| | |
| | | */ |
| | | public void disableTLSConnectionSecurityProvider() |
| | | throws DirectoryException; |
| | | |
| | | |
| | | |
| | | /** |
| | | * Sends a response to the client in the clear rather than through the |
| | | * encrypted channel. This should only be used when processing the StartTLS |
| | | * extended operation to send the response in the clear after the SSL |
| | | * negotiation has already been initiated. |
| | | * |
| | | * @param operation The operation for which to send the response in the |
| | | * clear. |
| | | * |
| | | * @throws DirectoryException If a problem occurs while sending the response |
| | | * in the clear. |
| | | */ |
| | | public void sendClearResponse(Operation operation) |
| | | throws DirectoryException; |
| | | } |
| | | |