@Override
 @Transactional(readOnly = true)
 public List<Collection> getStoppedCollections(
     Integer start, Integer limit, String terms, String sortColumn, String sortDirection)
     throws Exception {
   return collectionRepository.getStoppedCollections(
       start, limit, terms, sortColumn, sortDirection);
 }