Commit e60e9918 authored by Alinga Yeung's avatar Alinga Yeung
Browse files

Story 1965. Fixed some javadoc warnings.

parent 4d18a618
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -227,7 +227,7 @@ public class ACIdentityManager implements IdentityManager
    /**
    /**
     * The returned CheckResource is the same as the one from AuthenticatorImpl.
     * The returned CheckResource is the same as the one from AuthenticatorImpl.
     *
     *
     * @return
     * @return the CheckResource
     */
     */
    public static CheckResource getAvailabilityCheck()
    public static CheckResource getAvailabilityCheck()
    {
    {
+0 −1
Original line number Original line Diff line number Diff line
@@ -158,7 +158,6 @@ public interface GroupPersistence
    /**
    /**
     * Obtain a Collection of Groups that fit the given query.
     * Obtain a Collection of Groups that fit the given query.
     *
     *
     * @param userID The userID.
     * @param role Role of the user, either owner, member, or read/write.
     * @param role Role of the user, either owner, member, or read/write.
     * @param groupID The Group ID.
     * @param groupID The Group ID.
     *
     *
+2 −3
Original line number Original line Diff line number Diff line
@@ -161,7 +161,6 @@ public class LdapGroupDAO extends LdapDAO
     * Persists a group.
     * Persists a group.
     *
     *
     * @param group The group to create
     * @param group The group to create
     * @return created group
     * @throws GroupAlreadyExistsException If a group with the same ID already
     * @throws GroupAlreadyExistsException If a group with the same ID already
     *                                     exists.
     *                                     exists.
     * @throws TransientException          If an temporary, unexpected problem occurred.
     * @throws TransientException          If an temporary, unexpected problem occurred.
@@ -791,7 +790,7 @@ public class LdapGroupDAO extends LdapDAO


    /**
    /**
     * @param groupID
     * @param groupID
     * @return
     * @return the Distinguished Name of the group
     */
     */
    protected DN getGroupDN(final String groupID) throws TransientException
    protected DN getGroupDN(final String groupID) throws TransientException
    {
    {
@@ -809,7 +808,7 @@ public class LdapGroupDAO extends LdapDAO


    /**
    /**
     * @param groupID
     * @param groupID
     * @return
     * @return the Distinguished Name of the admin group
     */
     */
    protected DN getAdminGroupDN(final String groupID) throws TransientException
    protected DN getAdminGroupDN(final String groupID) throws TransientException
    {
    {
+1 −1
Original line number Original line Diff line number Diff line
@@ -254,7 +254,7 @@ public class LdapGroupPersistence extends LdapPersistence implements GroupPersis
     *
     *
     * @param role
     * @param role
     * @param groupID check membership in a specific group or null to get all groups
     * @param groupID check membership in a specific group or null to get all groups
     * @return
     * @return the groups
     * @throws UserNotFoundException
     * @throws UserNotFoundException
     * @throws GroupNotFoundException
     * @throws GroupNotFoundException
     * @throws TransientException
     * @throws TransientException
+1 −1
Original line number Original line Diff line number Diff line
@@ -84,7 +84,7 @@ public class PosixDetails
    public String loginShell;
    public String loginShell;


    /**
    /**
     * @param userName user name
     * @param username user name
     * @param uid posix uid
     * @param uid posix uid
     * @param gid posix gid
     * @param gid posix gid
     * @param homeDirectory home directory
     * @param homeDirectory home directory
Loading