[DS-2729] Ensure SiteService extends DSpaceObjectService

This commit is contained in:
KevinVdV
2015-08-28 12:55:44 +02:00
parent fbca4716a4
commit 2467f43ec7
14 changed files with 132 additions and 39 deletions

View File

@@ -224,6 +224,11 @@ public class EPersonServiceImpl extends DSpaceObjectServiceImpl<EPerson> impleme
"eperson_id=" + ePerson.getID()));
}
@Override
public int getSupportsTypeConstant() {
return Constants.EPERSON;
}
@Override
public void setPassword(EPerson ePerson, String password) {
PasswordHash hash = new PasswordHash(password);