Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.ExecutionCourse.responsibleFors()


public class ReadExecutionCourseResponsiblesIds {

    protected List<String> run(String executionCourseId) throws FenixServiceException {
        ExecutionCourse executionCourse = FenixFramework.getDomainObject(executionCourseId);

        List<Professorship> responsibles = executionCourse.responsibleFors();

        List<String> responsibleIDs = new ArrayList<String>();
        if (responsibles != null) {
            for (Professorship responsibleFor : responsibles) {
                responsibleIDs.add(responsibleFor.getTeacher().getExternalId());
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.