Search in sources :

Example 1 with AssignmentResult

use of com.remswork.project.alice.model.AssignmentResult in project classify-system by anverliedoit.

the class AssignmentResultResource method addAssignmentResult.

@POST
public Response addAssignmentResult(@QueryParam("score") int score, @PathParam("assignmentId") long assignmentId) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.addAssignmentResult(score, assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).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 : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 2 with AssignmentResult

use of com.remswork.project.alice.model.AssignmentResult in project classify-system by anverliedoit.

the class AssignmentResultResource method updateAssignmentResult.

@PUT
public Response updateAssignmentResult(@PathParam("assignmentId") long assignmentId, @QueryParam("score") int score) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.updateAssignmentResultByAssignmentAndStudentId(score, assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 3 with AssignmentResult

use of com.remswork.project.alice.model.AssignmentResult in project classify-system by anverliedoit.

the class AssignmentResultResource method deleteAssignmentResult.

@DELETE
public Response deleteAssignmentResult(@PathParam("assignmentId") long assignmentId) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.deleteAssignmentResultByAssignmentAndStudentId(assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 4 with AssignmentResult

use of com.remswork.project.alice.model.AssignmentResult in project classify-system by anverliedoit.

the class AssignmentResultResource method getAssignmentResult.

@GET
public Response getAssignmentResult(@PathParam("assignmentId") long assignmentId) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.getAssignmentResultByAssignmentAndStudentId(assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).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 : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)4 AssignmentResult (com.remswork.project.alice.model.AssignmentResult)4 Message (com.remswork.project.alice.model.support.Message)4 AssignmentResultResourceLinks (com.remswork.project.alice.resource.links.AssignmentResultResourceLinks)4