From 6d0b6d649462c59de67257091cadb1485c8aeb92 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Tue, 22 May 2018 22:35:56 -0400 Subject: [PATCH] GUACAMOLE-38: Update comments to match recent changes in return type of REST create method. --- .../guacamole/auth/quickconnect/rest/QuickConnectREST.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/extensions/guacamole-auth-quickconnect/src/main/java/org/apache/guacamole/auth/quickconnect/rest/QuickConnectREST.java b/extensions/guacamole-auth-quickconnect/src/main/java/org/apache/guacamole/auth/quickconnect/rest/QuickConnectREST.java index 275e1a423..4cced071c 100644 --- a/extensions/guacamole-auth-quickconnect/src/main/java/org/apache/guacamole/auth/quickconnect/rest/QuickConnectREST.java +++ b/extensions/guacamole-auth-quickconnect/src/main/java/org/apache/guacamole/auth/quickconnect/rest/QuickConnectREST.java @@ -56,14 +56,15 @@ public class QuickConnectREST { /** * Parse the URI read from the POST input, add the connection - * to the directory, and return the identifier of the newly-created - * connection. + * to the directory, and return a Map containing a single key, + * identifier, and the identifier of the new connection. * * @param uri * The URI to parse into a connection. * * @return - * The identifier of the connection in the directory. + * A Map containing a single key, identifier, and the + * identifier of the new connection. * * @throws GuacamoleException * If an error is encountered parsing the URI.