|
Project Information
Featured
Downloads
Links
|
LDAPBeans is a tool that allow you to access easily to LDAP objects throw Java interfaces. The idea is that you simply have to write an interface describing datas of LDAP objets without having to write implementation of your beans. LDAPBeans is in charge of providing access to your LDAP directory. How does it workPlease see Introduction in the wiki Features
How to use itFor maven usersAdd following lines to your pom.xml: <project>
...
<dependencies>
<dependency>
<groupId>com.googlecode.ldapbeans</groupId>
<artifactId>ldapbeans</artifactId>
<version>0.1.2</version>
</dependency>
...
</dependencies>
...
<repositories>
<repository>
<id>ldapbeans</id>
<url>http://ldapbeans.googlecode.com/svn/maven2</url>
</repository>
...
</repositories>
...
</project>For other'sDownload the lastest ldapbean jar and add it to your classpath
|