Package org.apache.geronimo.tomcat.interceptor

Examples of org.apache.geronimo.tomcat.interceptor.BeforeAfter


        }
    }

    private void afterDispatch(GeronimoStandardContext webContext, ServletRequest request, ServletResponse response) {

        BeforeAfter beforeAfter = webContext.getBeforeAfter();
        if (beforeAfter != null) {
            Stack stack = (Stack) currentContext.get();
            Object context[] = (Object[]) stack.pop();

            beforeAfter.after(context, request, response, BeforeAfter.DISPATCHED);

            TomcatGeronimoRealm.setRequestWrapperName((String) context[webContext.getContextCount()]);
        }
    }
View Full Code Here


                }
            }
        }

        int index = 0;
        BeforeAfter interceptor = new InstanceContextBeforeAfter(null,
                index++,
                index++, ctx.getUnshareableResources(),
                ctx.getApplicationManagedSecurityResources(),
                ctx.getTrackedConnectionAssociator());
View Full Code Here

TOP

Related Classes of org.apache.geronimo.tomcat.interceptor.BeforeAfter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.