diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connection/ConnectionService.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connection/ConnectionService.java index daa5c3012..2a669f5ee 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connection/ConnectionService.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connection/ConnectionService.java @@ -32,10 +32,10 @@ import org.glyptodon.guacamole.net.auth.Directory; public class ConnectionService { /** - * Converts a list of Connection to a list of APIConnection objects for + * Converts a Connection Directory to a list of APIConnection objects for * exposing with the REST endpoints. * - * @param connections The Connection to convert for REST endpoint use. + * @param connectionDirectory The Connection Directory to convert for REST endpoint use. * @return A List of APIConnection objects for use with the REST endpoint. * @throws GuacamoleException If an error occurs while converting the * connection directory. diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connectiongroup/ConnectionGroupService.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connectiongroup/ConnectionGroupService.java index 53ab042a4..1da2fa507 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connectiongroup/ConnectionGroupService.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/connectiongroup/ConnectionGroupService.java @@ -32,10 +32,10 @@ import org.glyptodon.guacamole.net.auth.Directory; public class ConnectionGroupService { /** - * Converts a list of ConnectionGroup to a list of APIConnectionGroup + * Converts a ConnectionGroup directory to a list of APIConnectionGroup * objects for exposing with the REST endpoints. * - * @param connectionGroups The ConnectionGroup to convert for REST endpoint use. + * @param connectionGroupDirectory The ConnectionGroup Directory to convert for REST endpoint use. * @return A List of APIConnectionGroup objects for use with the REST endpoint. * @throws GuacamoleException If an error occurs while converting the * connection group directory.