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-09 12:38:00 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5a3b61c178acaba1e0ffd734da4c72798d0f300d
5a3b61c1
1 parent
eca60e2f
Préimplémentation pour tests
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
src/main/java/org/legrog/web/account/AccountService.java
src/main/java/org/legrog/web/account/AccountServiceDefault.java
src/main/java/org/legrog/web/account/AccountService.java
View file @
5a3b61c
...
...
@@ -29,4 +29,6 @@ public interface AccountService {
* @return Account List
*/
List
<
Account
>
convertIndexedAccountsIntoAccounts
(
List
<
IndexedAccount
>
indexedAccounts
);
public
int
reindexAllAccounts
();
}
...
...
src/main/java/org/legrog/web/account/AccountServiceDefault.java
View file @
5a3b61c
...
...
@@ -62,4 +62,9 @@ public class AccountServiceDefault implements AccountService {
return
new
ArrayList
<>();
}
@Override
public
int
reindexAllAccounts
()
{
return
0
;
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment