KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > j2biz > blogunity > web > IActionResult


1 /*
2  * $Id: IActionResult.java,v 1.2 2004/12/17 16:51:09 michelson Exp $
3  *
4  * Copyright (c) 2004 j2biz Group, http://www.j2biz.com Koeln / Duesseldorf ,
5  * Germany
6  *
7  * @author Max Kalina
8  *
9  *
10  * This program is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU General Public License as published by the Free Software
12  * Foundation; either version 2 of the License, or (at your option) any later
13  * version.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License along with
21  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  * Place, Suite 330, Boston, MA 02111-1307 USA
23  *
24  */

25
26 package com.j2biz.blogunity.web;
27
28 public interface IActionResult {
29
30     public final int FORWARD = 0;
31
32     public final int REDIRECT = 1;
33
34     public final int INCLUDE = 2;
35
36     public IActionResult NULL_RESULT = null;
37
38     public String JavaDoc getKey();
39
40     public String JavaDoc getValue();
41
42     public String JavaDoc getPath();
43     
44     public int getType();
45
46 }
Popular Tags