org.xbib.groovy.ldap.WithContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-ldap Show documentation
Show all versions of groovy-ldap Show documentation
LDAP extensions for Groovy
package org.xbib.groovy.ldap;
import javax.naming.NamingException;
import javax.naming.ldap.LdapContext;
public interface WithContext {
T perform(LdapContext ctx) throws NamingException;
}