use of com.remswork.project.alice.model.Schedule in project classify-system by anverliedoit.
the class ScheduleServiceImpl method addSchedule.
@Override
public Schedule addSchedule(Schedule schedule) throws ScheduleException {
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(schedule));
if (response.getStatus() == 201) {
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());
}
}
use of com.remswork.project.alice.model.Schedule in project classify-system by anverliedoit.
the class ScheduleServiceImpl method getScheduleListByTeacherId.
@Override
public Set<Schedule> getScheduleListByTeacherId(long teacherId) throws ScheduleException {
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.queryParam("teacherId", teacherId).request().get();
if (response.getStatus() == 200) {
return (Set<Schedule>) response.readEntity(new GenericType<Set<Schedule>>() {
});
} else if (response.getStatus() == 404) {
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());
}
}
use of com.remswork.project.alice.model.Schedule in project classify-system by anverliedoit.
the class ScheduleServiceImpl method getScheduleList.
@Override
public List<Schedule> getScheduleList() throws ScheduleException {
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<Schedule>) response.readEntity(new GenericType<List<Schedule>>() {
});
} else if (response.getStatus() == 404) {
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());
}
}
use of com.remswork.project.alice.model.Schedule in project classify-system by anverliedoit.
the class ScheduleServiceImpl method getScheduleById.
@Override
public Schedule getScheduleById(long id) 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());
Response response = target.request().get();
if (response.getStatus() == 200) {
return (Schedule) response.readEntity(Schedule.class);
} else if (response.getStatus() == 404) {
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());
}
}
use of com.remswork.project.alice.model.Schedule in project classify-system by anverliedoit.
the class ScheduleServiceImpl method deleteScheduleById.
@Override
public Schedule deleteScheduleById(long id) 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.delete();
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