public static Intent getIntent(Context context, NYTimesStory story) {
   Intent intent = new Intent(context, DetailsActivity.class);
   intent.putExtra(KEY_STORY_ID, story.getUrl());
   return intent;
 }
 public void showStory(NYTimesStory story) {
   toolbar.setTitle(story.getTitle());
   detailsView.setText(story.getStoryAbstract());
   dateView.setText(story.getPublishedDate());
 }