edu.vt.middleware.ldap.pool.LdapActivator Maven / Gradle / Ivy
/*
$Id: LdapActivator.java 1330 2010-05-23 22:10:53Z dfisher $
Copyright (C) 2003-2010 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision: 1330 $
Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap.pool;
import edu.vt.middleware.ldap.BaseLdap;
/**
* LdapActivator
provides an interface for activating ldap objects
* when they enter the pool.
*
* @param type of ldap object
*
* @author Middleware Services
* @version $Revision: 1330 $ $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
public interface LdapActivator
{
/**
* Activate the supplied ldap object.
*
* @param t ldap object
*
* @return whether activation was successful
*/
boolean activate(T t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy