edu.vt.middleware.ldap.handler.ExtendedAttributeHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-ldap Show documentation
Show all versions of vt-ldap Show documentation
Library for performing common LDAP operations
/*
$Id: ExtendedAttributeHandler.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.handler;
import edu.vt.middleware.ldap.Ldap;
/**
* Provides an interface for attribute handlers that require the use of the
* Ldap
object that was used to perform the original search.
*
* @author Middleware Services
* @version $Revision: 1330 $
*/
public interface ExtendedAttributeHandler extends AttributeHandler
{
/**
* Gets the Ldap
used by the search operation invoking this
* handler.
*
* @return Ldap
*/
Ldap getSearchResultLdap();
/**
* Sets the Ldap
used by the search operation invoking this
* handler.
*
* @param l Ldap
*/
void setSearchResultLdap(final Ldap l);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy