/**
  * This is where the bulk of our work is done. This function is called in a background thread
  * and should generate a new set of data to be published by the loader.
  */
 @Override
 public String loadInBackground() {
   Log.d(TAG, "Load in Background");
   // Done!
   return notesService.getAllNotesOfKey(bibleText.getKey());
 }