Updated Spring Data GemFire Reference Documentation, updating author information and added 'LIKE' operator details to the 'Executing OQL Queries' section.

This commit is contained in:
John Blum
2014-01-17 22:17:31 -08:00
parent cd8b1b24ca
commit 5cbe2b6260
4 changed files with 33 additions and 13 deletions

View File

@@ -13,22 +13,27 @@
<author>
<firstname>Costin</firstname>
<surname>Leau</surname>
<affiliation>SpringSource, a division of VMware</affiliation>
<affiliation>SpringSource, a division of Pivotal</affiliation>
</author>
<author>
<author>
<firstname>David</firstname>
<surname>Turanski</surname>
<affiliation>SpringSource, a division of Pivotal</affiliation>
</author>
<author>
<firstname>John</firstname>
<surname>Blum</surname>
<affiliation>SpringSource, a division of Pivotal</affiliation>
</author>
<author>
<firstname>Oliver</firstname>
<surname>Gierke</surname>
<affiliation>SpringSource, a division of VMware</affiliation>
</author>
<author>
<firstname>David</firstname>
<surname>Turanski</surname>
<affiliation>SpringSource, a division of VMware</affiliation>
<affiliation>SpringSource, a division of Pivotal</affiliation>
</author>
<author>
<firstname>Lyndon</firstname>
<surname>Adams</surname>
<affiliation>VMware</affiliation>
<affiliation>Pivotal</affiliation>
</author>
</authorgroup>
@@ -87,4 +92,4 @@
<title>Appendices</title>
<xi:include href="appendix/appendix-schema.xml"/>
</part>
</book>
</book>

View File

@@ -187,6 +187,15 @@ public class Person { … }</programlisting>
<entry><code>x.firstname = $1</code></entry>
</row>
<row>
<entry><literal>Like</literal></entry>
<entry><methodname>findByFirstnameLike(String
name)</methodname></entry>
<entry><code>x.firstname LIKE $1</code></entry>
</row>
<row>
<entry><literal>Not</literal></entry>

View File

@@ -57,17 +57,22 @@ def customizePom(pom, gradleProject) {
developer {
id = 'dturanski'
name = 'David Turanski'
email = 'dturanski@vmware.com'
email = 'dturanski@gopivotal.com'
}
developer {
id = 'jblum'
name = 'John Blum'
email = 'jblum@gopivotal.com'
}
developer {
id = 'ogierke'
name = 'Oliver Gierke'
email = 'ogierke@vmware.com'
email = 'ogierke@gopivotal.com'
}
developer {
id = 'ladams'
name = 'Lyndon Adams'
email = 'ladams@vmware.com'
email = 'ladams@gopivotal.com'
}
}
}

View File

@@ -30,6 +30,7 @@ import org.springframework.data.repository.query.parser.Part;
/**
*
* @author Oliver Gierke
* @author John Blum
*/
@SuppressWarnings("unused")
public class PredicatesUnitTests {