This is an automated email from the ASF dual-hosted git repository.
tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/deltaspike.git
The following commit(s) were added to refs/heads/master by this push:
new 42865b1 -DELTASPIKE-1371: Fixed documentation Data Module
new b6c4d89 Merge pull request #85 from Daniel-Dos/DELTASPIKE-1371
42865b1 is described below
commit 42865b1c42284d20c1712e5debc18635b37ecb07
Author: Daniel Dias <[email protected]>
AuthorDate: Tue Mar 12 10:59:30 2019 -0300
-DELTASPIKE-1371: Fixed documentation Data Module
---
documentation/src/main/asciidoc/data.adoc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/documentation/src/main/asciidoc/data.adoc
b/documentation/src/main/asciidoc/data.adoc
index 50407d2..5ea0ed5 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -1290,7 +1290,7 @@ therefore supports joins as shown in the sample below:
[source,java]
-------------------------------------------------------------------------------------
@Repository
-public abstract class PersonRepository extends
AbstractEntityRepository<Person, Long>
+public abstract class PersonRepository extends
AbstractFullEntityRepository<Person, Long>
{
public List<Person> findByCompanyName(String companyName)
@@ -1312,7 +1312,7 @@ are slighly simpler as seen in the next sample:
[source,java]
-------------------------------------------------------------------------------------
-public abstract class PersonRepository extends
AbstractEntityRepository<Person, Long>
+public abstract class PersonRepository extends
AbstractFullEntityRepository<Person, Long>
{
public Person findBySSN(String ssn)
@@ -1335,7 +1335,7 @@ disjunctions.
[source,java]
-------------------------------------------------------------------------------------
-public abstract class PersonRepository extends
AbstractEntityRepository<Person, Long>
+public abstract class PersonRepository extends
AbstractFullEntityRepository<Person, Long>
{
public List<Person> findAdults()
@@ -1363,7 +1363,7 @@ The Criteria interface allows this with the selection
method:
[source,java]
------------------------------------------------------------------------------------------------------
-public abstract class PersonRepository extends
AbstractEntityRepository<Person, Long>
+public abstract class PersonRepository extends
AbstractFullEntityRepository<Person, Long>
{
public Statistics ageStatsFor(Segment segment)