mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
15 lines
300 B
Java
15 lines
300 B
Java
package com.avaje.tests.ldap;
|
|
|
|
import javax.naming.directory.DirContext;
|
|
|
|
import com.avaje.ebean.config.ldap.LdapContextFactory;
|
|
|
|
public class MockContextFactory implements LdapContextFactory {
|
|
|
|
public DirContext createContext() {
|
|
return new MockDirContext();
|
|
}
|
|
|
|
|
|
}
|