Interface ServiceFaq
-
- All Superinterfaces:
org.fusesource.restygwt.client.RestService
@Path("/mobile/faq") public interface ServiceFaq extends org.fusesource.restygwt.client.RestService- Author:
- svu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgetAllCategories(String appId, org.fusesource.restygwt.client.MethodCallback<List<CategoryDTO>> callback)voidgetAllQuestions(String appId, org.fusesource.restygwt.client.MethodCallback<List<QuestionDTO>> callback)
-
-
-
Method Detail
-
getAllQuestions
@GET @Path("{appId}/question/all") void getAllQuestions(@PathParam("appId") String appId, org.fusesource.restygwt.client.MethodCallback<List<QuestionDTO>> callback)
-
getAllCategories
@GET @Path("{appId}/category/all") void getAllCategories(@PathParam("appId") String appId, org.fusesource.restygwt.client.MethodCallback<List<CategoryDTO>> callback)
-
-