KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > ldap > LDAPService


1 package org.jahia.services.ldap;
2
3 import org.jahia.services.JahiaInitializableService;
4
5 /**
6  * Title: Jahia
7  * Description:
8  * Copyright: Copyright (c) 2002
9  * Company: Jahia Ltd
10  *
11  * @author Serge Huber
12  * @version 1.0
13  */

14
15 public abstract class LDAPService extends JahiaInitializableService {
16
17     /**
18      * Performons authentication on an LDAP service. Returns the name
19      * of the identified LDAP bind name.
20      *
21      * @param userID unique identifier to lookup in the LDAP server.
22      * @param userPassword
23      */

24     public abstract String JavaDoc login (String JavaDoc userID, String JavaDoc userPassword);
25
26 }
Popular Tags