Uses of Class
com.liangjian.web.common.entity.response.ResultObject
-
Packages that use ResultObject Package Description com.liangjian.web.common.controller com.liangjian.web.common.entity.response -
-
Uses of ResultObject in com.liangjian.web.common.controller
Methods in com.liangjian.web.common.controller that return ResultObject Modifier and Type Method Description ResultObject<?>
RestfulCrudController. deleteModelById(javax.servlet.http.HttpServletResponse response, String model, String id)
ResultObject<?>
RestfulCrudController. getSingleModel(javax.servlet.http.HttpServletResponse response, String model, String id)
ResultObject<?>
RestfulCrudController. saveModel(javax.servlet.http.HttpServletResponse response, String model, String jsonStr)
ResultObject<?>
RestfulCrudController. updateModel(javax.servlet.http.HttpServletResponse response, String model, String jsonStr)
-
Uses of ResultObject in com.liangjian.web.common.entity.response
Methods in com.liangjian.web.common.entity.response that return ResultObject Modifier and Type Method Description static <T> ResultObject<T>
ResultObject. error()
static <T> ResultObject<T>
ResultObject. error(String msg)
static <T> ResultObject<T>
ResultObject. success()
static <T> ResultObject<T>
ResultObject. success(String msg, T data)
static <T> ResultObject<T>
ResultObject. success(T data)
-