From 354e3180dbcc3edea3bb80ce0d3e8c5cf4baf81c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 5 Jan 2015 16:42:59 -0800 Subject: [PATCH] GUAC-971: Clarify documentation surrounding the credentials associated with a Guacamole session. --- .../glyptodon/guacamole/net/basic/GuacamoleSession.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/GuacamoleSession.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/GuacamoleSession.java index 0455b8436..563203fd7 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/GuacamoleSession.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/GuacamoleSession.java @@ -51,7 +51,7 @@ public class GuacamoleSession { private static final Logger logger = LoggerFactory.getLogger(GuacamoleSession.class); /** - * The credentials provided when the user logged in. + * The credentials provided when the user authenticated. */ private Credentials credentials; @@ -139,10 +139,11 @@ public class GuacamoleSession { /** * Returns the credentials used when the user associated with this session - * logged in. + * authenticated. * - * @return The credentials used when the user associated with this session - * logged in. + * @return + * The credentials used when the user associated with this session + * authenticated. */ public Credentials getCredentials() { return credentials;