OSDN Git Service

- 文字列のmin/maxエラーのデフォルトエラーメッセージを修正
[ethna/ethna.git] / class / SOAP / Ethna_SOAP_ActionForm.php
1 <?php
2 // vim: foldmethod=marker
3 /**
4  *      Ethna_SOAP_ActionForm.php
5  *
6  *      @author         Masaki Fujimoto <fujimoto@php.net>
7  *      @license        http://www.opensource.org/licenses/bsd-license.php The BSD License
8  *      @package        Ethna
9  *      @version        $Id$
10  */
11
12 // {{{ Ethna_SOAP_ActionForm
13 /**
14  *      SOAP¥Õ¥©¡¼¥à¥¯¥é¥¹
15  *
16  *      @author         Masaki Fujimoto <fujimoto@php.net>
17  *      @access         public
18  *      @package        Ethna
19  */
20 class Ethna_SOAP_ActionForm extends Ethna_ActionForm
21 {
22         /**#@+
23          *      @access private
24          */
25
26         /**     @var    array   °ú¿ôÄêµÁ */
27         var $arg = array();
28
29         /**     @var    array   Ìá¤êÃÍÄêµÁ */
30         var $retval = array();
31
32         /**#@-*/
33
34         /**
35          *      Ethna_SOAP_ActionForm¥¯¥é¥¹¤Î¥³¥ó¥¹¥È¥é¥¯¥¿
36          *
37          *      @access public
38          *      @param  object  Ethna_ActionError       $action_error   ¥¢¥¯¥·¥ç¥ó¥¨¥é¡¼¥ª¥Ö¥¸¥§¥¯¥È
39          */
40         function Ethna_SOAP_ActionForm(&$action_error)
41         {
42                 $this->form =& $this->arg;
43
44                 parent::Ethna_ActionForm($action_error);
45         }
46 }
47 // }}}
48 ?>