use of com.remswork.project.alice.resource.links.SubjectResourceLinks in project classify-system by anverliedoit.
the class SubjectResource method getSubjectById.
@GET
@Path("{subjectId}")
public Response getSubjectById(@PathParam("subjectId") long id) {
try {
SubjectResourceLinks resourceLinks = new SubjectResourceLinks(uriInfo);
Subject subject = subjectService.getSubjectById(id);
subject.addLink(resourceLinks.self(id));
return Response.status(Response.Status.OK).entity(subject).build();
} catch (SubjectException 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.resource.links.SubjectResourceLinks in project classify-system by anverliedoit.
the class SubjectResource method updateSubjectById.
@PUT
@Path("{subjectId}")
public Response updateSubjectById(@PathParam("subjectId") long id, Subject newSubject) {
try {
SubjectResourceLinks resourceLinks = new SubjectResourceLinks(uriInfo);
Subject subject = subjectService.updateSubjectById(id, newSubject);
subject.addLink(resourceLinks.self(id));
return Response.status(Response.Status.OK).entity(subject).build();
} catch (SubjectException 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.resource.links.SubjectResourceLinks in project classify-system by anverliedoit.
the class SubjectResource method getSubjectList.
@GET
public Response getSubjectList(@QueryParam("teacherId") long teacherId, @QueryParam("studentId") long studentId) {
try {
List<Subject> subjectList;
SubjectResourceLinks resourceLinks = new SubjectResourceLinks(uriInfo);
if (teacherId != 0)
subjectList = subjectService.getSubjectListByTeacherId(teacherId);
else if (studentId != 0)
subjectList = subjectService.getSubjectListByStudentId(studentId);
else
subjectList = subjectService.getSubjectList();
for (Subject subject : subjectList) subject.addLink(resourceLinks.self(subject.getId()));
GenericEntity<List<Subject>> entity = new GenericEntity<List<Subject>>(subjectList) {
};
return Response.status(Response.Status.OK).entity(entity).build();
} catch (SubjectException 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.resource.links.SubjectResourceLinks in project classify-system by anverliedoit.
the class ClassResource method deleteClassById.
@DELETE
@Path("{classId}")
public Response deleteClassById(@PathParam("classId") long id) {
try {
ClassResourceLinks resourceLinks = new ClassResourceLinks(uriInfo);
TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
Class _class = classService.deleteClassById(id);
_class.addLink(resourceLinks.self(id));
_class.addLink(resourceLinks.schedule(id));
_class.addLink(resourceLinks.student(id));
if (_class.getTeacher() != null)
_class.getTeacher().addLink(teacherResourceLinks.self(_class.getTeacher().getId()));
if (_class.getSubject() != null)
_class.getSubject().addLink(subjectResourceLinks.self(_class.getSubject().getId()));
if (_class.getSection() != null)
_class.getSection().addLink(sectionResourceLinks.self(_class.getSection().getId()));
return Response.status(Response.Status.OK).entity(_class).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.resource.links.SubjectResourceLinks in project classify-system by anverliedoit.
the class FormulaResource method updateFormulaById.
@PUT
@Path("{formulaId}")
public Response updateFormulaById(@PathParam("formulaId") long id, Formula newFormula) {
try {
FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
Formula formula = formulaService.updateFormulaById(id, newFormula, subjectId, teacherId, termId);
formula.addLink(resourceLinks.self(formula.getId()));
if (formula.getTeacher() != null)
formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
if (formula.getSubject() != null)
formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
return Response.status(Response.Status.OK).entity(formula).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