return mapping.findForward("intro");
}
@Override
protected void setStartInformation(ActionForm form, HttpServletRequest request, HttpServletResponse response) {
final StandaloneIndividualCandidacyProcessBean bean = new StandaloneIndividualCandidacyProcessBean();
bean.setCandidacyProcess(getParentProcess(request));
/*
* 06/05/2009 - Due to Public Candidacies, a candidacy created in admin
* office is external So we dont require ChoosePersonBean because a
* Person will not be associated or created at individual candidacy
* creation stage. Instead we bind with an empty PersonBean.
*
* bean.setChoosePersonBean(new ChoosePersonBean());
*/
bean.setPersonBean(new PersonBean());
bean.setChoosePersonBean(new ChoosePersonBean());
/*
* 06/05/2009 - Also we mark the bean as an external candidacy.
*/
bean.setInternalPersonCandidacy(Boolean.FALSE);
request.setAttribute(getIndividualCandidacyProcessBeanName(), bean);
}