1 28 29 package com.caucho.widget; 30 31 import java.io.IOException; 32 33 public interface WidgetInterceptor 34 { 35 public void invocation(WidgetInvocation invocation, WidgetInterceptorChain next) 36 throws WidgetException; 37 38 public void request(WidgetRequest request, WidgetInterceptorChain next) 39 throws WidgetException; 40 41 public void response(WidgetResponse response, WidgetInterceptorChain next) 42 throws WidgetException, IOException; 43 44 public void url(WidgetURL url, WidgetInterceptorChain next) 45 throws WidgetException; 46 47 public void destroy(WidgetDestroy destroy, WidgetInterceptorChain next); 48 } 49 50 | Popular Tags |