@Override
public DSpaceObject resolve(String handle) throws HandleResolverException {
try {
return HandleManager.resolveToObject(contextService.getContext(), handle);
} catch (ContextServiceException e) {
throw new HandleResolverException(e);
} catch (SQLException e) {
throw new HandleResolverException(e);
}
}