Example usage for javax.naming.ldap LdapContext interface-usage

List of usage examples for javax.naming.ldap LdapContext interface-usage

Introduction

In this page you can find the example usage for javax.naming.ldap LdapContext interface-usage.

Usage

From source file org.springframework.ldap.pool.DelegatingLdapContext.java

/**
 * Used by {@link PoolingContextSource} to wrap a {@link LdapContext}, delegating most methods
 * to the underlying context. This class extends {@link DelegatingDirContext} which handles returning
 * the context to the pool on a call to {@link #close()}
 * 
 * @author Eric Dalquist

From source file org.springframework.ldap.pool2.DelegatingLdapContext.java

/**
 * Used by {@link PooledContextSource} to wrap a {@link LdapContext}, delegating most methods
 * to the underlying context. This class extends {@link DelegatingDirContext} which handles returning
 * the context to the pool on a call to {@link #close()}
 *
 * @since 2.0

From source file com.springsource.insight.plugin.ldap.TestLdapContext.java

/**
 * 
 */
public class TestLdapContext implements LdapContext {
    private static final NamingEnumeration<SearchResult> EMPTY_SEARCH_RESULT = new EmptyNamingEnumeration<SearchResult>();
    private static final NamingEnumeration<NameClassPair> EMPTY_NAMECLASS_PAIR = new EmptyNamingEnumeration<NameClassPair>();

From source file org.wso2.carbon.appfactory.ext.jndi.ApplicationAwareCarbonInitialJNDIContext.java

/**
 * Implements JNDI Context per deployed application(Eg Webapp).It is creating a sub Context within tenant's sub Context
 * Most of the logic are borrowed from CarbonInitialJNDIContext
 */
public class ApplicationAwareCarbonInitialJNDIContext implements EventDirContext, LdapContext {
    private static final Log log = LogFactory.getLog(ApplicationAwareCarbonInitialJNDIContext.class);