[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database UserDatab
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2002-09-07 15:09:42
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database In directory usw-pr-cvs1:/tmp/cvs-serv2630/sasl/otp/database Modified Files: UserDatabase.java UserDatabaseImpl.java Log Message: javadoc fixes Index: UserDatabase.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/UserDatabase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** UserDatabase.java 8 Nov 2001 05:51:35 -0000 1.2 --- UserDatabase.java 7 Sep 2002 15:09:38 -0000 1.3 *************** *** 42,46 **** * particular user and OTP database. * ! * @returns String the algorithm employed by the user of this database * for SASL OTP authentication. * --- 42,46 ---- * particular user and OTP database. * ! * @return String the algorithm employed by the user of this database * for SASL OTP authentication. * *************** *** 51,55 **** * Method getLastHash * ! * @returns byte[] the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash value is represented in binary form. --- 51,55 ---- * Method getLastHash * ! * @return byte[] the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash value is represented in binary form. *************** *** 61,65 **** * Method getLastHashAsString * ! * @returns String the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash is represented in hexadecimal form. --- 61,65 ---- * Method getLastHashAsString * ! * @return String the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash is represented in hexadecimal form. *************** *** 71,75 **** * Method getSeed * ! * @returns String the seed used by the * user of this database for SASL OTP authentication. * --- 71,75 ---- * Method getSeed * ! * @return String the seed used by the * user of this database for SASL OTP authentication. * *************** *** 80,84 **** * Method getSequence * ! * @returns int the sequence to be used by the * user of this database for SASL OTP authentication. * --- 80,84 ---- * Method getSequence * ! * @return int the sequence to be used by the * user of this database for SASL OTP authentication. * *************** *** 89,93 **** * Method getAuthenticator * ! * @returns String the user of this database. * */ --- 89,93 ---- * Method getAuthenticator * ! * @return String the user of this database. * */ Index: UserDatabaseImpl.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/UserDatabaseImpl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** UserDatabaseImpl.java 8 Nov 2001 05:51:35 -0000 1.2 --- UserDatabaseImpl.java 7 Sep 2002 15:09:39 -0000 1.3 *************** *** 77,81 **** * Method getAlgorithmName * ! * @returns String the algorithm employed by the user of this database * for SASL OTP authentication. * --- 77,81 ---- * Method getAlgorithmName * ! * @return String the algorithm employed by the user of this database * for SASL OTP authentication. * *************** *** 89,93 **** * Method getLastHash * ! * @returns byte[] the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash value is represented in binary form. --- 89,93 ---- * Method getLastHash * ! * @return byte[] the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash value is represented in binary form. *************** *** 102,106 **** * Method getLastHash * ! * @returns String the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash is represented in hexadecimal form. --- 102,106 ---- * Method getLastHash * ! * @return String the lastHash value generated the last time the * user of this database performed SASL OTP authentication. The * hash is represented in hexadecimal form. *************** *** 115,119 **** * Method getLastHash * ! * @returns String the seed used by the * user of this database for SASL OTP authentication. * --- 115,119 ---- * Method getLastHash * ! * @return String the seed used by the * user of this database for SASL OTP authentication. * *************** *** 127,131 **** * Method getLastHash * ! * @returns int the sequence that shoudl be used by the * user of this database for their next SASL OTP authentication. * --- 127,131 ---- * Method getLastHash * ! * @return int the sequence that should be used by the * user of this database for their next SASL OTP authentication. * *************** *** 139,143 **** * Method getLastHash * ! * @returns String the last hash value used by the * user of this database for SASL OTP authentication. * --- 139,143 ---- * Method getLastHash * ! * @return String the last hash value used by the * user of this database for SASL OTP authentication. * |