Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-03-06 12:56:27 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
71dd3a0e1d59a718244963ed48e59444806c9536
71dd3a0e
1 parent
af74cf2d
Documentation
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
src/main/java/org/legrog/entities/AccountRepository.java
src/main/java/org/legrog/entities/AccountRepository.java
View file @
71dd3a0
...
...
@@ -5,5 +5,10 @@ import org.springframework.data.jpa.repository.JpaRepository;
import
java.util.List
;
public
interface
AccountRepository
extends
JpaRepository
<
Account
,
Integer
>
{
/**
*
* @param integers list of Ids for the Accounts we're looking for
* @return Accounts looked for
*/
List
<
Account
>
findByUserIdIn
(
List
<
Integer
>
integers
);
}
...
...
Please
register
or
login
to post a comment