GUACAMOLE-38: Update comments to match recent changes in return type of REST create method.

This commit is contained in:
Nick Couchman
2018-05-22 22:35:56 -04:00
parent b283adc73a
commit 6d0b6d6494

View File

@@ -56,14 +56,15 @@ public class QuickConnectREST {
/** /**
* Parse the URI read from the POST input, add the connection * Parse the URI read from the POST input, add the connection
* to the directory, and return the identifier of the newly-created * to the directory, and return a Map containing a single key,
* connection. * identifier, and the identifier of the new connection.
* *
* @param uri * @param uri
* The URI to parse into a connection. * The URI to parse into a connection.
* *
* @return * @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 * @throws GuacamoleException
* If an error is encountered parsing the URI. * If an error is encountered parsing the URI.