DATALDAP-182 - Wording changes.

Replace potentially insensitive language with more neutral language.

Original pull request: #19.
This commit is contained in:
Jay Bryant
2020-06-25 14:54:27 -05:00
committed by Jens Schauder
parent e453cbbaa3
commit fb8f16793e

View File

@@ -152,7 +152,7 @@ The sample creates an application context with Spring's unit test support, which
[[ldap.repositories.queries]]
== Query Methods
Most of the data access operations you usually trigger on a repository result in a query being executed against the LDAP directory. Defining such a query is a matter of declaring a method on the repository interface, as the following example shows:
Most of the data access operations you usually trigger on a repository result in a query being run against the LDAP directory. Defining such a query is a matter of declaring a method on the repository interface, as the following example shows:
.PersonRepository with query methods
====
@@ -229,7 +229,7 @@ The following table provides samples of the keywords that you can use with query
Basic QueryDSL support is included in Spring LDAP. This support includes the following:
* An Annotation Processor, `LdapAnnotationProcessor`, for generating QueryDSL classes based on Spring LDAP ODM annotations. See https://docs.spring.io/spring-ldap/docs/{springLdapVersion}/reference/#odm[Object-Directory Mapping] for more information on the ODM annotations.
* A Query implementation, `QueryDslLdapQuery`, for building and executing QueryDSL queries in code.
* A Query implementation, `QueryDslLdapQuery`, for building and running QueryDSL queries in code.
* Spring Data repository support for QueryDSL predicates. `QueryDslPredicateExecutor` includes a number of additional methods with appropriate parameters. You can extend this interface (along with `LdapRepository`) to include this support in your repository.
[[ldap.repositories.misc]]