JavaDoc updates.

This commit is contained in:
Ben Alex 2004-04-18 05:56:07 +00:00
parent 3ceb492cb2
commit a0f809991d

View File

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