Search in sources :

Example 16 with DepartmentException

use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.

the class SectionController method addSection.

@RequestMapping(value = "add", method = RequestMethod.POST)
public String addSection(@RequestParam("name") String name, @RequestParam("departmentId") long departmentId, ModelMap modelMap) {
    try {
        Section section = new Section(name);
        sectionService.addSection(section, departmentId);
        List<Section> sectionList = sectionService.getSectionList();
        List<Department> departmentList = departmentService.getDepartmentList();
        modelMap.put("sectionList", sectionList);
        modelMap.put("departmentList", departmentList);
        return "section";
    } catch (SectionException | DepartmentException e) {
        e.printStackTrace();
        return "error";
    }
}
Also used : Department(com.remswork.project.alice.model.Department) DepartmentException(com.remswork.project.alice.exception.DepartmentException) SectionException(com.remswork.project.alice.exception.SectionException) Section(com.remswork.project.alice.model.Section) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 17 with DepartmentException

use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.

the class DepartmentServiceImpl method addDepartment.

@Override
public Department addDepartment(Department department) throws DepartmentException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Builder builder = target.request();
        builder.accept("application/json");
        Response response = builder.post(Entity.json(department));
        if (response.getStatus() == 201) {
            return (Department) response.readEntity(Department.class);
        } else if (response.getStatus() == 400) {
            Message message = (Message) response.readEntity(Message.class);
            throw new DepartmentServiceException(message.getMessage());
        } else
            throw new DepartmentServiceException("The request might invalid or server is down");
    } catch (DepartmentServiceException e) {
        throw new DepartmentException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) Department(com.remswork.project.alice.model.Department) Message(com.remswork.project.alice.model.support.Message) DepartmentException(com.remswork.project.alice.exception.DepartmentException) ClientBuilder(javax.ws.rs.client.ClientBuilder) Builder(javax.ws.rs.client.Invocation.Builder) DepartmentServiceException(com.remswork.project.alice.web.service.exception.DepartmentServiceException) WebTarget(javax.ws.rs.client.WebTarget) Client(javax.ws.rs.client.Client)

Example 18 with DepartmentException

use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.

the class DepartmentServiceImpl method updateDepartmentById.

@Override
public Department updateDepartmentById(long id, Department newDepartment) throws DepartmentException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        uri.append("/");
        uri.append(id);
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Builder builder = target.request();
        builder.accept("application/json");
        Response response = builder.put(Entity.json(newDepartment));
        if (response.getStatus() == 200) {
            return (Department) response.readEntity(Department.class);
        } else if (response.getStatus() == 400) {
            Message message = (Message) response.readEntity(Message.class);
            throw new DepartmentServiceException(message.getMessage());
        } else
            throw new DepartmentServiceException("The request might invalid or server is down");
    } catch (DepartmentServiceException e) {
        throw new DepartmentException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) Department(com.remswork.project.alice.model.Department) Message(com.remswork.project.alice.model.support.Message) DepartmentException(com.remswork.project.alice.exception.DepartmentException) ClientBuilder(javax.ws.rs.client.ClientBuilder) Builder(javax.ws.rs.client.Invocation.Builder) DepartmentServiceException(com.remswork.project.alice.web.service.exception.DepartmentServiceException) WebTarget(javax.ws.rs.client.WebTarget) Client(javax.ws.rs.client.Client)

Example 19 with DepartmentException

use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.

the class DepartmentServiceImpl method deleteDepartmentById.

@Override
public Department deleteDepartmentById(long id) throws DepartmentException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        uri.append("/");
        uri.append(id);
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Builder builder = target.request();
        builder.accept("application/json");
        Response response = builder.delete();
        if (response.getStatus() == 200) {
            return (Department) response.readEntity(Department.class);
        } else if (response.getStatus() == 400) {
            Message message = (Message) response.readEntity(Message.class);
            throw new DepartmentServiceException(message.getMessage());
        } else
            throw new DepartmentServiceException("The request might invalid or server is down");
    } catch (DepartmentServiceException e) {
        throw new DepartmentException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) Department(com.remswork.project.alice.model.Department) Message(com.remswork.project.alice.model.support.Message) DepartmentException(com.remswork.project.alice.exception.DepartmentException) ClientBuilder(javax.ws.rs.client.ClientBuilder) Builder(javax.ws.rs.client.Invocation.Builder) DepartmentServiceException(com.remswork.project.alice.web.service.exception.DepartmentServiceException) WebTarget(javax.ws.rs.client.WebTarget) Client(javax.ws.rs.client.Client)

Example 20 with DepartmentException

use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.

the class DepartmentController method updateDepartmentById.

@RequestMapping(value = "update", method = RequestMethod.POST)
public String updateDepartmentById(@RequestParam("id") long id, @RequestParam("name") String name, @RequestParam("description") String description, ModelMap modelMap) {
    try {
        Department newDepartment = new Department(name, description);
        try {
            departmentService.updateDepartmentById(id, newDepartment);
        } catch (DepartmentException e) {
            e.printStackTrace();
        }
        List<Department> departmentList = departmentService.getDepartmentList();
        modelMap.put("departmentList", departmentList);
        return "department";
    } catch (DepartmentException e) {
        e.printStackTrace();
        return "error";
    }
}
Also used : Department(com.remswork.project.alice.model.Department) DepartmentException(com.remswork.project.alice.exception.DepartmentException) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

DepartmentException (com.remswork.project.alice.exception.DepartmentException)30 Department (com.remswork.project.alice.model.Department)22 Message (com.remswork.project.alice.model.support.Message)15 Session (org.hibernate.Session)9 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)6 AsyncTask (android.os.AsyncTask)5 Gson (com.google.gson.Gson)5 DepartmentDaoException (com.remswork.project.alice.dao.exception.DepartmentDaoException)5 SectionException (com.remswork.project.alice.exception.SectionException)5 Section (com.remswork.project.alice.model.Section)5 DepartmentResourceLinks (com.remswork.project.alice.resource.links.DepartmentResourceLinks)5 DepartmentServiceException (com.remswork.project.alice.web.service.exception.DepartmentServiceException)5 IOException (java.io.IOException)5 InputStream (java.io.InputStream)5 HttpURLConnection (java.net.HttpURLConnection)5 URL (java.net.URL)5 ExecutionException (java.util.concurrent.ExecutionException)5 Client (javax.ws.rs.client.Client)5 WebTarget (javax.ws.rs.client.WebTarget)5 Response (javax.ws.rs.core.Response)5