@Override
 public UserStory getStoryById(long storyId) {
   return cm.getJdbcTemplate()
       .queryForObject(
           String.format("select * from %s where id = ?", TABLE),
           new Object[] {storyId},
           factory.getFullStoryRowMapper());
 }