Thread: [Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database NoMorePas
Status: Beta
Brought to you by:
huston
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database In directory sc8-pr-cvs1:/tmp/cvs-serv11039/src/org/beepcore/beep/profile/sasl/otp/database Modified Files: NoMorePasswordsException.java UserDBNotFoundException.java UserDatabaseManager.java UserDatabasePool.java Log Message: fixed javadoc warnings Index: NoMorePasswordsException.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/NoMorePasswordsException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** NoMorePasswordsException.java 8 Nov 2001 05:51:35 -0000 1.2 --- NoMorePasswordsException.java 18 Nov 2003 14:03:10 -0000 1.3 *************** *** 41,45 **** * Default Constructor * ! * @param String username denotes the identity of the peer * wishing to authenticate via SASL OTP * --- 41,45 ---- * Default Constructor * ! * @param username Denotes the identity of the peer * wishing to authenticate via SASL OTP * Index: UserDBNotFoundException.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/UserDBNotFoundException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** UserDBNotFoundException.java 8 Nov 2001 05:51:35 -0000 1.2 --- UserDBNotFoundException.java 18 Nov 2003 14:03:10 -0000 1.3 *************** *** 43,47 **** * Default Constructor * ! * @param String username denotes the identity of the user that had * been attempting to authenticate via SASL OTP. * --- 43,47 ---- * Default Constructor * ! * @param username Denotes the identity of the user that had * been attempting to authenticate via SASL OTP. * Index: UserDatabaseManager.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/UserDatabaseManager.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** UserDatabaseManager.java 23 Apr 2003 15:23:05 -0000 1.4 --- UserDatabaseManager.java 18 Nov 2003 14:03:10 -0000 1.5 *************** *** 55,59 **** * is slightly trickier than doing a dual parameter lookup. * ! * @param String username indicates which OTP database should * be retrieved, based on who wishes to authenticate using it. * --- 55,59 ---- * is slightly trickier than doing a dual parameter lookup. * ! * @param username Indicates which OTP database should * be retrieved, based on who wishes to authenticate using it. * *************** *** 71,76 **** * Method addUser * ! * @param String username is the identity of the user for ! * whom this OTP database is used. * */ --- 71,76 ---- * Method addUser * ! * @param username The identity of the user for whom this OTP ! * database is used. * */ *************** *** 87,91 **** * * ! * @param UserDatabase ud is the updated form of the OTP database. * * @throws SASLException if any issues are encountered during the --- 87,91 ---- * * ! * @param ud The updated form of the OTP database. * * @throws SASLException if any issues are encountered during the *************** *** 100,104 **** * for the removal of a user db. * ! * @param String username the username associated with a given db. * * @throws SASLException if any errors are encountered in the --- 100,104 ---- * for the removal of a user db. * ! * @param username The username associated with a given db. * * @throws SASLException if any errors are encountered in the Index: UserDatabasePool.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/database/UserDatabasePool.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** UserDatabasePool.java 23 Apr 2003 15:23:05 -0000 1.4 --- UserDatabasePool.java 18 Nov 2003 14:03:10 -0000 1.5 *************** *** 1,5 **** - /* ! * UserDatabasePool.java $Revision$ $Date$ * * Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved. --- 1,4 ---- /* ! * UserDatabasePool.java $Revision$ $Date$ * * Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved. *************** *** 68,72 **** * is slightly trickier than doing a dual parameter lookup. * ! * @param String username indicates which OTP database should * be retrieved, based on who wishes to authenticate using it. * --- 67,71 ---- * is slightly trickier than doing a dual parameter lookup. * ! * @param username Indicates which OTP database should * be retrieved, based on who wishes to authenticate using it. * *************** *** 164,168 **** * * ! * @param UserDatabase ud is the updated form of the OTP database. * * @throws SASLException if any issues are encountered during the --- 163,167 ---- * * ! * @param ud The updated form of the OTP database. * * @throws SASLException if any issues are encountered during the *************** *** 199,203 **** * (e.g. file) of the user's OTP database to be removed. * ! * @param String authenticator, the user of the OTP database. * * @throws SASLException if any issues are encountered during the --- 198,202 ---- * (e.g. file) of the user's OTP database to be removed. * ! * @param authenticator The user of the OTP database. * * @throws SASLException if any issues are encountered during the |