File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/main/java/com/hivemq/client/mqtt Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ public interface Mqtt3ClientBuilder extends MqttClientBuilderBase<Mqtt3ClientBui
4242 * @param simpleAuth the simple auth related data or <code>null</code> to remove any previously set simple auth
4343 * related data.
4444 * @return the builder.
45+ * @since 1.1
4546 */
4647 @ NotNull Mqtt3ClientBuilder simpleAuth (@ Nullable Mqtt3SimpleAuth simpleAuth );
4748
@@ -54,6 +55,7 @@ public interface Mqtt3ClientBuilder extends MqttClientBuilderBase<Mqtt3ClientBui
5455 *
5556 * @return the fluent builder for the simple auth related data.
5657 * @see #simpleAuth(Mqtt3SimpleAuth)
58+ * @since 1.1
5759 */
5860 @ NotNull Mqtt3SimpleAuthBuilder .Nested <? extends Mqtt3ClientBuilder > simpleAuth ();
5961
@@ -62,6 +64,7 @@ public interface Mqtt3ClientBuilder extends MqttClientBuilderBase<Mqtt3ClientBui
6264 *
6365 * @param willPublish the Will Publish or <code>null</code> to remove any previously set Will Publish.
6466 * @return the builder.
67+ * @since 1.1
6568 */
6669 @ NotNull Mqtt3ClientBuilder willPublish (@ Nullable Mqtt3Publish willPublish );
6770
@@ -74,6 +77,7 @@ public interface Mqtt3ClientBuilder extends MqttClientBuilderBase<Mqtt3ClientBui
7477 *
7578 * @return the fluent builder for the Will Publish.
7679 * @see #willPublish(Mqtt3Publish)
80+ * @since 1.1
7781 */
7882 @ NotNull Mqtt3WillPublishBuilder .Nested <? extends Mqtt3ClientBuilder > willPublish ();
7983
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ public interface Mqtt5ClientBuilder extends MqttClientBuilderBase<Mqtt5ClientBui
6464 * @param simpleAuth the simple auth related data or <code>null</code> to remove any previously set simple auth
6565 * related data.
6666 * @return the builder.
67+ * @since 1.1
6768 */
6869 @ NotNull Mqtt5ClientBuilder simpleAuth (@ Nullable Mqtt5SimpleAuth simpleAuth );
6970
@@ -76,6 +77,7 @@ public interface Mqtt5ClientBuilder extends MqttClientBuilderBase<Mqtt5ClientBui
7677 *
7778 * @return the fluent builder for the simple auth related data.
7879 * @see #simpleAuth(Mqtt5SimpleAuth)
80+ * @since 1.1
7981 */
8082 @ NotNull Mqtt5SimpleAuthBuilder .Nested <? extends Mqtt5ClientBuilder > simpleAuth ();
8183
@@ -86,6 +88,7 @@ public interface Mqtt5ClientBuilder extends MqttClientBuilderBase<Mqtt5ClientBui
8688 * @param enhancedAuthMechanism the enhanced auth mechanism or <code>null</code> to remove any previously set
8789 * enhanced auth mechanism.
8890 * @return the builder.
91+ * @since 1.1
8992 */
9093 @ NotNull Mqtt5ClientBuilder enhancedAuth (@ Nullable Mqtt5EnhancedAuthMechanism enhancedAuthMechanism );
9194
@@ -94,6 +97,7 @@ public interface Mqtt5ClientBuilder extends MqttClientBuilderBase<Mqtt5ClientBui
9497 *
9598 * @param willPublish the Will Publish or <code>null</code> to remove any previously set Will Publish.
9699 * @return the builder.
100+ * @since 1.1
97101 */
98102 @ NotNull Mqtt5ClientBuilder willPublish (@ Nullable Mqtt5Publish willPublish );
99103
@@ -106,6 +110,7 @@ public interface Mqtt5ClientBuilder extends MqttClientBuilderBase<Mqtt5ClientBui
106110 *
107111 * @return the fluent builder for the Will Publish.
108112 * @see #willPublish(Mqtt5Publish)
113+ * @since 1.1
109114 */
110115 @ NotNull Mqtt5WillPublishBuilder .Nested <? extends Mqtt5ClientBuilder > willPublish ();
111116
You can’t perform that action at this time.
0 commit comments