View Javadoc

1   package net.sourceforge.heracles.heracleshttpclient.service;
2   
3   import java.util.List;
4   
5   /**
6    * Title:            Service.java<br>
7    * Java Version:     JDK 1.5<br>
8    *
9    * @author Philipp Gantert
10   * @version 1.0
11   */
12  public interface Service {
13    
14    public List searchInLdap(String domaine,String where, String like) throws Exception;
15    
16  }