KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > interceptor > QueryFormatInterceptor


1 /*
2  * Copyright 23/04/2005 - Vicinity - www.vicinity.com All rights reserveds
3  */

4 package org.javabb.interceptor;
5
6 import com.opensymphony.xwork.ActionInvocation;
7 import com.opensymphony.xwork.interceptor.Interceptor;
8
9
10 /**
11  *
12  * @author Marcos Silva Pereira - marcos.pereira@vicinity.com
13  *
14  * @since 23/04/2005
15  *
16  * @version $Id$
17  */

18 public class QueryFormatInterceptor implements Interceptor {
19
20
21     /**
22      * @see com.opensymphony.xwork.interceptor.Interceptor#destroy()
23      */

24     public void destroy() {
25
26         // TODO Auto-generated method stub
27

28     }
29
30     /**
31      * @see com.opensymphony.xwork.interceptor.Interceptor#init()
32      */

33     public void init() {
34
35         // TODO Auto-generated method stub
36

37     }
38
39     /**
40      * @see com.opensymphony.xwork.interceptor.Interceptor#intercept(com.opensymphony.xwork.ActionInvocation)
41      */

42     public String JavaDoc intercept( ActionInvocation arg0 ) throws Exception JavaDoc {
43
44         // TODO Auto-generated method stub
45
return null;
46     }
47
48 }
49
Popular Tags