use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.
the class TeacherResource method getAll.
@GET
public Response getAll() {
try {
TeacherResourceLinks resourceLink = new TeacherResourceLinks(uriInfo);
DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
List<Teacher> teacherList = teacherService.getTeacherList();
for (Teacher teacher : teacherList) {
teacher.addLink(resourceLink.self(teacher.getId()));
if (teacher.getDepartment() != null)
teacher.getDepartment().addLink(departmentResourceLinks.self(teacher.getDepartment().getId()));
}
GenericEntity<List<Teacher>> entity = new GenericEntity<List<Teacher>>(teacherList) {
};
return Response.status(Response.Status.OK).entity(entity).build();
} catch (TeacherException 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 TeacherResource method deleteTeacherById.
@DELETE
@Path("{teacherId}")
public Response deleteTeacherById(@PathParam("teacherId") long id) {
try {
TeacherResourceLinks resourceLink = new TeacherResourceLinks(uriInfo);
DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
Teacher teacher = teacherService.deleteTeacherById(id);
teacher.addLink(resourceLink.self(id));
if (teacher.getDepartment() != null)
teacher.getDepartment().addLink(departmentResourceLinks.self(teacher.getDepartment().getId()));
return Response.status(Response.Status.OK).entity(teacher).build();
} catch (TeacherException 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 TermResource method addTerm.
@POST
public Response addTerm(Term term) {
try {
TermResourceLinks resourceLinks = new TermResourceLinks(uriInfo);
term = termService.addTerm(term);
term.addLink(resourceLinks.self(term.getId()));
return Response.status(Response.Status.CREATED).entity(term).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 TermResource method getTermList.
@GET
public Response getTermList() {
try {
TermResourceLinks resourceLinks = new TermResourceLinks(uriInfo);
List<Term> termList = termService.getTermList();
for (Term term : termList) term.addLink(resourceLinks.self(term.getId()));
GenericEntity<List<Term>> entity = new GenericEntity<List<Term>>(termList) {
};
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.model.support.Message in project classify-system by anverliedoit.
the class TermResource method updateTermById.
@PUT
@Path("{termId}")
public Response updateTermById(@PathParam("termId") long id, Term newTerm) {
try {
TermResourceLinks resourceLinks = new TermResourceLinks(uriInfo);
Term term = termService.updateTermById(id, newTerm);
term.addLink(resourceLinks.self(id));
return Response.status(Response.Status.OK).entity(term).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