KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > ldap > LDAPServiceContainer


1 /***************************************************************************
2  * Copyright 2001-2004 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 /**
6  * Created by The eXo Platform SARL .
7  * Author : Daniel Summer
8  * danny_xcz@users.sourceforge.net
9  * Date: 25/5/2004
10  *
11  */

12 package org.exoplatform.services.ldap;
13
14 import org.exoplatform.services.exception.ExoServiceException;
15
16 public interface LDAPServiceContainer {
17
18     public LDAPService createLDAPService() throws ExoServiceException;
19     public void closeLDAPService(LDAPService ldapService) throws ExoServiceException;
20
21 }
22
Popular Tags