mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-14 05:23:14 +00:00
[DS-3003] Ensure all service & DAO implementations have a protected constructor
This commit is contained in:
@@ -54,6 +54,11 @@ public class EPersonServiceImpl extends DSpaceObjectServiceImpl<EPerson> impleme
|
||||
@Autowired(required = true)
|
||||
protected SubscribeService subscribeService;
|
||||
|
||||
protected EPersonServiceImpl()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
public EPerson find(Context context, UUID id) throws SQLException {
|
||||
return ePersonDAO.findByID(context, EPerson.class, id);
|
||||
|
Reference in New Issue
Block a user