org.apache.beehive.netui.tags.divpanel
Class DivPanelCRI

Object
  extended by AbstractInterceptor
      extended by RequestInterceptor
          extended by AbstractClientRequestInterceptor
              extended by DivPanelCRI
All Implemented Interfaces:
Serializable, Command, Interceptor

public class DivPanelCRI
extends AbstractClientRequestInterceptor
implements Command

See Also:
Serialized Form

Constructor Summary
DivPanelCRI()
           
 
Method Summary
 boolean execute(Context context)
           
 void postRequest(RequestInterceptorContext context, InterceptorChain chain)
          Callback invoked after the request is processed.
 void preRequest(RequestInterceptorContext ctxt, InterceptorChain chain)
          Callback invoked before the request is processed.
 
Methods inherited from class AbstractClientRequestInterceptor
getCommand
 
Methods inherited from class RequestInterceptor
cancelRequest, postInvoke, preInvoke
 
Methods inherited from class AbstractInterceptor
getConfig, init
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DivPanelCRI

public DivPanelCRI()
Method Detail

execute

public boolean execute(Context context)
                throws Exception
Specified by:
execute in interface Command
Throws:
Exception

preRequest

public void preRequest(RequestInterceptorContext ctxt,
                       InterceptorChain chain)
                throws InterceptorException
Description copied from class: RequestInterceptor
Callback invoked before the request is processed. During this method, RequestInterceptor.cancelRequest(org.apache.beehive.netui.pageflow.interceptor.request.RequestInterceptorContext) may be called to cancel further request processing. InterceptorChain.continueChain() is called to invoke the rest of the interceptor chain, anywhere within this method (e.g., at the end, or within a try/finally).

Specified by:
preRequest in class RequestInterceptor
Throws:
InterceptorException

postRequest

public void postRequest(RequestInterceptorContext context,
                        InterceptorChain chain)
                 throws InterceptorException
Description copied from class: RequestInterceptor
Callback invoked after the request is processed. InterceptorChain.continueChain() should be called to invoke the rest of the interceptor chain, anywhere within this method (e.g., at the end, or within a try/finally).

Specified by:
postRequest in class RequestInterceptor
Throws:
InterceptorException