More information


de.spieleck.pcs.action.base
Class DefaultAction

java.lang.Object
  |
  +--de.spieleck.pcs.action.base.DefaultAction
All Implemented Interfaces:
Action

public class DefaultAction
extends java.lang.Object
implements Action

This is the DefaultAction


Constructor Summary
DefaultAction()
           
 
Method Summary
 ActionResult perform(java.util.Hashtable parameters)
          performs the Action, actually just creates a simple ActionResult with the following XML structure:
"".
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultAction

public DefaultAction()
Method Detail

perform

public ActionResult perform(java.util.Hashtable parameters)
                     throws ActionException
performs the Action, actually just creates a simple ActionResult with the following XML structure:
"". What will be done with this XML is delegated to the stylesheet connected to pcs.base.default
Specified by:
perform in interface Action
Parameters:
parameters - a Hashtable for information needed to perform the Action
Returns:
an instance of ActionResult as result of the Action
Throws:
ActionException - if an exception occurrs during processing

More information