public int doAfterBody() throws JspTagException {
HttpServletRequest httpRequest = (HttpServletRequest) pageContext.getRequest();
BodyContent bc = getBodyContent();
String oldBody = bc.getString();
bc.clearBody();
if (httpRequest.getParameter(NOT_PROCESS_PARAMETER) != null) {
boolean b = CompressorSettings.getBoolean(httpRequest.getParameter(NOT_PROCESS_PARAMETER), false);
if (!b)
httpRequest.getSession().setAttribute(NOT_PROCESS_PARAMETER, true);
else httpRequest.getSession().removeAttribute(NOT_PROCESS_PARAMETER);