From 9349ce9f8590edca3b52fe71045ac04029b8b091 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Wed, 14 Sep 2022 00:02:50 -0500 Subject: [PATCH] Polish client auth config props javadocs (#115) --- .../pulsar/autoconfigure/PulsarProperties.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-pulsar-spring-boot-autoconfigure/src/main/java/org/springframework/pulsar/autoconfigure/PulsarProperties.java b/spring-pulsar-spring-boot-autoconfigure/src/main/java/org/springframework/pulsar/autoconfigure/PulsarProperties.java index 4aecd286..c6cd62fa 100644 --- a/spring-pulsar-spring-boot-autoconfigure/src/main/java/org/springframework/pulsar/autoconfigure/PulsarProperties.java +++ b/spring-pulsar-spring-boot-autoconfigure/src/main/java/org/springframework/pulsar/autoconfigure/PulsarProperties.java @@ -743,17 +743,17 @@ public class PulsarProperties { private String listenerName; /** - * Class name of the clients' authentication plugin. + * Fully qualified class name of the authentication plugin. */ private String authPluginClassName; /** - * Authentication parameter(s) of the client. + * Authentication parameter(s) as a JSON encoded string. */ private String authParams; /** - * Authentication parameter map of the client. + * Authentication parameter(s) as a map of parameter names to parameter values. */ private Map authentication; @@ -1349,17 +1349,17 @@ public class PulsarProperties { private String serviceUrl; /** - * Class name of the clients' authentication plugin. + * Fully qualified class name of the authentication plugin. */ private String authPluginClassName; /** - * Authentication parameter(s) of the client. + * Authentication parameter(s) as a JSON encoded string. */ private String authParams; /** - * Authentication parameter map of the client. + * Authentication parameter(s) as a map of parameter names to parameter values. */ private Map authentication;