JavaDoc updates.

This commit is contained in:
Ben Alex 2004-04-18 05:56:07 +00:00
parent 3ceb492cb2
commit a0f809991d
1 changed files with 6 additions and 7 deletions

View File

@ -37,8 +37,8 @@ public interface PasswordEncoder {
* <P>
* The encoded password should have previously been generated by {@link
* #encodePassword(String, Object)}. This method will encode the
* <code>rawPass</code> (using the optional <code>saltSource</code>), and
* then compared it with the presented <code>encPass</code>.
* <code>rawPass</code> (using the optional <code>salt</code>), and then
* compared it with the presented <code>encPass</code>.
* </p>
*
* <p>
@ -49,14 +49,13 @@ public interface PasswordEncoder {
* @param encPass a pre-encoded password
* @param rawPass a raw password to encode and compare against the
* pre-encoded password
* @param salt optionally used by the implementation to 'salt' the
* raw password before encoding. A <code>null</code> value is
* legal.
* @param salt optionally used by the implementation to "salt" the raw
* password before encoding. A <code>null</code> value is legal.
*
* @return DOCUMENT ME!
*/
public boolean isPasswordValid(String encPass, String rawPass,
Object salt) throws DataAccessException;
public boolean isPasswordValid(String encPass, String rawPass, Object salt)
throws DataAccessException;
/**
* <p>