Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 99856 invoked from network); 24 Jun 2005 03:46:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 24 Jun 2005 03:46:45 -0000 Received: (qmail 82441 invoked by uid 500); 24 Jun 2005 03:46:44 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 82390 invoked by uid 500); 24 Jun 2005 03:46:44 -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 82374 invoked by uid 99); 24 Jun 2005 03:46:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2005 20:46:44 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 23 Jun 2005 20:46:44 -0700 Received: (qmail 99821 invoked by uid 65534); 24 Jun 2005 03:46:41 -0000 Message-ID: <20050624034641.99820.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r201557 - /directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java Date: Fri, 24 Jun 2005 03:46:40 -0000 To: commits@directory.apache.org From: trustin@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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() ) {