use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.
the class ExamResultResource method deleteExamResult.
@DELETE
public Response deleteExamResult(@PathParam("examId") long examId) {
try {
ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
ExamResult result = examService.deleteExamResultByExamAndStudentId(examId, 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.exception.GradingFactorException in project classify-system by anverliedoit.
the class FormulaResource method getFormulaById.
@GET
@Path("{formulaId}")
public Response getFormulaById(@PathParam("formulaId") long id) {
try {
FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
Formula formula = formulaService.getFormulaById(id);
formula.addLink(resourceLinks.self(id));
if (formula.getSubject() != null)
formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
if (formula.getTeacher() != null)
formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
return Response.status(Response.Status.OK).entity(formula).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.exception.GradingFactorException in project classify-system by anverliedoit.
the class ProjectResource method updateProjectById.
@PUT
@Path("{projectId}")
public Response updateProjectById(@PathParam("projectId") long id, Project newProject) {
try {
ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Project project;
if (termId > 0)
project = projectService.updateProjectById(id, newProject, classId, termId);
else
project = projectService.updateProjectById(id, newProject, classId);
project.addLink(resourceLinks.self(project.getId()));
if (project.get_class() != null)
project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
return Response.status(Response.Status.OK).entity(project).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.exception.GradingFactorException in project classify-system by anverliedoit.
the class ProjectResource method getProjectById.
@GET
@Path("{projectId}")
public Response getProjectById(@PathParam("projectId") long id) {
try {
ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Project project = projectService.getProjectById(id);
project.addLink(resourceLinks.self(id));
if (project.get_class() != null)
project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
return Response.status(Response.Status.OK).entity(project).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.exception.GradingFactorException in project classify-system by anverliedoit.
the class ProjectResultResource method deleteProjectResult.
@DELETE
public Response deleteProjectResult(@PathParam("projectId") long projectId) {
try {
ProjectResultResourceLinks resultResourceLinks = new ProjectResultResourceLinks(uriInfo);
ProjectResult result = projectService.deleteProjectResultByProjectAndStudentId(projectId, 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();
}
}
Aggregations