public List getAllMovieRatings() throws ServerFailureException {
   try {
     return pm.getAllMovieRatings();
   } catch (MapException e) {
     throw new ServerFailureException(e.getMessage());
   }
 }