Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 94807 invoked from network); 6 Sep 2006 16:41:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Sep 2006 16:41:46 -0000 Received: (qmail 16728 invoked by uid 500); 6 Sep 2006 16:41:46 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 16677 invoked by uid 500); 6 Sep 2006 16:41:46 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 16660 invoked by uid 99); 6 Sep 2006 16:41:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 09:41:46 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 09:41:45 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 724BE1A981F; Wed, 6 Sep 2006 09:41:24 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r440781 - /directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/SimpleAuthenticationDecorator.java Date: Wed, 06 Sep 2006 16:41:24 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060906164124.724BE1A981F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Wed Sep 6 09:41:23 2006 New Revision: 440781 URL: http://svn.apache.org/viewvc?view=rev&rev=440781 Log: Modified the class to abstract, and to use the new Interface names Modified: directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/SimpleAuthenticationDecorator.java Modified: directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/SimpleAuthenticationDecorator.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/SimpleAuthenticationDecorator.java?view=diff&rev=440781&r1=440780&r2=440781 ============================================================================== --- directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/SimpleAuthenticationDecorator.java (original) +++ directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/SimpleAuthenticationDecorator.java Wed Sep 6 09:41:23 2006 @@ -19,6 +19,9 @@ */ package org.apache.directory.shared.ldap.messages.bind; +import org.apache.directory.shared.asn1.ber.Decoder; +import org.apache.directory.shared.asn1.ber.Encoder; + /** * A abstract decorator for the SimpleAuthentication object. Implements * all methods from the SimpleAuthentication real object, rerouting them @@ -29,14 +32,14 @@ * * @author Apache Directory Project */ -public class SimpleAuthenticationDecorator extends AuthenticationDecorator implements SimpleAuthenticationOperation +public abstract class SimpleAuthenticationDecorator extends AuthenticationDecorator implements SimpleAuthentication, Decoder, Encoder { /** * Creates a new SimpleAuthenticationDecorator object. * * @param the associated SimpleAuthentication object */ - public SimpleAuthenticationDecorator( AuthenticationOperation authentication ) + public SimpleAuthenticationDecorator( Authentication authentication ) { super( authentication ); }