Overwrite getName usage in applicable services

- Added two useful log statements
This commit is contained in:
Jens Vannerum
2022-05-24 14:31:59 +02:00
parent 4e04dfd8d5
commit 177d4424db
3 changed files with 12 additions and 0 deletions

View File

@@ -569,4 +569,9 @@ public class EPersonServiceImpl extends DSpaceObjectServiceImpl<EPerson> impleme
public int countTotal(Context context) throws SQLException {
return ePersonDAO.countRows(context);
}
@Override
public String getName(EPerson dso) {
return dso.getName();
}
}