Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Direct |
|
| 1.0;1 |
1 | package org.seasar.cubby.action; | |
2 | ||
3 | import javax.servlet.http.HttpServletRequest; | |
4 | import javax.servlet.http.HttpServletResponse; | |
5 | ||
6 | import org.seasar.cubby.controller.ActionContext; | |
7 | ||
8 | /** | |
9 | * アクションメソ?ドから直接レスポンスを返すことを示? {@link ActionResult} です?? | |
10 | * <p> | |
11 | * アクションメソ?ド?戻り?としてこ?インスタンスを指定すると、後続?処?はレスポンスに何も出力しません? | |
12 | * アクションメソ?ド中でレスポンスを?力してください? | |
13 | * </p> | |
14 | * | |
15 | * @author baba | |
16 | */ | |
17 | public class Direct extends AbstractActionResult { | |
18 | ||
19 | /** | |
20 | * インスタンスを生成します?? | |
21 | */ | |
22 | 1 | public Direct() { |
23 | 1 | } |
24 | ||
25 | public void execute(final ActionContext context, | |
26 | final HttpServletRequest request, final HttpServletResponse response) | |
27 | throws Exception { | |
28 | 1 | } |
29 | ||
30 | } |