Package org.fenixedu.academic.domain.studentCurricularPlan

Examples of org.fenixedu.academic.domain.studentCurricularPlan.StudentCurricularPlanState


        if (isPresent(studentNumberString) && isPresent(degreeTypeString) && isPresent(studentCurricularPlanStateString)
                && isPresent(degreeCurricularPlanIdString) && isPresent(startDateString)) {

            final Integer studentNumber = new Integer(studentNumberString);
            final DegreeType degreeType = DegreeType.valueOf(degreeTypeString);
            final StudentCurricularPlanState studentCurricularPlanState =
                    StudentCurricularPlanState.valueOf(studentCurricularPlanStateString);
            final Date startDate = simpleDateFormat.parse(startDateString);

            final User userView = Authenticate.getUser();
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.studentCurricularPlan.StudentCurricularPlanState

Copyright © 2018 www.massapicom. 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.