public ActionForward reorder(final ActionMapping mapping, final ActionForm form, final HttpServletRequest request,
final HttpServletResponse response) throws FenixActionException, FenixServiceException {
final Student student = getUserView(request).getPerson().getStudent();
final OutboundMobilityCandidacy candidacy = getDomainObject(request, "candidacyOid");
final int index = Integer.parseInt((String) getFromRequest(request, "index"));
candidacy.reorder(index + 1);
return prepare(mapping, request, student);
}
public ActionForward selectOption(final ActionMapping mapping, final ActionForm form, final HttpServletRequest request,
final HttpServletResponse response) throws FenixActionException, FenixServiceException {