From 78b811c59fb9c7a9ef54ff719390face62a0e056 Mon Sep 17 00:00:00 2001 From: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> Date: Wed, 22 May 2024 16:29:47 +0100 Subject: [PATCH] Update auth store comment Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> --- .../auth/couchdb/internal/CouchdbAuthStore.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/galasa-extensions-parent/dev.galasa.auth.couchdb/src/main/java/dev/galasa/auth/couchdb/internal/CouchdbAuthStore.java b/galasa-extensions-parent/dev.galasa.auth.couchdb/src/main/java/dev/galasa/auth/couchdb/internal/CouchdbAuthStore.java index 00ee2c27..add0a0d4 100644 --- a/galasa-extensions-parent/dev.galasa.auth.couchdb/src/main/java/dev/galasa/auth/couchdb/internal/CouchdbAuthStore.java +++ b/galasa-extensions-parent/dev.galasa.auth.couchdb/src/main/java/dev/galasa/auth/couchdb/internal/CouchdbAuthStore.java @@ -28,13 +28,13 @@ import dev.galasa.framework.spi.auth.AuthStoreException; /** - * When CouchDB is being used to store user-related information, including authentication - * tokens, this class is called upon to implement the auth store. This class registers the - * auth store as the only auth store in the framework, and is only used when Galasa is - * running in an ecosystem. - * - * This implementation of the auth store interface gets all of its data from a CouchDB - * server. + * When CouchDB is being used to store user-related information, including information + * about authentication tokens (but not the tokens themselves), this class is called + * upon to implement the auth store. + * + * This class registers the auth store as the only auth store in the framework, and is + * only used when Galasa is running in an ecosystem. It gets all of its data from a + * CouchDB server. */ public class CouchdbAuthStore extends CouchdbStore implements IAuthStore {