use of com.remswork.project.alice.model.Quiz in project classify-system by anverliedoit.
the class QuizAdapter method onBindViewHolder.
@Override
public void onBindViewHolder(QuizViewHolder holder, int position) {
Quiz quiz = quizList.get(position);
holder.setView(quiz, position);
}
use of com.remswork.project.alice.model.Quiz in project classify-system by anverliedoit.
the class QuizAdapterF method onBindViewHolder.
@Override
public void onBindViewHolder(QuizViewHolder holder, int position) {
Quiz quiz = quizList.get(position);
holder.setView(quiz, position);
}
use of com.remswork.project.alice.model.Quiz in project classify-system by anverliedoit.
the class QuizResource method getQuizList.
@GET
public Response getQuizList() {
try {
List<Quiz> quizList;
QuizResourceLinks resourceLinks = new QuizResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
quizList = quizService.getQuizListByClassId(classId, termId);
else if (classId != 0)
quizList = quizService.getQuizListByClassId(classId);
else if (studentId != 0 && termId != 0)
quizList = quizService.getQuizListByStudentId(studentId, termId);
else if (studentId != 0)
quizList = quizService.getQuizListByStudentId(studentId);
else
quizList = quizService.getQuizList();
for (Quiz quiz : quizList) {
quiz.addLink(resourceLinks.self(quiz.getId()));
if (quiz.get_class() != null)
quiz.get_class().addLink(classResourceLinks.self(quiz.get_class().getId()));
}
GenericEntity<List<Quiz>> entity = new GenericEntity<List<Quiz>>(quizList) {
};
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();
}
}
Aggregations