use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.
the class AssignmentResource method getAssignmentById.
@GET
@Path("{assignmentId}")
public Response getAssignmentById(@PathParam("assignmentId") long id) {
try {
AssignmentResourceLinks resourceLinks = new AssignmentResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Assignment assignment = assignmentService.getAssignmentById(id);
assignment.addLink(resourceLinks.self(id));
if (assignment.get_class() != null)
assignment.get_class().addLink(classResourceLinks.self(assignment.get_class().getId()));
return Response.status(Response.Status.OK).entity(assignment).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.model.support.Message 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();
}
}
use of com.remswork.project.alice.model.support.Message 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();
}
}
use of com.remswork.project.alice.model.support.Message 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();
}
}
use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.
the class AttendanceResource method getAttendanceList.
@GET
public Response getAttendanceList() {
try {
List<Attendance> attendanceList;
AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
attendanceList = attendanceService.getAttendanceListByClassId(classId, termId);
else if (classId != 0)
attendanceList = attendanceService.getAttendanceListByClassId(classId);
else if (studentId != 0 && termId != 0)
attendanceList = attendanceService.getAttendanceListByStudentId(studentId, termId);
else if (studentId != 0)
attendanceList = attendanceService.getAttendanceListByStudentId(studentId);
else
attendanceList = attendanceService.getAttendanceList();
for (Attendance attendance : attendanceList) {
attendance.addLink(resourceLinks.self(attendance.getId()));
if (attendance.get_class() != null)
attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
}
GenericEntity<List<Attendance>> entity = new GenericEntity<List<Attendance>>(attendanceList) {
};
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