[java-opensaml COMMIT] in /trunk/opensaml-storage-impl: pom.xml src/main/java/org/opensaml/storage/impl/LDAPStorageSe...

noreply at shibboleth.net noreply at shibboleth.net
Thu Jul 11 23:42:02 EDT 2013


Author: dfisher
Date: Thu Jul 11 23:42:01 2013
New Revision: 3412

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3412&view=rev
Log:
Add LDAP based storage service implementation.
Expiration and versioning not yet supported.
Resolves IDP-71.

Added:
    trunk/opensaml-storage-impl/src/main/java/org/opensaml/storage/impl/LDAPStorageService.java
    trunk/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/LDAPStorageServiceTest.java
    trunk/opensaml-storage-impl/src/test/resources/org/
    trunk/opensaml-storage-impl/src/test/resources/org/opensaml/
    trunk/opensaml-storage-impl/src/test/resources/org/opensaml/storage/
    trunk/opensaml-storage-impl/src/test/resources/org/opensaml/storage/impl/
    trunk/opensaml-storage-impl/src/test/resources/org/opensaml/storage/impl/LDAPStorageServiceTest.ldif
Modified:
    trunk/opensaml-storage-impl/pom.xml

Modified: trunk/opensaml-storage-impl/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-storage-impl/pom.xml?rev=3412&r1=3411&r2=3412&view=diff
==============================================================================
--- trunk/opensaml-storage-impl/pom.xml (original)
+++ trunk/opensaml-storage-impl/pom.xml Thu Jul 11 23:42:01 2013
@@ -22,6 +22,11 @@
             <artifactId>opensaml-storage-api</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.ldaptive</groupId>
+            <artifactId>ldaptive</artifactId>
+            <version>1.0.1</version>
+        </dependency>
 
         <!-- Provided Dependencies -->
 
@@ -36,6 +41,13 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>com.unboundid</groupId>
+            <artifactId>unboundid-ldapsdk</artifactId>
+            <version>2.3.4</version>
+            <scope>test</scope>
+        </dependency>
+
         <!-- Managed Dependencies -->
     </dependencies>
     



More information about the commits mailing list