net.jspcontrols.dialogs.actions
Interface ISelectAction

All Known Subinterfaces:
IDialogAction
All Known Implementing Classes:
DialogAction, SelectAction

public interface ISelectAction

This interface must be implemented by an action class that wants to use SelectAction as utility dispatcher.

Since:
1.24
Author:
Michael Jouravlev

Method Summary
 org.apache.struts.action.ActionForward cancelled(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is called when <html:cancel> button was activate in the browser.
 org.apache.struts.action.ActionForward unspecified(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is called when browser event is not recognized.
 

Method Detail

unspecified

public org.apache.struts.action.ActionForward unspecified(org.apache.struts.action.ActionMapping mapping,
                                                          org.apache.struts.action.ActionForm form,
                                                          javax.servlet.http.HttpServletRequest request,
                                                          javax.servlet.http.HttpServletResponse response)
                                                   throws java.lang.Exception
This method is called when browser event is not recognized. Usually this happens if event does not start with "DIALOG-EVENT" prefix.

Throws:
java.lang.Exception

cancelled

public org.apache.struts.action.ActionForward cancelled(org.apache.struts.action.ActionMapping mapping,
                                                        org.apache.struts.action.ActionForm form,
                                                        javax.servlet.http.HttpServletRequest request,
                                                        javax.servlet.http.HttpServletResponse response)
                                                 throws java.lang.Exception
This method is called when <html:cancel> button was activate in the browser. The corresponding action form is not populated.

Throws:
java.lang.Exception