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/04 20:15:18 UTC

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

Author: elecharny
Date: Mon Sep  4 11:15:17 2006
New Revision: 440143

URL: http://svn.apache.org/viewvc?view=rev&rev=440143
Log:
Added a missing constructor

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

Modified: directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AuthenticationDecorator.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/AuthenticationDecorator.java?view=diff&rev=440143&r1=440142&r2=440143
==============================================================================
--- directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AuthenticationDecorator.java (original)
+++ directory/sandbox/akarasulu/apacheds-2.0/shared/ldap/src/main/java/org/apache/directory/shared/ldap/messages/bind/AuthenticationDecorator.java Mon Sep  4 11:15:17 2006
@@ -32,6 +32,16 @@
     protected AuthenticationOperation authentication;
 
     /**
+     * Creates a new BindRequestDecorator object.
+     * 
+     * @param the associated BindRequest object
+     */
+    public AuthenticationDecorator( AuthenticationOperation authentication )
+    {
+        this.authentication = authentication;
+    }
+
+    /**
      * @return The decorated object
      */
     public AuthenticationOperation getAuthentication()