1 package org.jahia.services.ldap;2 3 import org.jahia.services.JahiaInitializableService;4 5 /**6 * Title: Jahia7 * Description:8 * Copyright: Copyright (c) 20029 * Company: Jahia Ltd10 *11 * @author Serge Huber12 * @version 1.013 */14 15 public abstract class LDAPService extends JahiaInitializableService {16 17 /**18 * Performons authentication on an LDAP service. Returns the name19 * of the identified LDAP bind name.20 *21 * @param userID unique identifier to lookup in the LDAP server.22 * @param userPassword23 */24 public abstract String login (String userID, String userPassword);25 26 }