[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous SASLAnonymou
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2003-04-23 15:23:37
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous In directory sc8-pr-cvs1:/tmp/cvs-serv31233/src/org/beepcore/beep/profile/sasl/anonymous Modified Files: SASLAnonymousProfile.java AnonymousAuthenticator.java Log Message: cleanup of imports Index: SASLAnonymousProfile.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous/SASLAnonymousProfile.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** SASLAnonymousProfile.java 5 Oct 2002 15:31:49 -0000 1.8 --- SASLAnonymousProfile.java 23 Apr 2003 15:23:03 -0000 1.9 *************** *** 20,26 **** import java.util.Hashtable; - import sun.misc.BASE64Decoder; - import sun.misc.BASE64Encoder; - import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; --- 20,23 ---- Index: AnonymousAuthenticator.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous/AnonymousAuthenticator.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** AnonymousAuthenticator.java 5 Oct 2002 15:31:49 -0000 1.13 --- AnonymousAuthenticator.java 23 Apr 2003 15:23:03 -0000 1.14 *************** *** 19,26 **** import java.io.InputStream; import java.io.IOException; - import java.io.UnsupportedEncodingException; import java.util.Hashtable; - import java.util.StringTokenizer; import org.apache.commons.logging.Log; --- 19,24 ---- *************** *** 107,111 **** credential.put(SessionCredential.AUTHENTICATOR_TYPE, ! profile.MECHANISM); } --- 105,109 ---- credential.put(SessionCredential.AUTHENTICATOR_TYPE, ! SASLAnonymousProfile.MECHANISM); } *************** *** 177,181 **** credential.put(SessionCredential.AUTHENTICATOR, data); credential.put(SessionCredential.AUTHENTICATOR_TYPE, ! profile.MECHANISM); try --- 175,179 ---- credential.put(SessionCredential.AUTHENTICATOR, data); credential.put(SessionCredential.AUTHENTICATOR_TYPE, ! SASLAnonymousProfile.MECHANISM); try |