use of com.remswork.project.alice.web.service.exception.ScheduleServiceException in project classify-system by anverliedoit.
the class ScheduleServiceImpl method updateScheduleById.
@Override
public Schedule updateScheduleById(long id, Schedule newSchedule) throws ScheduleException {
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(newSchedule));
if (response.getStatus() == 200) {
return (Schedule) response.readEntity(Schedule.class);
} else if (response.getStatus() == 400) {
Message message = (Message) response.readEntity(Message.class);
throw new ScheduleServiceException(message.getMessage());
} else
throw new ScheduleServiceException("The request might invalid or server is down");
} catch (ScheduleServiceException e) {
throw new ScheduleException(e.getMessage());
}
}
Aggregations