/******************************************************************************* * ADSync4J (https://github.com/zagyi/adsync4j) * * Copyright (c) 2013 Balazs Zagyvai * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Balazs Zagyvai ***************************************************************************** */ package org.adsync4j.unboundid; import org.adsync4j.api.LdapClientException; /** * Interface for factories capable of creating a {@link PagingLdapConnection}. */ public interface PagingUnboundIDConnectionFactory { PagingLdapConnection createConnection() throws LdapClientException; }