GUACAMOLE-220: Use JavaDoc "{@link Map}" to point to Map interface.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/83033cad
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/83033cad
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/83033cad

Branch: refs/heads/master
Commit: 83033cad6501008e64dca6457397f603b38797db
Parents: 2d6ba84
Author: Michael Jumper <mjum...@apache.org>
Authored: Thu Nov 8 19:45:25 2018 -0800
Committer: Michael Jumper <mjum...@apache.org>
Committed: Thu Nov 8 19:45:25 2018 -0800

----------------------------------------------------------------------
 .../guacamole/auth/ldap/ObjectQueryService.java       | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/83033cad/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java
----------------------------------------------------------------------
diff --git 
a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java
 
b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java
index 89a43c3..94550a2 100644
--- 
a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java
+++ 
b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java
@@ -43,7 +43,7 @@ import org.slf4j.LoggerFactory;
  * Guacamole-related objects. Referrals are automatically handled. Convenience
  * functions are provided for generating the LDAP queries typically required
  * for retrieving Guacamole objects, as well as for converting the results of a
- * query into a Map of Guacamole objects.
+ * query into a {@link Map} of Guacamole objects.
  */
 public class ObjectQueryService {
 
@@ -277,11 +277,11 @@ public class ObjectQueryService {
     }
 
     /**
-     * Converts a given list of LDAP entries to a map of Guacamole objects
-     * stored by their identifiers.
+     * Converts a given list of LDAP entries to a {@link Map} of Guacamole
+     * objects stored by their identifiers.
      *
      * @param <ObjectType>
-     *     The type of object to store within the map.
+     *     The type of object to store within the {@link Map}.
      *
      * @param entries
      *     A list of LDAP entries to convert to Guacamole objects.
@@ -292,9 +292,9 @@ public class ObjectQueryService {
      *     converted, null should be returned.
      *
      * @return
-     *     A new map containing Guacamole object versions of each of the given
-     *     LDAP entries, where each object is stored within the map under its
-     *     corresponding identifier.
+     *     A new {@link Map} containing Guacamole object versions of each of
+     *     the given LDAP entries, where each object is stored within the
+     *     {@link Map} under its corresponding identifier.
      */
     public <ObjectType extends Identifiable> Map<String, ObjectType>
         asMap(List<LDAPEntry> entries, Function<LDAPEntry, ObjectType> mapper) 
{

Reply via email to