Uses of Interface
org.apache.pulsar.client.api.Authentication
-
Packages that use Authentication Package Description org.apache.pulsar.client.api Pulsar Client API.org.apache.pulsar.client.internal Helpers which provide useful functionality for the implementation of Pulsar Client API. -
-
Uses of Authentication in org.apache.pulsar.client.api
Methods in org.apache.pulsar.client.api that return Authentication Modifier and Type Method Description static AuthenticationAuthenticationFactory. create(java.lang.String authPluginClassName, java.lang.String authParamsString)Create an instance of theAuthenticationobject by using the plugin class name.static AuthenticationAuthenticationFactory. create(java.lang.String authPluginClassName, java.util.Map<java.lang.String,java.lang.String> authParams)Create an instance of the Authentication-Plugin.static AuthenticationAuthenticationFactory. TLS(java.lang.String certFilePath, java.lang.String keyFilePath)Create an authentication provider for TLS based authentication.static AuthenticationAuthenticationFactory. token(java.lang.String token)Create an authentication provider for token based authentication.static AuthenticationAuthenticationFactory. token(java.util.function.Supplier<java.lang.String> tokenSupplier)Create an authentication provider for token based authentication.Methods in org.apache.pulsar.client.api with parameters of type Authentication Modifier and Type Method Description ClientBuilderClientBuilder. authentication(Authentication authentication)Set the authentication provider to use in the Pulsar client instance.Method parameters in org.apache.pulsar.client.api with type arguments of type Authentication Modifier and Type Method Description AutoClusterFailoverBuilderAutoClusterFailoverBuilder. secondaryAuthentication(java.util.Map<java.lang.String,Authentication> authentication)Set secondary authentication. -
Uses of Authentication in org.apache.pulsar.client.internal
Methods in org.apache.pulsar.client.internal that return Authentication Modifier and Type Method Description AuthenticationPulsarClientImplementationBinding. createAuthentication(java.lang.String authPluginClassName, java.lang.String authParamsString)AuthenticationPulsarClientImplementationBinding. createAuthentication(java.lang.String authPluginClassName, java.util.Map<java.lang.String,java.lang.String> authParams)AuthenticationPulsarClientImplementationBinding. newAuthenticationTLS(java.lang.String certFilePath, java.lang.String keyFilePath)AuthenticationPulsarClientImplementationBinding. newAuthenticationToken(java.lang.String token)AuthenticationPulsarClientImplementationBinding. newAuthenticationToken(java.util.function.Supplier<java.lang.String> supplier)
-