View Javadoc

1   package net.sf.jldapbeans.lang;
2   
3   /***
4    * Holds the <code>LdapBean</code>s actually configured for use inside the engine.
5    * 
6    * @author <a href="mailto:alonsoft@users.sf.net">A. Alonso Domínguez</a>
7    * @version 1.0 $ Revision 29-oct-2005 :: 11:37:28 :: alonso $
8    */
9   public interface BeanRepository {
10  	
11  	/***
12  	 * Obtains the java class name associated with <tt>objectClass</tt> specified.
13  	 * 
14  	 * @param objectClass The <tt>objectClass</tt> name for which guess its associated Java Class
15  	 * @return A Java Class name
16  	 */
17  	public String getObjectClass(String objectClass);
18  	
19  }