Commit Graph

16 Commits

Author SHA1 Message Date
Oliver Gierke
c48df49b9e DATALDAP-16 - Prepare 1.0 RC1 (Ingalls). 2016-12-22 20:08:23 +01:00
Oliver Gierke
a9cd680371 DATALDAP-16 - Update changelog. 2016-12-22 20:02:24 +01:00
Oliver Gierke
6407465b69 DATALDAP-15 - Upgraded to Spring LDAP 2.3 RC1. 2016-12-19 18:09:56 +01:00
Oliver Gierke
8b7273b50c DATALDAP-14 - Added build profile for next Spring LDAP version to Travis execution. 2016-12-19 17:44:06 +01:00
Oliver Gierke
f46dced868 DATALDAP-14 - Added a build profile to run the build against the next version of Spring LDAP.
Currently 2.3.0.BUILD-SNAPSHOT.
2016-12-19 17:42:34 +01:00
Mark Paluch
c025d0f4fa DATALDAP-12 - Use newer Java 8 on Travis CI. 2016-12-16 11:17:10 +01:00
Mark Paluch
dfc24dfc14 DATALDAP-11 - Upgrade to Spring LDAP 2.2.0 GA. 2016-12-16 11:17:09 +01:00
Oliver Gierke
921d056169 DATALDAP-10 - Removed inclusion of manifest file. 2016-12-15 16:13:19 +01:00
Oliver Gierke
f598d1442a DATALDAP-9 - Adapt API in LdapRepositoryFactoryBean.
Related ticket: DATACMNS-891.
2016-12-15 16:12:56 +01:00
Mark Paluch
5096ae32a2 DATALDAP-7 - Polishing.
Reformat code with Spring Data formatter. Add JavaDoc to overrides and constructors. Add missing assertions to public entry points. Remove since tags from JavaDoc.
2016-12-06 11:59:54 +01:00
Mark Paluch
d594183e8d DATALDAP-7 - Migrate tests to AssertJ.
Switch remaining tests to AssertJ.
2016-12-06 11:27:10 +01:00
Mark Paluch
1e35b624b7 DATALDAP-2- Support repositoryBaseClass and considerNestedRepositories in @EnableLdapRepositories annotation.
We now support nested repository interfaces and customization via EnableLdapRepositories.repositoryBaseClass.

  @Configuration
  @EnableLdapRepositories(considerNestedRepositories = true, repositoryBaseClass = CustomizedLdapRepository.class)
  public class Config {
    // …
  }
2016-12-06 11:11:49 +01:00
Mark Paluch
ba9f653c95 DATALDAP-1 - Polishing.
Split XML configuration into infrastructure and test-specific parts. Add test logging configuration. Rename test classes to end with Tests suffix.
2016-12-06 10:18:38 +01:00
Mark Paluch
39b6b4d6af DATALDAP-1 - Create namespace handler and XML schema.
Spring Data LDAP now uses its own Namespace: http://www.springframework.org/schema/data/ldap. Using XML configuration for Spring LDAP and Spring Data LDAP requires both namespaces to be declared.

<beans xmlns="http://www.springframework.org/schema/beans"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xmlns:ldap="http://www.springframework.org/schema/ldap"
		xmlns:data-ldap="http://www.springframework.org/schema/data/ldap"
		xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/ldap http://www.springframework.org/schema/ldap/spring-ldap.xsd
		http://www.springframework.org/schema/data/ldap http://www.springframework.org/schema/data/ldap/spring-ldap.xsd">

	<ldap:context-source password="apassword" url="ldap://localhost:389" username="uid=admin"/>

	<ldap:ldap-template/>

	<data-ldap:repositories base-package="org.springframework.data.ldap.config"/>

</beans>
2016-12-06 10:18:35 +01:00
Mark Paluch
864725367a DATALDAP-6 - Register LdapRepositoryFactory in spring.factories.
This is required for the switch in support for multi-store detection.

Related ticket: DATACMNS-952.
2016-12-06 09:30:07 +01:00
Mark Paluch
9bbf0389e2 Initial import. 2016-11-21 15:53:45 +01:00