use of com.willshex.blogwt.server.api.search.action.SearchAllActionHandler in project blogwt by billy1380.
the class SearchJsonServlet method processAction.
@Override
protected String processAction(String action, JsonObject request) {
String output = "null";
if ("SearchAll".equals(action)) {
SearchAllRequest input = new SearchAllRequest();
input.fromJson(request);
output = new SearchAllActionHandler().handle(input).toString();
}
return output;
}
Aggregations