Examples of StudentStandaloneEnrolmentBean


Examples of org.fenixedu.academic.dto.administrativeOffice.studentEnrolment.StudentStandaloneEnrolmentBean

    }

    private StudentStandaloneEnrolmentBean createStudentStandaloneEnrolmentBean(final StudentCurricularPlan scp,
            final CurricularCourse curricularCourse) {

        final StudentStandaloneEnrolmentBean bean = new StudentStandaloneEnrolmentBean(scp, getCandidacyExecutionInterval());

        bean.setSelectedCurricularCourse(curricularCourse);
        bean.setCurricularRuleLevel(CurricularRuleLevel.STANDALONE_ENROLMENT);

        return bean;
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.administrativeOffice.studentEnrolment.StudentStandaloneEnrolmentBean

public class StudentStandaloneEnrolmentsDA extends NoCourseGroupCurriculumGroupEnrolmentsDA {

    @Override
    protected StudentStandaloneEnrolmentBean createNoCourseGroupEnrolmentBean(final StudentCurricularPlan studentCurricularPlan,
            final ExecutionSemester executionSemester) {
        return new StudentStandaloneEnrolmentBean(studentCurricularPlan, executionSemester);
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.administrativeOffice.studentEnrolment.StudentStandaloneEnrolmentBean

        return super.prepare(mapping, actionForm, request, response);
    }

    private void chooseCurricular(HttpServletRequest request, CurricularRuleLevel level) {

        final StudentStandaloneEnrolmentBean bean = (StudentStandaloneEnrolmentBean) getNoCourseGroupEnrolmentBean();
        bean.setCurricularRuleLevel(level);

        request.setAttribute("enrolmentBean", bean);
        RenderUtils.invalidateViewState();
    }
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.