use of com.remswork.project.alice.web.service.exception.DepartmentServiceException 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.web.service.exception.DepartmentServiceException 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.web.service.exception.DepartmentServiceException 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());
}
}
use of com.remswork.project.alice.web.service.exception.DepartmentServiceException 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());
}
}
use of com.remswork.project.alice.web.service.exception.DepartmentServiceException 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());
}
}
Aggregations