Author: ate
Date: Tue Sep 20 07:14:31 2005
New Revision: 290457

URL: http://svn.apache.org/viewcvs?rev=290457&view=rev
Log:
More javadoc fixes

Modified:
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AggregationHierarchyResolver.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderProxyImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GeneralizationHierarchyResolver.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupPrincipalImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/LoginModuleProxyImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/PermissionManagerImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RoleImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RolePrincipalImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/UserPrincipalImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/ext/JBossLoginModule.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalPrincipalImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/CredentialHandler.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/SecurityAccess.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultPasswordCredentialProvider.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultSecurityMappingHandler.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapSecurityMappingHandler.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapUserSecurityHandler.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SecurityAccessImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SimpleCredentialPasswordValidator.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/AbstractLdapDao.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapPrincipalDaoImpl.java
    
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapUserCredentialDaoImpl.java

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AggregationHierarchyResolver.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AggregationHierarchyResolver.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AggregationHierarchyResolver.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AggregationHierarchyResolver.java
 Tue Sep 20 07:14:31 2005
@@ -48,7 +48,7 @@
     private static final Log log = 
LogFactory.getLog(AggregationHierarchyResolver.class);
 
     /**
-     * @see org.apache.jetspeed.security.HierarchyResolver#resolve()
+     * @see org.apache.jetspeed.security.HierarchyResolver#resolve(Preferences)
      */
     public String[] resolve(Preferences prefs)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderImpl.java
 Tue Sep 20 07:14:31 2005
@@ -158,7 +158,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.AuthenticationProvider#setCredentialHandler()
+     * @see 
org.apache.jetspeed.security.AuthenticationProvider#setCredentialHandler(CredentialHandler)
      */
     public void setCredentialHandler(CredentialHandler credHandler)
     {
@@ -166,7 +166,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.AuthenticationProvider#setUserSecurityHandler()
+     * @see 
org.apache.jetspeed.security.AuthenticationProvider#setUserSecurityHandler(UserSecurityHandler)
      */
     public void setUserSecurityHandler(UserSecurityHandler userSecurityHandler)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderProxyImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderProxyImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderProxyImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/AuthenticationProviderProxyImpl.java
 Tue Sep 20 07:14:31 2005
@@ -262,8 +262,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.AuthenticationProviderProxy#setPublicPasswordCredential(org.apache.jetspeed.security.PasswordCredential,
-     *      org.apache.jetspeed.security.PasswordCredential, java.lang.String)
+     * @see 
org.apache.jetspeed.security.AuthenticationProviderProxy#setPassword(String, 
String, String, String)
      */
     public void setPassword(String userName, String oldPassword, String 
newPassword, String authenticationProvider) throws SecurityException
     {
@@ -376,7 +375,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.AuthenticationProviderProxy#authenticate(java.lang.String,
 char[], java.lang.String)
+     * @see 
org.apache.jetspeed.security.AuthenticationProviderProxy#authenticate(String, 
String, String)
      */
     public boolean authenticate(String userName, String password, String 
authenticationProvider) throws SecurityException
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GeneralizationHierarchyResolver.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GeneralizationHierarchyResolver.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GeneralizationHierarchyResolver.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GeneralizationHierarchyResolver.java
 Tue Sep 20 07:14:31 2005
@@ -42,7 +42,7 @@
 {
 
     /**
-     * @see org.apache.jetspeed.security.HierarchyResolver#resolve()
+     * @see org.apache.jetspeed.security.HierarchyResolver#resolve(Preferences)
      */
     public String[] resolve(Preferences prefs)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupImpl.java
 Tue Sep 20 07:14:31 2005
@@ -20,7 +20,7 @@
 import org.apache.jetspeed.security.Group;
 
 /**
- * <p>A group made of a [EMAIL PROTECTED] GroupPrincipal} and the user [EMAIL 
PROTECTED] Preferences}.</p>
+ * <p>A group made of a [EMAIL PROTECTED] 
org.apache.jetspeed.security.GroupPrincipal} and the user [EMAIL PROTECTED] 
Preferences}.</p>
  * @author <a href="mailto:[EMAIL PROTECTED]">David Le Strat</a>
  */
 public class GroupImpl implements Group

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupPrincipalImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupPrincipalImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupPrincipalImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/GroupPrincipalImpl.java
 Tue Sep 20 07:14:31 2005
@@ -64,7 +64,7 @@
     /**
      * <p>Gets the principal name from the principal implementation full 
path.</p>
      * <p>Remove prepended PREFS_GROUP_ROOT if present.</p>        
-     * @param name The principal full path.
+     * @param fullPath The principal full path.
      * @return The principal name.
      */
     public static String getPrincipalNameFromFullPath(String fullPath)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/LoginModuleProxyImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/LoginModuleProxyImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/LoginModuleProxyImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/LoginModuleProxyImpl.java
 Tue Sep 20 07:14:31 2005
@@ -36,7 +36,6 @@
      * manager.
      * </p>
      * 
-     * @param loginConfig The login module config.
      * @param userMgr The user manager.
      *  
      */

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/PermissionManagerImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/PermissionManagerImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/PermissionManagerImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/PermissionManagerImpl.java
 Tue Sep 20 07:14:31 2005
@@ -408,10 +408,10 @@
 
     /**
      * <p>
-     * Returns the [EMAIL PROTECTED] InternalPermission}from the full path.
+     * Returns the [EMAIL PROTECTED] InternalPermission} from a Permission.
      * </p>
      * 
-     * @param fullPath The full path.
+     * @param permission The permission.
      * @return The [EMAIL PROTECTED] InternalPermission}.
      */
     InternalPermission getInternalPermission(Permission permission)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RoleImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RoleImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RoleImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RoleImpl.java
 Tue Sep 20 07:14:31 2005
@@ -35,7 +35,7 @@
 
     /**
      * <p>[EMAIL PROTECTED] Role} constructor given a role principal and 
preferences.</p>
-     * @param subject The role principal.
+     * @param rolePrincipal The role principal.
      * @param preferences The preferences.
      */
     public RoleImpl(Principal rolePrincipal, Preferences preferences)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RolePrincipalImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RolePrincipalImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RolePrincipalImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/RolePrincipalImpl.java
 Tue Sep 20 07:14:31 2005
@@ -65,7 +65,7 @@
     /**
      * <p>Gets the principal name from the principal implementation full 
path.</p>
      * <p>Remove prepended PREFS_ROLE_ROOT if present.</p>        
-     * @param name The principal full path.
+     * @param fullPath The principal full path.
      * @return The principal name.
      */
     public static String getPrincipalNameFromFullPath(String fullPath)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/UserPrincipalImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/UserPrincipalImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/UserPrincipalImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/UserPrincipalImpl.java
 Tue Sep 20 07:14:31 2005
@@ -64,7 +64,7 @@
     /**
      * <p>Gets the principal name from the principal implementation full 
path.</p>
      * <p>Remove prepended PREFS_GROUP_ROOT if present.</p>        
-     * @param name The principal full path.
+     * @param fullPath The principal full path.
      * @return The principal name.
      */
     public static String getPrincipalNameFromFullPath(String fullPath)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/ext/JBossLoginModule.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/ext/JBossLoginModule.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/ext/JBossLoginModule.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/impl/ext/JBossLoginModule.java
 Tue Sep 20 07:14:31 2005
@@ -85,7 +85,7 @@
     /**
      * Create a new JBoss login module that uses the given user manager.
      * @param userManager
-     * @see DefaultLoginModule(UserManager)
+     * @see DefaultLoginModule#DefaultLoginModule(UserManager)
      */
     protected JBossLoginModule (UserManager userManager) {
         super (userManager);

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java
 Tue Sep 20 07:14:31 2005
@@ -229,7 +229,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.om.InternalCredential#setExpirationDate(java.sql.Timestamp)
+     * @see 
org.apache.jetspeed.security.om.InternalCredential#setExpirationDate(java.sql.Date)
      */
     public void setExpirationDate(Date expirationDate)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalPrincipalImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalPrincipalImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalPrincipalImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalPrincipalImpl.java
 Tue Sep 20 07:14:31 2005
@@ -99,7 +99,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.om.InternalPrincipal#setPrincipalId(int)
+     * @see 
org.apache.jetspeed.security.om.InternalPrincipal#setPrincipalId(long)
      */
     public void setPrincipalId(long principalId)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/CredentialHandler.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/CredentialHandler.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/CredentialHandler.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/CredentialHandler.java
 Tue Sep 20 07:14:31 2005
@@ -62,8 +62,8 @@
      * If <code>oldPassword</code> is not null, the oldPassword will first be 
checked (authenticated).<br>
      * </p>
      * 
-     * @param oldPwdCredential The old [EMAIL PROTECTED] PasswordCredential}.
-     * @param newPwdCredential The new [EMAIL PROTECTED] PasswordCredential}.
+     * @param oldPassword The old password.
+     * @param newPassword The new password.
      * @throws SecurityException Throws a [EMAIL PROTECTED] SecurityException}.
      */
     void setPassword(String userName, String oldPassword, String newPassword) 
throws SecurityException;
@@ -73,7 +73,7 @@
      * Set the update required state of the user password credential.
      * </p>
      * 
-     * @param username The user name.
+     * @param userName The user name.
      * @param updateRequired The update required state.
      * @throws Throws a security exception.
      */
@@ -84,7 +84,7 @@
      * Set the enabled state of the user password credential.
      * </p>
      * 
-     * @param username The user name.
+     * @param userName The user name.
      * @param enabled The enabled state.
      * @throws Throws a security exception.
      */

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/SecurityAccess.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/SecurityAccess.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/SecurityAccess.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/SecurityAccess.java
 Tue Sep 20 07:14:31 2005
@@ -68,7 +68,7 @@
 
     /**
      * <p>
-     * Returns a collection of [EMAIL PROTECTED] Principal}given the filter.
+     * Returns a [EMAIL PROTECTED] InternalUserPrincipal} collection given the 
filter.
      * </p>
      * 
      * @param filter The filter.
@@ -102,7 +102,7 @@
      * Returns the [EMAIL PROTECTED] InternalRolePrincipal}from the role full 
path name.
      * </p>
      * 
-     * @param username The role full path name.
+     * @param roleFullPathName The role full path name.
      * @return The [EMAIL PROTECTED] InternalRolePrincipal}.
      */
     InternalRolePrincipal getInternalRolePrincipal( String roleFullPathName );
@@ -133,7 +133,7 @@
      * Returns the [EMAIL PROTECTED] InternalGroupPrincipal}from the group 
full path name.
      * </p>
      * 
-     * @param username The group full path name.
+     * @param groupFullPathName The group full path name.
      * @return The [EMAIL PROTECTED] InternalGroupPrincipal}.
      */
     InternalGroupPrincipal getInternalGroupPrincipal( String groupFullPathName 
);
@@ -143,7 +143,7 @@
      * Sets the given [EMAIL PROTECTED] InternalGroupPrincipal}.
      * </p>
      * 
-     * @param internalGroup The [EMAIL PROTECTED] internalGroupPrincipal}.
+     * @param internalGroup The [EMAIL PROTECTED] InternalGroupPrincipal}.
      * @param isMappingOnly Whether a principal's purpose is for security 
mappping only.
      * @throws SecurityException Throws a [EMAIL PROTECTED] SecurityException}.
      */
@@ -162,7 +162,7 @@
 
     /**
      * <p>
-     * Returns a collection of Role [EMAIL PROTECTED] Principal} given the 
filter.
+     * Returns a [EMAIL PROTECTED] InternalRolePrincipal} collection given the 
filter.
      * </p>
      * 
      * @param filter The filter.
@@ -172,7 +172,7 @@
     
     /**
      * <p>
-     * Returns a collection of Group [EMAIL PROTECTED] Principal} given the 
filter.
+     * Returns a [EMAIL PROTECTED] InternalGroupPrincipal} collection of Group 
given the filter.
      * </p>
      * 
      * @param filter The filter.

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultPasswordCredentialProvider.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultPasswordCredentialProvider.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultPasswordCredentialProvider.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultPasswordCredentialProvider.java
 Tue Sep 20 07:14:31 2005
@@ -46,7 +46,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.spi.PasswordCredentialProvider#getPasswordCredentailClass()
+     * @see 
org.apache.jetspeed.security.spi.PasswordCredentialProvider#getPasswordCredentialClass()
      */
     public Class getPasswordCredentialClass()
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultSecurityMappingHandler.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultSecurityMappingHandler.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultSecurityMappingHandler.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/DefaultSecurityMappingHandler.java
 Tue Sep 20 07:14:31 2005
@@ -146,7 +146,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.spi.SecurityMappingHandler#setRolePrincipals(java.lang.String,
+     * @see 
org.apache.jetspeed.security.spi.SecurityMappingHandler#setRolePrincipal(java.lang.String,
      *      java.lang.String)
      */
     public void setRolePrincipal(String username, String roleFullPathName) 
throws SecurityException

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapSecurityMappingHandler.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapSecurityMappingHandler.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapSecurityMappingHandler.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapSecurityMappingHandler.java
 Tue Sep 20 07:14:31 2005
@@ -119,7 +119,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.spi.SecurityMappingHandler#setRolePrincipals(java.lang.String,
+     * @see 
org.apache.jetspeed.security.spi.SecurityMappingHandler#setRolePrincipal(java.lang.String,
      *      java.lang.String)
      */
     public void setRolePrincipal(String username, String roleFullPathName) 
throws SecurityException

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapUserSecurityHandler.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapUserSecurityHandler.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapUserSecurityHandler.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/LdapUserSecurityHandler.java
 Tue Sep 20 07:14:31 2005
@@ -44,7 +44,7 @@
     private LdapPrincipalDao ldap;
 
     /**
-     * @param ldap The [EMAIL PROTECTED] LdapUserSecurityDao}.
+     * @param ldap The LdapPrincipalDao.
      */
     public LdapUserSecurityHandler(LdapPrincipalDao ldap)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SecurityAccessImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SecurityAccessImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SecurityAccessImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SecurityAccessImpl.java
 Tue Sep 20 07:14:31 2005
@@ -202,7 +202,7 @@
      * Returns the [EMAIL PROTECTED] InternalRolePrincipal}from the role full 
path name.
      * </p>
      * 
-     * @param username The role full path name.
+     * @param roleFullPathName The role full path name.
      * @return The [EMAIL PROTECTED] InternalRolePrincipal}.
      */
     public InternalRolePrincipal getInternalRolePrincipal(String 
roleFullPathName)
@@ -280,7 +280,7 @@
      * Returns the [EMAIL PROTECTED] InternalGroupPrincipal}from the group 
full path name.
      * </p>
      * 
-     * @param username The group full path name.
+     * @param groupFullPathName The group full path name.
      * @return The [EMAIL PROTECTED] InternalGroupPrincipal}.
      */
     public InternalGroupPrincipal getInternalGroupPrincipal(String 
groupFullPathName)
@@ -297,7 +297,7 @@
      * Sets the given [EMAIL PROTECTED] InternalGroupPrincipal}.
      * </p>
      * 
-     * @param internalGroup The [EMAIL PROTECTED] internalGroupPrincipal}.
+     * @param internalGroup The [EMAIL PROTECTED] InternalGroupPrincipal}.
      * @param isMappingOnly Whether a principal's purpose is for security 
mappping only.
      * @throws SecurityException Throws a [EMAIL PROTECTED] SecurityException}.
      */

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SimpleCredentialPasswordValidator.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SimpleCredentialPasswordValidator.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SimpleCredentialPasswordValidator.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/SimpleCredentialPasswordValidator.java
 Tue Sep 20 07:14:31 2005
@@ -42,7 +42,7 @@
     }
 
     /**
-     * @see 
org.apache.jetspeed.security.spi.CredentialPasswordValidator#validate(char[])
+     * @see 
org.apache.jetspeed.security.spi.CredentialPasswordValidator#validate(String)
      */
     public void validate(String clearTextPassword) throws SecurityException
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/AbstractLdapDao.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/AbstractLdapDao.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/AbstractLdapDao.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/AbstractLdapDao.java
 Tue Sep 20 07:14:31 2005
@@ -93,8 +93,8 @@
      * Binds to the ldap server.
      * </p>
      * 
-     * @param userDn
-     * @param password
+     * @param rootDn
+     * @param rootPassword
      * @throws NamingException
      */
     protected void bindToServer(String rootDn, String rootPassword) throws 
SecurityException,
@@ -159,7 +159,7 @@
      * Valiate the users password.
      * </p>
      * 
-     * @param userDn The user.
+     * @param password The user.
      */
     protected void validatePassword(final String password)
     {

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapPrincipalDaoImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapPrincipalDaoImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapPrincipalDaoImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapPrincipalDaoImpl.java
 Tue Sep 20 07:14:31 2005
@@ -191,7 +191,7 @@
      * Converts a list of principals to an array of principals.
      * </p>
      * 
-     * @param userPrincipals The list of principals.
+     * @param principals The list of principals.
      * @return The array of principals.
      */
     private Principal[] convertPrincipalListToArray(Collection principals)
@@ -205,7 +205,7 @@
      * </p>
      * 
      * @param searchResults The [EMAIL PROTECTED] NamingEnumeration} of 
results.
-     * @param userPrincipals The collection of user principals.
+     * @param principals The collection of user principals.
      * @throws NamingException Throws a [EMAIL PROTECTED] NamingException}.
      */
     private void enumerateOverSearchResults(NamingEnumeration searchResults, 
Collection principals)

Modified: 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapUserCredentialDaoImpl.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapUserCredentialDaoImpl.java?rev=290457&r1=290456&r2=290457&view=diff
==============================================================================
--- 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapUserCredentialDaoImpl.java
 (original)
+++ 
portals/jetspeed-2/trunk/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapUserCredentialDaoImpl.java
 Tue Sep 20 07:14:31 2005
@@ -204,7 +204,7 @@
      * improved to do proper unicode conversion.
      * </p>
      * 
-     * @param The [EMAIL PROTECTED] Attribute}.  
+     * @param attr The [EMAIL PROTECTED] Attribute}.  
      */
     private char[] convertRawPassword(Attribute attr) throws NamingException
     {
@@ -234,7 +234,7 @@
      * </p>
      * 
      * @param results The results to find the user in.
-     * @return The [EMAIL PROTECTED] Attributes}.
+     * @return The Attributes.
      * @throws NamingException Throws a [EMAIL PROTECTED] NamingException}.
      */
     private Attributes getFirstUser(NamingEnumeration results) throws 
NamingException



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to