Add missing @Override annotations in AppServer.TestMappedLoginService

Change-Id: Ia728f1d033ecdf96b22945bc1ae38e5cb11064dd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2017-04-09 23:37:04 +02:00
parent b3cc05d886
commit fc24c5e18d
1 changed files with 2 additions and 0 deletions

View File

@ -185,10 +185,12 @@ protected void loadUsers() throws IOException {
putUser(username, new Password(password), new String[] { role });
}
@Override
protected String[] loadRoleInfo(KnownUser user) {
return null;
}
@Override
protected KnownUser loadUserInfo(String usrname) {
return null;
}