use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResource method deleteExamById.
@DELETE
@Path("{examId}")
public Response deleteExamById(@PathParam("examId") long id) {
try {
ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Exam exam = examService.deleteExamById(id);
exam.addLink(resourceLinks.self(exam.getId()));
if (exam.get_class() != null)
exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
return Response.status(Response.Status.OK).entity(exam).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();
}
}
use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResource method getExamList.
@GET
public Response getExamList() {
try {
List<Exam> examList;
ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
examList = examService.getExamListByClassId(classId, termId);
else if (classId != 0)
examList = examService.getExamListByClassId(classId);
else if (studentId != 0 && termId != 0)
examList = examService.getExamListByStudentId(studentId, termId);
else if (studentId != 0)
examList = examService.getExamListByStudentId(studentId);
else
examList = examService.getExamList();
for (Exam exam : examList) {
exam.addLink(resourceLinks.self(exam.getId()));
if (exam.get_class() != null)
exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
}
GenericEntity<List<Exam>> entity = new GenericEntity<List<Exam>>(examList) {
};
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();
}
}
use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResultResource method getExamResult.
@GET
public Response getExamResult(@PathParam("examId") long examId) {
try {
ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
ExamResult result = examService.getExamResultByExamAndStudentId(examId, 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();
}
}
use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResultResource method updateExamResult.
@PUT
public Response updateExamResult(@PathParam("examId") long examId, @QueryParam("score") int score) {
try {
ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
ExamResult result = examService.updateExamResultByExamAndStudentId(score, examId, 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();
}
}
use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResultResource method addExamResult.
@POST
public Response addExamResult(@QueryParam("score") int score, @PathParam("examId") long examId) {
try {
ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
ExamResult result = examService.addExamResult(score, examId, 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();
}
}
Aggregations