You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/06/24 05:46:40 UTC

svn commit: r201557 - /directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java

Author: trustin
Date: Thu Jun 23 20:46:39 2005
New Revision: 201557

URL: http://svn.apache.org/viewcvs?rev=201557&view=rev
Log:
Fixed compilation errors.

Modified:
    directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java

Modified: directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java?rev=201557&r1=201556&r2=201557&view=diff
==============================================================================
--- directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java (original)
+++ directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java Thu Jun 23 20:46:39 2005
@@ -62,7 +62,7 @@
     // Members
     // ------------------------------------------------------------------------
 
-    protected void afterShutdown( ContextFactoryConfiguration ctx )
+    public void afterShutdown( ContextFactoryService service )
     {
         if ( minaRegistry != null )
         {
@@ -80,11 +80,11 @@
         }
     }
     
-    protected void afterStartup( ContextFactoryConfiguration ctx ) throws NamingException
+    public void afterStartup( ContextFactoryService service ) throws NamingException
     {
         ServerStartupConfiguration cfg =
-            ( ServerStartupConfiguration ) ctx.getConfiguration();
-        Hashtable env = ctx.getEnvironment();
+            ( ServerStartupConfiguration ) service.getConfiguration().getStartupConfiguration();
+        Hashtable env = service.getConfiguration().getEnvironment();
 
         if ( cfg.isEnableNetworking() )
         {