Showing
2 changed files
with
7 additions
and
0 deletions
... | @@ -29,4 +29,6 @@ public interface AccountService { | ... | @@ -29,4 +29,6 @@ public interface AccountService { |
29 | * @return Account List | 29 | * @return Account List |
30 | */ | 30 | */ |
31 | List<Account> convertIndexedAccountsIntoAccounts(List<IndexedAccount> indexedAccounts); | 31 | List<Account> convertIndexedAccountsIntoAccounts(List<IndexedAccount> indexedAccounts); |
32 | + | ||
33 | + public int reindexAllAccounts(); | ||
32 | } | 34 | } | ... | ... |
... | @@ -62,4 +62,9 @@ public class AccountServiceDefault implements AccountService { | ... | @@ -62,4 +62,9 @@ public class AccountServiceDefault implements AccountService { |
62 | 62 | ||
63 | return new ArrayList<>(); | 63 | return new ArrayList<>(); |
64 | } | 64 | } |
65 | + | ||
66 | + @Override | ||
67 | + public int reindexAllAccounts() { | ||
68 | + return 0; | ||
69 | + } | ||
65 | } | 70 | } |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment