Search in sources :

Example 21 with Message

use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.

the class ClassScheduleListResource method getScheduleById.

@GET
@Path("{scheduleId}")
public Response getScheduleById(@PathParam("classId") long classId, @PathParam("scheduleId") long id) {
    try {
        ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
        Schedule schedule = classService.getScheduleById(classId, id);
        schedule.addLink(resourceLinks.self(classId, id));
        return Response.status(Response.Status.OK).entity(schedule).build();
    } catch (ClassException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : ClassScheduleListResourceLinks(com.remswork.project.alice.resource.links.ClassScheduleListResourceLinks) Message(com.remswork.project.alice.model.support.Message) Schedule(com.remswork.project.alice.model.Schedule) ClassException(com.remswork.project.alice.exception.ClassException)

Example 22 with Message

use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.

the class ClassScheduleListResource method addScheduleById.

@POST
public Response addScheduleById(@PathParam("classId") long classId) {
    try {
        ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
        if (scheduleId == 0)
            throw new ClassDaoException("Query param : scheduleId is required");
        Schedule schedule = classService.addScheduleById(classId, scheduleId);
        schedule.addLink(resourceLinks.self(classId, scheduleId));
        return Response.status(Response.Status.OK).entity(schedule).build();
    } catch (ClassException | ClassDaoException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : ClassScheduleListResourceLinks(com.remswork.project.alice.resource.links.ClassScheduleListResourceLinks) ClassDaoException(com.remswork.project.alice.dao.exception.ClassDaoException) Message(com.remswork.project.alice.model.support.Message) Schedule(com.remswork.project.alice.model.Schedule) ClassException(com.remswork.project.alice.exception.ClassException)

Example 23 with Message

use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.

the class ClassScheduleListResource method deleteScheduleById.

@DELETE
@Path("{scheduleId}")
public Response deleteScheduleById(@PathParam("classId") long classId, @PathParam("scheduleId") long id) {
    try {
        ClassScheduleListResourceLinks resourceLinks = new ClassScheduleListResourceLinks(uriInfo);
        Schedule schedule = classService.deleteScheduleById(classId, id);
        schedule.addLink(resourceLinks.self(classId, id));
        return Response.status(Response.Status.OK).entity(schedule).build();
    } catch (ClassException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : ClassScheduleListResourceLinks(com.remswork.project.alice.resource.links.ClassScheduleListResourceLinks) Message(com.remswork.project.alice.model.support.Message) Schedule(com.remswork.project.alice.model.Schedule) ClassException(com.remswork.project.alice.exception.ClassException)

Example 24 with Message

use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.

the class ClassStudentListResource method getStudentById.

@GET
@Path("{studentId}")
public Response getStudentById(@PathParam("classId") long classId, @PathParam("studentId") long id) {
    try {
        ClassStudentListResourceLinks resourceLinks = new ClassStudentListResourceLinks(uriInfo);
        Student student = classService.getStudentById(classId, id);
        student.addLink(resourceLinks.self(classId, id));
        return Response.status(Response.Status.OK).entity(student).build();
    } catch (ClassException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : ClassStudentListResourceLinks(com.remswork.project.alice.resource.links.ClassStudentListResourceLinks) Message(com.remswork.project.alice.model.support.Message) ClassException(com.remswork.project.alice.exception.ClassException) Student(com.remswork.project.alice.model.Student)

Example 25 with Message

use of com.remswork.project.alice.model.support.Message in project classify-system by anverliedoit.

the class ClassStudentListResource method getStudentList.

@GET
public Response getStudentList(@PathParam("classId") long classId) {
    try {
        ClassStudentListResourceLinks resourceLinks = new ClassStudentListResourceLinks(uriInfo);
        Set<Student> studentSet = classService.getStudentList(classId);
        for (Student student : studentSet) student.addLink(resourceLinks.self(classId, student.getId()));
        GenericEntity<Set<Student>> entity = new GenericEntity<Set<Student>>(studentSet) {
        };
        return Response.status(Response.Status.OK).entity(entity).build();
    } catch (ClassException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : ClassStudentListResourceLinks(com.remswork.project.alice.resource.links.ClassStudentListResourceLinks) Set(java.util.Set) Message(com.remswork.project.alice.model.support.Message) GenericEntity(javax.ws.rs.core.GenericEntity) ClassException(com.remswork.project.alice.exception.ClassException) Student(com.remswork.project.alice.model.Student)

Aggregations

Message (com.remswork.project.alice.model.support.Message)336 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)178 Gson (com.google.gson.Gson)155 IOException (java.io.IOException)155 InputStream (java.io.InputStream)155 HttpURLConnection (java.net.HttpURLConnection)155 URL (java.net.URL)155 ExecutionException (java.util.concurrent.ExecutionException)155 AsyncTask (android.os.AsyncTask)153 Client (javax.ws.rs.client.Client)58 WebTarget (javax.ws.rs.client.WebTarget)58 Response (javax.ws.rs.core.Response)58 JSONArray (org.json.JSONArray)49 JSONException (org.json.JSONException)49 ClassException (com.remswork.project.alice.exception.ClassException)46 ArrayList (java.util.ArrayList)46 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)40 OutputStreamWriter (java.io.OutputStreamWriter)36 BufferedWriter (java.io.BufferedWriter)34 OutputStream (java.io.OutputStream)34