クラス | 説明 |
---|---|
Action |
An Action is an adapter between the contents of an
incoming HTTP request and the corresponding business logic that should be
executed to process this request.
|
ActionErrors |
A class that encapsulates the error messages being reported by the
validate() method of an ActionForm . |
ActionForm |
An ActionForm is a JavaBean optionally associated with
one or more
ActionMappings . |
ActionForward |
An ActionForward represents a destination to which the
controller, RequestProcessor, might be directed to perform a
RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a
result of processing activities of an Action class.
|
ActionMapping |
An ActionMapping represents the information that the
controller,
RequestProcessor , knows about the mapping of a
particular request to an instance of a particular Action
class. |
ActionMappingTool |
StrutsのActionMappingをNablarch上で再現するためのオブジェクト生成するクラス。
|
ActionMessage |
An encapsulation of an individual message returned by the
validate method of an ActionForm , consisting of a
message key (to be used to look up message text in an appropriate message
resources database) plus up to four placeholder objects that can be used
for parametric replacement in the message text. |
ActionMessages |
ActionMessagesとNablarch messageの変換をするクラス。
|