Fixed typos and formatting.

This commit is contained in:
Ulrik Sandberg
2008-10-26 17:05:29 +00:00
parent b30f068a46
commit de46d23684
5 changed files with 13 additions and 8 deletions

View File

@@ -73,9 +73,14 @@
</dependencies>
<!--
Requires an ldap server to be up and running. Uncomment to enable
integration tests <build>
<testSourceDirectory>src/itest/java</testSourceDirectory>
<testResources> <testResource> <directory>src/itest/java</directory>
</testResource> </testResources> </build>
integration tests
<build>
<testSourceDirectory>src/itest/java</testSourceDirectory>
<testResources>
<testResource>
<directory>src/itest/java</directory>
</testResource>
</testResources>
</build>
-->
</project>

View File

@@ -1,7 +1,7 @@
Sample application demonstrating how to do the most basic stuff in Spring LDAP
A very simple dao implementation is provided in
org.springframework.ldap.samples.article.dao.PersonDaoImpl
It demonstrates some basic operations using Spring LDAP. For recerence purposes,
It demonstrates some basic operations using Spring LDAP. For reference purposes,
a corresponding implementation using ordinary Java LDAP/JNDI implementation is
available in TraditionalPersonDaoImpl.

View File

@@ -25,7 +25,7 @@ import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
/**
* Abstract base class for PersonDao integration tests.
*
* @author Mattias Hellborg Arthurssonrthursson
* @author Mattias Hellborg Arthursson
* @author Ulrik Sandberg
*/
public abstract class AbstractPersonDaoIntegrationTest

View File

@@ -20,7 +20,7 @@ import org.springframework.ldap.samples.article.dao.PersonDaoImpl;
/**
* Integration tests for the PersonDaoImpl class.
*
* @author Mattias Hellborg Arthurssonrthursson
* @author Mattias Hellborg Arthursson
* @author Ulrik Sandberg
*/
public class PersonDaoImplIntegrationTest extends

View File

@@ -20,7 +20,7 @@ import org.springframework.ldap.samples.article.dao.TraditionalPersonDaoImpl;
/**
* Integration tests for the TraditionalPersonDaoImpl class.
*
* @author Mattias Hellborg Arthurssonrthursson
* @author Mattias Hellborg Arthursson
* @author Ulrik Sandberg
*/
public class TraditionalPersonDaoImplIntegrationTest