Search in sources :

Example 1 with Section

use of com.remswork.project.alice.model.Section in project classify-system by anverliedoit.

the class SectionResource method getSectionById.

@GET
@Path("{sectionId}")
public Response getSectionById(@PathParam("sectionId") long id) {
    try {
        SectionResourceLinks resourceLinks = new SectionResourceLinks(uriInfo);
        DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
        Section section = sectionService.getSectionById(id);
        section.addLink(resourceLinks.self(id));
        if (section.getDepartment() != null)
            section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
        return Response.status(Response.Status.OK).entity(section).build();
    } catch (SectionException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : Message(com.remswork.project.alice.model.support.Message) DepartmentResourceLinks(com.remswork.project.alice.resource.links.DepartmentResourceLinks) SectionException(com.remswork.project.alice.exception.SectionException) Section(com.remswork.project.alice.model.Section) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 2 with Section

use of com.remswork.project.alice.model.Section in project classify-system by anverliedoit.

the class SectionResource method deleteSectionById.

@DELETE
@Path("{sectionId}")
public Response deleteSectionById(@PathParam("sectionId") long id) {
    try {
        SectionResourceLinks resourceLinks = new SectionResourceLinks(uriInfo);
        DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
        Section section = sectionService.deleteSectionById(id);
        section.addLink(resourceLinks.self(id));
        if (section.getDepartment() != null)
            section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
        return Response.status(Response.Status.OK).entity(section).build();
    } catch (SectionException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : Message(com.remswork.project.alice.model.support.Message) DepartmentResourceLinks(com.remswork.project.alice.resource.links.DepartmentResourceLinks) SectionException(com.remswork.project.alice.exception.SectionException) Section(com.remswork.project.alice.model.Section) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 3 with Section

use of com.remswork.project.alice.model.Section in project classify-system by anverliedoit.

the class SectionResource method updateSectionById.

@PUT
@Path("{sectionId}")
public Response updateSectionById(@PathParam("sectionId") long id, Section newSection) {
    try {
        SectionResourceLinks resourceLinks = new SectionResourceLinks(uriInfo);
        DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
        Section section = sectionService.updateSectionById(id, newSection, departmentId);
        section.addLink(resourceLinks.self(id));
        if (section.getDepartment() != null)
            section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
        return Response.status(Response.Status.OK).entity(section).build();
    } catch (SectionException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : Message(com.remswork.project.alice.model.support.Message) DepartmentResourceLinks(com.remswork.project.alice.resource.links.DepartmentResourceLinks) SectionException(com.remswork.project.alice.exception.SectionException) Section(com.remswork.project.alice.model.Section) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 4 with Section

use of com.remswork.project.alice.model.Section in project classify-system by anverliedoit.

the class SectionResource method getSectionList.

@GET
public Response getSectionList() {
    try {
        SectionResourceLinks resourceLinks = new SectionResourceLinks(uriInfo);
        DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
        List<Section> sectionList = sectionService.getSectionList();
        for (Section section : sectionList) {
            section.addLink(resourceLinks.self(section.getId()));
            if (section.getDepartment() != null)
                section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
        }
        GenericEntity<List<Section>> entity = new GenericEntity<List<Section>>(sectionList) {
        };
        return Response.status(Response.Status.OK).entity(entity).build();
    } catch (SectionException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : Message(com.remswork.project.alice.model.support.Message) DepartmentResourceLinks(com.remswork.project.alice.resource.links.DepartmentResourceLinks) List(java.util.List) SectionException(com.remswork.project.alice.exception.SectionException) Section(com.remswork.project.alice.model.Section) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 5 with Section

use of com.remswork.project.alice.model.Section in project classify-system by anverliedoit.

the class StudentResource method getStudentList.

@GET
public Response getStudentList() {
    try {
        StudentResourceLinks resourceLinks = new StudentResourceLinks(uriInfo);
        SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
        DepartmentResourceLinks departmentResourceLinks = new DepartmentResourceLinks(uriInfo);
        List<Student> studentList = studentService.getStudentList();
        if (sn == null) {
            for (Student student : studentList) {
                student.addLink(resourceLinks.self(student.getId()));
                if (student.getSection() != null) {
                    Section section = student.getSection();
                    section.addLink(sectionResourceLinks.self(section.getId()));
                    if (section.getDepartment() != null)
                        section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
                }
            }
            GenericEntity<List<Student>> entity = new GenericEntity<List<Student>>(studentList) {
            };
            return Response.status(Response.Status.OK).entity(entity).build();
        } else {
            Student student = studentService.getStudentBySN(sn);
            if (student.getSection() != null) {
                Section section = student.getSection();
                section.addLink(sectionResourceLinks.self(section.getId()));
                if (section.getDepartment() != null) {
                    section.getDepartment().addLink(departmentResourceLinks.self(section.getDepartment().getId()));
                }
            }
            return Response.status(Response.Status.OK).entity(student).build();
        }
    } catch (StudentException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : StudentException(com.remswork.project.alice.exception.StudentException) Message(com.remswork.project.alice.model.support.Message) StudentResourceLinks(com.remswork.project.alice.resource.links.StudentResourceLinks) DepartmentResourceLinks(com.remswork.project.alice.resource.links.DepartmentResourceLinks) List(java.util.List) Student(com.remswork.project.alice.model.Student) Section(com.remswork.project.alice.model.Section) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Aggregations

Section (com.remswork.project.alice.model.Section)27 SectionException (com.remswork.project.alice.exception.SectionException)20 Message (com.remswork.project.alice.model.support.Message)15 DepartmentResourceLinks (com.remswork.project.alice.resource.links.DepartmentResourceLinks)9 SectionResourceLinks (com.remswork.project.alice.resource.links.SectionResourceLinks)9 StudentException (com.remswork.project.alice.exception.StudentException)8 Student (com.remswork.project.alice.model.Student)8 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)7 DepartmentException (com.remswork.project.alice.exception.DepartmentException)5 Department (com.remswork.project.alice.model.Department)5 StudentResourceLinks (com.remswork.project.alice.resource.links.StudentResourceLinks)5 SectionServiceException (com.remswork.project.alice.web.service.exception.SectionServiceException)5 Client (javax.ws.rs.client.Client)5 WebTarget (javax.ws.rs.client.WebTarget)5 Response (javax.ws.rs.core.Response)5 Session (org.hibernate.Session)5 SectionDaoException (com.remswork.project.alice.dao.exception.SectionDaoException)4 ArrayList (java.util.ArrayList)4 List (java.util.List)3 ClientBuilder (javax.ws.rs.client.ClientBuilder)3