Subversion Repositories bacoAlunos

Rev

Rev 1306 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1306 Rev 1310
1
package openldap;
1
package openldap;
2
 
2
 
3
import openldap.impl.LdapManager;
3
import openldap.impl.LdapManager;
4
 
4
 
5
/**
5
/**
6
 * Created by IntelliJ IDEA.
6
 * Created by IntelliJ IDEA.
7
 * User: User
7
 * User: User
8
 * Date: 9/Abr/2005
8
 * Date: 9/Abr/2005
9
 * Time: 12:04:00
9
 * Time: 12:04:00
10
 * To change this template use File | Settings | File Templates.
10
 * To change this template use File | Settings | File Templates.
11
 */
11
 */
12
public class LdapManagerFactory {
12
public class LdapManagerFactory {
13
    public static ILdapManager getLdapManager(){
13
    public static ILdapManager getLdapManager(){
14
        return new LdapManager();
14
        return new LdapManager();
15
    }
15
    }
16
}
16
}
17
 
17