Removed the Javadoc links to the deprecated methods

This commit is contained in:
Trustin Lee 2009-12-17 08:46:18 +00:00
parent 578def7a9b
commit d6facc0b9e

View File

@ -61,19 +61,19 @@ import org.jboss.netty.util.internal.ImmediateExecutor;
* <h3>Beginning the handshake</h3> * <h3>Beginning the handshake</h3>
* <p> * <p>
* You must make sure not to write a message while the * You must make sure not to write a message while the
* {@linkplain #handshake(Channel) handshake} is in progress unless you are * {@linkplain #handshake() handshake} is in progress unless you are
* renegotiating. You will be notified by the {@link ChannelFuture} which is * renegotiating. You will be notified by the {@link ChannelFuture} which is
* returned by the {@link #handshake(Channel)} method when the handshake * returned by the {@link #handshake()} method when the handshake
* process succeeds or fails. * process succeeds or fails.
* *
* <h3>Renegotiation</h3> * <h3>Renegotiation</h3>
* <p> * <p>
* Once the initial handshake is done successfully. You can always call * Once the initial handshake is done successfully. You can always call
* {@link #handshake(Channel)} again to renegotiate the SSL session parameters. * {@link #handshake()} again to renegotiate the SSL session parameters.
* *
* <h3>Closing the session</h3> * <h3>Closing the session</h3>
* <p> * <p>
* To close the SSL session, the {@link #close(Channel)} method should be * To close the SSL session, the {@link #close()} method should be
* called to send the {@code close_notify} message to the remote peer. One * called to send the {@code close_notify} message to the remote peer. One
* exception is when you close the {@link Channel} - {@link SslHandler} * exception is when you close the {@link Channel} - {@link SslHandler}
* intercepts the close request and send the {@code close_notify} message * intercepts the close request and send the {@code close_notify} message
@ -120,7 +120,7 @@ import org.jboss.netty.util.internal.ImmediateExecutor;
* <li>create a new {@link SslHandler} instance with {@code startTls} flag set * <li>create a new {@link SslHandler} instance with {@code startTls} flag set
* to {@code false},</li> * to {@code false},</li>
* <li>insert the {@link SslHandler} to the {@link ChannelPipeline}, and</li> * <li>insert the {@link SslHandler} to the {@link ChannelPipeline}, and</li>
* <li>Initiate SSL handshake by calling {@link SslHandler#handshake(Channel)}.</li> * <li>Initiate SSL handshake by calling {@link SslHandler#handshake()}.</li>
* </ol> * </ol>
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)