View Javadoc

1   /*
2    * Copyright 2004-2010 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  
17  package org.seasar.cubby.action;
18  
19  import java.lang.annotation.ElementType;
20  import java.lang.annotation.Retention;
21  import java.lang.annotation.RetentionPolicy;
22  import java.lang.annotation.Target;
23  
24  /**
25   * 要求をこの注釈で修飾されたアクションメソッドへ振り分けるための要求パラメータ名を指定します。
26   * <p>
27   * ひとつのフォームに複数のボタンを配置し、それぞれ異なるアクションメソッドを実行させたい場合に使用します。
28   * </p>
29   * 
30   * <pre>
31   * &lt;t:form action=&quot;${contextPath}/todo/save&quot; method=&quot;post&quot; value=&quot;${action}&quot;&gt;
32   * (1) &lt;input type=&quot;submit&quot; value=&quot;登録&quot;/&gt;
33   * (2) &lt;input type=&quot;submit&quot; name=&quot;confirm_back&quot; value=&quot;戻る&quot;/&gt;
34   * &lt;/t:form&gt;
35   * </pre>
36   * 
37   * <pre>
38   * public TodoAction extends Action {
39   * 
40   *   // (1)に対応
41   *   public ActionResult save() {
42   *   }
43   * 
44   *   // (2)に対応
45   *   &#064;OnSubmit(&quot;confirm_back&quot;)
46   *   &#064;Path(&quot;save&quot;)
47   * 	 public ActionResult back() {
48   *   }
49   * 
50   * }
51   * </pre>
52   * 
53   * @author baba
54   */
55  @Retention(RetentionPolicy.RUNTIME)
56  @Target( { ElementType.METHOD })
57  public @interface OnSubmit {
58  
59  	/**
60  	 * 要求パラメータ名を返します。
61  	 * 
62  	 * @return 要求パラメータ名
63  	 */
64  	String value();
65  
66  }