Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.ScientificCommission


        return listScientificComission(mapping, actionForm, request, response);
    }

    @Atomic
    public void addScientificCommissionFromExecutionDegree(ExecutionDegree executionDegree, Person person) {
        new ScientificCommission(executionDegree, person);
    }
View Full Code Here


        return mapping.findForward("list-scientific-comission");
    }

    public ActionForward removeScientificCommission(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        ScientificCommission scientificCommission = getDomainObject(request, "commissionID");
        removeScientificCommissionFromExecutionDegree(scientificCommission, scientificCommission.getExecutionDegree());
        return listScientificComission(mapping, actionForm, request, response);
    }
View Full Code Here

public class AddScientificCommission {

    protected void run(String executionDegreeId, Person person) {
        ExecutionDegree execution = FenixFramework.getDomainObject(executionDegreeId);

        new ScientificCommission(execution, person);
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.ScientificCommission

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.