Interface ServiceRSE
-
- All Superinterfaces:
org.fusesource.restygwt.client.RestService
@Path("/mobile/rse") public interface ServiceRSE extends org.fusesource.restygwt.client.RestService
- Author:
- svu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
getStatus(org.fusesource.restygwt.client.MethodCallback<StatusDTO> callback)
void
updateStatus(String textStatus, org.fusesource.restygwt.client.TextCallback callback)
-
-
-
Method Detail
-
updateStatus
@POST @Produces("text/plain") @Path("status/{textStatus}") void updateStatus(@PathParam("textStatus") String textStatus, org.fusesource.restygwt.client.TextCallback callback)
-
getStatus
@GET @Produces("application/json") @Path("status") void getStatus(org.fusesource.restygwt.client.MethodCallback<StatusDTO> callback)
-
-