Examples of Over23IndividualCandidacyResultBean


Examples of org.fenixedu.academic.domain.candidacyProcess.over23.Over23IndividualCandidacyResultBean

    private void setInformationToIntroduceCandidacyResults(HttpServletRequest request) {
        final Over23CandidacyProcess process = getProcess(request);
        final List<Over23IndividualCandidacyResultBean> beans = new ArrayList<Over23IndividualCandidacyResultBean>();
        for (final Over23IndividualCandidacyProcess candidacy : process.getOver23IndividualCandidaciesThatCanBeSendToJury()) {
            beans.add(new Over23IndividualCandidacyResultBean(candidacy));
        }
        request.setAttribute("over23IndividualCandidacyResultBeans", beans);
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.candidacyProcess.over23.Over23IndividualCandidacyResultBean

        return listProcessAllowedActivities(mapping, form, request, response);
    }

    public ActionForward prepareExecuteIntroduceCandidacyResult(ActionMapping mapping, ActionForm actionForm,
            HttpServletRequest request, HttpServletResponse response) {
        request.setAttribute("over23IndividualCandidacyResultBean", new Over23IndividualCandidacyResultBean(getProcess(request)));
        return mapping.findForward("introduce-candidacy-result");
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.candidacyProcess.over23.Over23IndividualCandidacyResultBean

public class Over23IndividualCandidacySelectedDegreesProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        final Over23IndividualCandidacyResultBean bean = (Over23IndividualCandidacyResultBean) source;
        return bean.getCandidacyProcess().getSelectedDegreesSortedByOrder();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.