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 2005/10/30 21:00:32 UTC

svn commit: r329620 - /directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java

Author: elecharny
Date: Sun Oct 30 12:00:29 2005
New Revision: 329620

URL: http://svn.apache.org/viewcvs?rev=329620&view=rev
Log:
The getDecoder method now get a Hashtable parameter

Modified:
    directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java

Modified: directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java?rev=329620&r1=329619&r2=329620&view=diff
==============================================================================
--- directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java (original)
+++ directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/spi/Provider.java Sun Oct 30 12:00:29 2005
@@ -200,7 +200,7 @@
      * @return the provider's decoder.
      * @throws ProviderException if the provider or its decoder cannot be found
      */
-    public abstract ProviderDecoder getDecoder() throws ProviderException ;
+    public abstract ProviderDecoder getDecoder( Hashtable env ) throws ProviderException ;
 
 
     /**