Examples of FenixCourseStudents


Examples of org.fenixedu.academic.api.beans.publico.FenixCourseStudents

    @Produces(JSON_UTF8)
    @Path("courses/{id}/students")
    @FenixAPIPublic
    public FenixCourseStudents studentsCoursesByOid(@PathParam("id") String oid) {
        ExecutionCourse executionCourse = getDomainObject(oid, ExecutionCourse.class);
        return new FenixCourseStudents(executionCourse);
    }
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.