@Override
 protected void populateForm(
     AbstractEditorForm actionForm, ActionMapping actionMapping, HttpServletRequest request) {
   ImportStoriesForm form = (ImportStoriesForm) actionForm;
   form.setWorksheetName(getValueFromCookieOrProperties(WORKSHEET_NAME_PROPERTY_KEY, request));
   form.setTitleColumn(getValueFromCookieOrProperties(STORY_TITLE_PROPERTY_KEY, request));
   form.setEndDateColumn(getValueFromCookieOrProperties(ITERATION_END_DATE_PROPERTY_KEY, request));
   form.setPriorityColumn(getValueFromCookieOrProperties(STORY_PRIORITY_PROPERTY_KEY, request));
   form.setEstimateColumn(getValueFromCookieOrProperties(STORY_ESTIMATE_PROPERTY_KEY, request));
   form.setStatusColumn(getValueFromCookieOrProperties(STORY_STATUS_PROPERTY_KEY, request));
   form.setOnlyIncomplete(
       Boolean.valueOf(getValueFromCookieOrProperties(ONLY_INCOMPLETE_COOKIE_NAME, request))
           .booleanValue());
   form.setCompletedStatus(getValueFromCookieOrProperties(COMPLETED_STORY_STATUS_KEY, request));
 }