org.openxava.actions
Interface IMultipleForwardAction

All Superinterfaces:
IAction
All Known Implementing Classes:
JasperMultipleReportBaseAction

public interface IMultipleForwardAction
extends IAction

It allows to do several forwards to several URIs. The URIs can be a resources inside the same application, such as a jsp or servlet, or an absolute URL in the internet.

Since:
4.3
Author:
Oscar Caro

Method Summary
 java.lang.String[] getForwardURIs()
          The URIs to go.
 
Methods inherited from interface org.openxava.actions.IAction
execute, getErrors, getMessages, setEnvironment, setErrors, setMessages
 

Method Detail

getForwardURIs

java.lang.String[] getForwardURIs()
The URIs to go.

If it starts with "http://" or "http://" the action will forward to the absolute URL in internet, if it starts with "javascript:" the corresponding code will executed by the browser, otherwise it will forward to a resource inside this application.

Since:
4.3