Interface EnhancedAuthInput
-
- All Superinterfaces:
ClientBasedInput
@DoNotImplement public interface EnhancedAuthInput extends ClientBasedInput
Input parameter provided to the methods of anEnhancedAuthenticator.Provides an unmodifiable
AuthPacketandClientBasedInput.- Since:
- 4.3.0, CE 2020.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Immutable @NotNull AuthPacketgetAuthPacket()Provides the unmodifiable AUTH packet sent by the MQTT client that has to be authenticated.booleanisReAuthentication()-
Methods inherited from interface com.hivemq.extension.sdk.api.parameter.ClientBasedInput
getClientInformation, getConnectionInformation
-
-
-
-
Method Detail
-
getAuthPacket
@Immutable @NotNull @Immutable @NotNull AuthPacket getAuthPacket()
Provides the unmodifiable AUTH packet sent by the MQTT client that has to be authenticated.- Returns:
- The
AuthPacketsent by the client. - Since:
- 4.3.0, CE 2020.1
-
isReAuthentication
boolean isReAuthentication()
- Returns:
trueif this is an input of a re-authentication, elsefalse.- Since:
- 4.3.0, CE 2020.1
-
-