mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
26.14.2006 f2bcf31dabb8f69261b0b829fc989e9ba5323ee6
opends/src/server/org/opends/server/extensions/TLSCapableConnection.java
@@ -29,6 +29,7 @@
import org.opends.server.core.DirectoryException;
import org.opends.server.core.Operation;
@@ -86,5 +87,22 @@
   */
  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;
}