protected final void doDelete(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
RequestContext rctx = new RequestContext(req, resp);
try {
JsonBean bean = handleDeleteRequest(rctx);
if (bean != null) {
sendSuccessResponse(rctx, bean);
}
} catch (Exception ex) {
LOG.error("Exception in DELETE " + rctx.getPath(), ex);