/**
  * Controller action for going to the previous action in the flow.
  *
  * @return the struts forward of the previous action in the flow.
  */
 @Action("enterPreviousStep")
 public String enterPreviousStep() {
   checkFlowExists();
   RegistrationFlowStep previousStep = flow.stepBackward();
   return previousStep.name();
 }