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 Summer8 * danny_xcz@users.sourceforge.net9 * Date: 25/5/200410 * 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