use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class QuizResource method updateQuizById.
@PUT
@Path("{quizId}")
public Response updateQuizById(@PathParam("quizId") long id, Quiz newQuiz) {
try {
QuizResourceLinks resourceLinks = new QuizResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Quiz quiz;
if (termId > 0)
quiz = quizService.updateQuizById(id, newQuiz, classId, termId);
else
quiz = quizService.updateQuizById(id, newQuiz, classId);
quiz.addLink(resourceLinks.self(quiz.getId()));
if (quiz.get_class() != null)
quiz.get_class().addLink(classResourceLinks.self(quiz.get_class().getId()));
return Response.status(Response.Status.OK).entity(quiz).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 QuizResultResource method getQuizResult.
@GET
public Response getQuizResult(@PathParam("quizId") long quizId) {
try {
QuizResultResourceLinks resultResourceLinks = new QuizResultResourceLinks(uriInfo);
QuizResult result = quizService.getQuizResultByQuizAndStudentId(quizId, 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 QuizResultResource method addQuizResult.
@POST
public Response addQuizResult(@QueryParam("score") int score, @PathParam("quizId") long quizId) {
try {
QuizResultResourceLinks resultResourceLinks = new QuizResultResourceLinks(uriInfo);
QuizResult result = quizService.addQuizResult(score, quizId, 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 QuizResultResource method updateQuizResult.
@PUT
public Response updateQuizResult(@PathParam("quizId") long quizId, @QueryParam("score") int score) {
try {
QuizResultResourceLinks resultResourceLinks = new QuizResultResourceLinks(uriInfo);
QuizResult result = quizService.updateQuizResultByQuizAndStudentId(score, quizId, 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 RecitationResource method updateRecitationById.
@PUT
@Path("{recitationId}")
public Response updateRecitationById(@PathParam("recitationId") long id, Recitation newRecitation) {
try {
RecitationResourceLinks resourceLinks = new RecitationResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Recitation recitation;
if (termId > 0)
recitation = recitationService.updateRecitationById(id, newRecitation, classId, termId);
else
recitation = recitationService.updateRecitationById(id, newRecitation, classId);
recitation.addLink(resourceLinks.self(recitation.getId()));
if (recitation.get_class() != null)
recitation.get_class().addLink(classResourceLinks.self(recitation.get_class().getId()));
return Response.status(Response.Status.OK).entity(recitation).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();
}
}
Aggregations