You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/09/06 18:27:08 UTC

svn commit: r440768 - /directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java

Author: elecharny
Date: Wed Sep  6 09:27:06 2006
New Revision: 440768

URL: http://svn.apache.org/viewvc?view=rev&rev=440768
Log:
Reflect the renaming of authentication interfaces and classes

Modified:
    directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java

Modified: directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java
URL: http://svn.apache.org/viewvc/directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java?view=diff&rev=440768&r1=440767&r2=440768
==============================================================================
--- directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java (original)
+++ directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AbstractAuthentication.java Wed Sep  6 09:27:06 2006
@@ -27,14 +27,14 @@
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
-public class AbstractAuthentication implements AuthenticationOperation
+public class AbstractAuthentication implements Authentication
 {
     /**
      * @return Returns <code>true</code> if the authentication scheme is Simple 
      */
     public boolean isSimple() 
     {
-        return (AuthenticationOperation)this instanceof SimpleAuthentication;
+        return (Authentication)this instanceof ConcreteSimpleAuthentication;
     }
     
     /**
@@ -42,6 +42,6 @@
      */
     public boolean isSasl()
     {
-        return (AuthenticationOperation)this instanceof SaslCredentials;
+        return (Authentication)this instanceof ConcreteSaslCredentials;
     }
 }