Fix issues in Javadoc

This commit is contained in:
Sam Brannen
2020-10-27 11:05:31 +01:00
parent 5170f3f594
commit d1e6883d5d
5 changed files with 20 additions and 13 deletions

View File

@@ -67,7 +67,7 @@ public class ReactorNettyWebSocketClient implements WebSocketClient {
/**
* Constructor that accepts an existing {@link HttpClient} builder
* with a default {@link WebsocketClientSpec.Builder}.
* with a default {@link reactor.netty.http.client.WebsocketClientSpec.Builder}.
* @since 5.1
*/
public ReactorNettyWebSocketClient(HttpClient httpClient) {
@@ -76,7 +76,7 @@ public class ReactorNettyWebSocketClient implements WebSocketClient {
/**
* Constructor that accepts an existing {@link HttpClient} builder
* and a pre-configured {@link WebsocketClientSpec.Builder}.
* and a pre-configured {@link reactor.netty.http.client.WebsocketClientSpec.Builder}.
* @since 5.3
*/
public ReactorNettyWebSocketClient(
@@ -132,7 +132,8 @@ public class ReactorNettyWebSocketClient implements WebSocketClient {
* @param maxFramePayloadLength the max length for frames.
* @since 5.2
* @deprecated as of 5.3 in favor of providing a supplier of
* {@link WebsocketClientSpec.Builder} with a constructor argument.
* {@link reactor.netty.http.client.WebsocketClientSpec.Builder} with a
* constructor argument
*/
@Deprecated
public void setMaxFramePayloadLength(int maxFramePayloadLength) {
@@ -160,7 +161,8 @@ public class ReactorNettyWebSocketClient implements WebSocketClient {
* @param handlePing whether to let Ping frames through for handling
* @since 5.2.4
* @deprecated as of 5.3 in favor of providing a supplier of
* {@link WebsocketClientSpec.Builder} with a constructor argument.
* {@link reactor.netty.http.client.WebsocketClientSpec.Builder} with a
* constructor argument
*/
@Deprecated
public void setHandlePing(boolean handlePing) {

View File

@@ -53,7 +53,7 @@ public class ReactorNettyRequestUpgradeStrategy implements RequestUpgradeStrateg
/**
* Create an instances with a default {@link WebsocketServerSpec.Builder}.
* Create an instances with a default {@link reactor.netty.http.server.WebsocketServerSpec.Builder}.
* @since 5.2.6
*/
public ReactorNettyRequestUpgradeStrategy() {
@@ -62,7 +62,7 @@ public class ReactorNettyRequestUpgradeStrategy implements RequestUpgradeStrateg
/**
* Create an instance with a pre-configured {@link WebsocketServerSpec.Builder}
* Create an instance with a pre-configured {@link reactor.netty.http.server.WebsocketServerSpec.Builder}
* to use for WebSocket upgrades.
* @since 5.2.6
*/
@@ -108,7 +108,8 @@ public class ReactorNettyRequestUpgradeStrategy implements RequestUpgradeStrateg
* @param maxFramePayloadLength the max length for frames.
* @since 5.1
* @deprecated as of 5.2.6 in favor of providing a supplier of
* {@link WebsocketServerSpec.Builder} with a constructor argument.
* {@link reactor.netty.http.server.WebsocketServerSpec.Builder} with a
* constructor argument
*/
@Deprecated
public void setMaxFramePayloadLength(Integer maxFramePayloadLength) {
@@ -136,7 +137,8 @@ public class ReactorNettyRequestUpgradeStrategy implements RequestUpgradeStrateg
* @param handlePing whether to let Ping frames through for handling
* @since 5.2.4
* @deprecated as of 5.2.6 in favor of providing a supplier of
* {@link WebsocketServerSpec.Builder} with a constructor argument.
* {@link reactor.netty.http.server.WebsocketServerSpec.Builder} with a
* constructor argument
*/
@Deprecated
public void setHandlePing(boolean handlePing) {