Search in sources :

Example 6 with FormulaResourceLinks

use of com.remswork.project.alice.resource.links.FormulaResourceLinks in project classify-system by anverliedoit.

the class FormulaResource method getFormulaList.

@GET
public Response getFormulaList() {
    try {
        List<Formula> formulaList;
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        if (teacherId != 0)
            formulaList = formulaService.getFormulaListByTeacherId(teacherId);
        else
            formulaList = formulaService.getFormulaList();
        for (Formula formula : formulaList) {
            formula.addLink(resourceLinks.self(formula.getId()));
            if (formula.getTeacher() != null)
                formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
            if (formula.getSubject() != null)
                formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        }
        GenericEntity<List<Formula>> entity = new GenericEntity<List<Formula>>(formulaList) {
        };
        return Response.status(Response.Status.OK).entity(entity).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : Formula(com.remswork.project.alice.model.Formula) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) FormulaResourceLinks(com.remswork.project.alice.resource.links.FormulaResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks) List(java.util.List)

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)6 Message (com.remswork.project.alice.model.support.Message)6 FormulaResourceLinks (com.remswork.project.alice.resource.links.FormulaResourceLinks)6 SubjectResourceLinks (com.remswork.project.alice.resource.links.SubjectResourceLinks)6 TeacherResourceLinks (com.remswork.project.alice.resource.links.TeacherResourceLinks)6 Formula (com.remswork.project.alice.model.Formula)5 List (java.util.List)1