use of com.remswork.project.alice.exception.ClassException in project classify-system by anverliedoit.
the class ClassScheduleListResource method getScheduleById.
@GET
@Path("{scheduleId}")
public Response getScheduleById(@PathParam("classId") long classId, @PathParam("scheduleId") long id) {
try {
ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
Schedule schedule = classService.getScheduleById(classId, id);
schedule.addLink(resourceLinks.self(classId, id));
return Response.status(Response.Status.OK).entity(schedule).build();
} catch (ClassException 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.ClassException in project classify-system by anverliedoit.
the class ClassScheduleListResource method addScheduleById.
@POST
public Response addScheduleById(@PathParam("classId") long classId) {
try {
ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
if (scheduleId == 0)
throw new ClassDaoException("Query param : scheduleId is required");
Schedule schedule = classService.addScheduleById(classId, scheduleId);
schedule.addLink(resourceLinks.self(classId, scheduleId));
return Response.status(Response.Status.OK).entity(schedule).build();
} catch (ClassException | ClassDaoException 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.ClassException in project classify-system by anverliedoit.
the class ClassScheduleListResource method deleteScheduleById.
@DELETE
@Path("{scheduleId}")
public Response deleteScheduleById(@PathParam("classId") long classId, @PathParam("scheduleId") long id) {
try {
ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
Schedule schedule = classService.deleteScheduleById(classId, id);
schedule.addLink(resourceLinks.self(classId, id));
return Response.status(Response.Status.OK).entity(schedule).build();
} catch (ClassException 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.ClassException in project classify-system by anverliedoit.
the class ClassStudentListResource method getStudentById.
@GET
@Path("{studentId}")
public Response getStudentById(@PathParam("classId") long classId, @PathParam("studentId") long id) {
try {
ClassStudentListResourceLinks resourceLinks = new ClassStudentListResourceLinks(uriInfo);
Student student = classService.getStudentById(classId, id);
student.addLink(resourceLinks.self(classId, id));
return Response.status(Response.Status.OK).entity(student).build();
} catch (ClassException 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.ClassException in project classify-system by anverliedoit.
the class ClassStudentListResource method getStudentList.
@GET
public Response getStudentList(@PathParam("classId") long classId) {
try {
ClassStudentListResourceLinks resourceLinks = new ClassStudentListResourceLinks(uriInfo);
Set<Student> studentSet = classService.getStudentList(classId);
for (Student student : studentSet) student.addLink(resourceLinks.self(classId, student.getId()));
GenericEntity<Set<Student>> entity = new GenericEntity<Set<Student>>(studentSet) {
};
return Response.status(Response.Status.OK).entity(entity).build();
} catch (ClassException e) {
e.printStackTrace();
Message message = new Message(404, "Not Found", e.getMessage());
return Response.status(Response.Status.NOT_FOUND).entity(message).build();
}
}
Aggregations