public class CustomAfterInterceptor1 implements AfterInterceptor<ExampleInterceptorAction>
{
public void afterExecute(ExampleInterceptorAction actionBean, ActionContext context, Exception e)
{
ExampleInterceptorAction action = (ExampleInterceptorAction) actionBean;
action.setMessage(action.getCurrentMessage() + "CustomAfterInterceptor1,");
}