You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by da...@apache.org on 2015/06/11 19:12:50 UTC

deltaspike git commit: DELTASPIKE-924 Adjust The AbstractEntityRepository Class secion.

Repository: deltaspike
Updated Branches:
  refs/heads/master 13b3f97be -> 000de66ca


DELTASPIKE-924 Adjust The AbstractEntityRepository Class secion.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/000de66c
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/000de66c
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/000de66c

Branch: refs/heads/master
Commit: 000de66ca3ebc311c42d7f59881b3762fe9905a7
Parents: 13b3f97
Author: Daniel Cunha (soro) <da...@apache.org>
Authored: Thu Jun 11 14:12:08 2015 -0300
Committer: Daniel Cunha (soro) <da...@apache.org>
Committed: Thu Jun 11 14:12:08 2015 -0300

----------------------------------------------------------------------
 documentation/src/main/asciidoc/data.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/000de66c/documentation/src/main/asciidoc/data.adoc
----------------------------------------------------------------------
diff --git a/documentation/src/main/asciidoc/data.adoc b/documentation/src/main/asciidoc/data.adoc
index 57355b1..eb0ed58 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -233,7 +233,7 @@ be implemented in the repository.
 public abstract class PersonRepository extends AbstractEntityRepository<Person, Long>
 {
 
-    public Person findBySSN(String ssn)
+    public List<Person> findBySSN(String ssn)
     {
         return typedQuery("select p from Person p where p.ssn = ?1")
                 .setParameter(1, ssn)