use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.
the class DepartmentServiceImpl method getDepartmentById.
@Override
public Department getDepartmentById(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());
Response response = target.request().get();
if (response.getStatus() == 200) {
return (Department) response.readEntity(Department.class);
} else if (response.getStatus() == 404) {
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());
}
}
use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.
the class DepartmentServiceImpl method getDepartmentList.
@Override
public List<Department> getDepartmentList() 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());
Response response = target.request().get();
if (response.getStatus() == 200) {
return (List<Department>) response.readEntity(new GenericType<List<Department>>() {
});
} else if (response.getStatus() == 404) {
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());
}
}
use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.
the class DepartmentController method getTeacher.
@RequestMapping(value = "get", method = RequestMethod.POST)
public String getTeacher(@RequestParam("query") String query, ModelMap modelMap) {
try {
List<Department> departmentList = new ArrayList<>();
Department department = null;
if (!query.trim().isEmpty()) {
try {
long id = Long.parseLong(query.trim());
department = departmentService.getDepartmentById(id);
} catch (NumberFormatException e) {
e.printStackTrace();
department = null;
} catch (DepartmentException e) {
e.printStackTrace();
department = null;
}
if (department != null)
departmentList.add(department);
else {
for (Department d : departmentService.getDepartmentList()) {
if (d.getName().equals(query.trim())) {
departmentList.add(d);
continue;
}
if (d.getDescription().equals(query.trim())) {
departmentList.add(d);
continue;
}
}
}
}
if (departmentList.size() < 1) {
departmentList = departmentService.getDepartmentList();
modelMap.put("responseMessage", "No result found.");
} else {
modelMap.put("responseMessage", departmentList.size() + " Result found.");
}
modelMap.put("departmentList", departmentList);
return "department-table";
} catch (DepartmentException e) {
e.printStackTrace();
return "error";
}
}
use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.
the class DepartmentController method addDepartment.
@RequestMapping(value = "add", method = RequestMethod.POST)
public String addDepartment(@RequestParam("name") String name, @RequestParam("description") String description, ModelMap modelMap) {
try {
Department department = new Department(name, description);
departmentService.addDepartment(department);
List<Department> departmentList = departmentService.getDepartmentList();
modelMap.put("departmentList", departmentList);
return "department";
} catch (DepartmentException e) {
e.printStackTrace();
return "error";
}
}
use of com.remswork.project.alice.exception.DepartmentException in project classify-system by anverliedoit.
the class SectionController method updateSectionById.
@RequestMapping(value = "update", method = RequestMethod.POST)
public String updateSectionById(@RequestParam("id") long id, @RequestParam("name") String name, @RequestParam("departmentId") long departmentId, ModelMap modelMap) {
try {
Section newSection = new Section(name);
try {
sectionService.updateSectionById(id, newSection, departmentId);
} catch (SectionException e) {
try {
e.printStackTrace();
departmentId = 0;
sectionService.updateSectionById(id, newSection, departmentId);
} catch (SectionException e2) {
e2.printStackTrace();
}
}
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";
}
}
Aggregations