Uses of Class
org.jaffa.presentation.portlet.FormKey

Packages that use FormKey
org.jaffa.components.finder   
org.jaffa.components.lookup   
org.jaffa.components.maint   
org.jaffa.presentation.portlet   
org.jaffa.presentation.portlet.component   
org.jaffa.presentation.portlet.session.ui   
 

Uses of FormKey in org.jaffa.components.finder
 

Methods in org.jaffa.components.finder that return FormKey
 FormKey FinderComponent2.display()
          If the displayResultsScreen property has not been set or has been set to false, it will return the FormKey for the Criteria screen.
 FormKey FinderComponent2.displayCriteria()
          Invoked the initializeCriteriaScreen() method and then returns the FormKey for the Criteria screen.
 FormKey FinderComponent2.displayResults()
          Invokes the performInquiry() method and then returns the FormKey for the Results screen.
 FormKey FinderComponent2.getCriteriaFormKey()
          Getter for the Criteria screen's FormKey.
 FormKey FinderComponent2.getResultsFormKey()
          Getter for the Results screen's FormKey.
 FormKey FinderAction.do_Close_Clicked()
          Quits the component and returns the FormKey for the calling screen.
 FormKey FinderAction.do_Search_Clicked()
          Invokes the doValidate() method and then the displayResults() method on the component.
 FormKey FinderAction.do_ModifySearch_Clicked()
          Start a new search.
 FormKey FinderAction.do_Refresh_Clicked()
          Re-executes the search, using the same criteria as used before.
 FormKey FinderAction.do_MoreRecords_Clicked()
          This will increment the value of the property MaxRecords.
 FormKey FinderAction.do_refresh()
          Determines the currentFormKey This event is invoked when a user changes the settings of the UserGrid in the Results screen.
 

Uses of FormKey in org.jaffa.components.lookup
 

Methods in org.jaffa.components.lookup that return FormKey
 FormKey LookupComponent2.quitLookup(HttpServletRequest request)
          This will remove the 'lookup' attribute from the request stream.
 FormKey LookupComponent2.performMultiSelectLookup(HttpServletRequest request, MultiSelectLookupEvent event)
          Invokes the rowsSelected() method of the registered IMultiSelectLookupListener objects in the same thread.
 FormKey LookupComponent2.performLookup(HttpServletRequest request, IModelMap selectedRow)
          This will add the 'lookup' attribute on the request stream, with a Map containing the fieldnames (from the targetFields property) and values (from the input selectedRow).
 FormKey LookupComponent2.performLookup(HttpServletRequest request, Map selectedRow)
          This will add the 'lookup' attribute on the request stream, with a Map containing the fieldnames (from the targetFields property) and values (from the input selectedRow).
 FormKey LookupComponent.performLookup(HttpServletRequest request, IModelMap selectedRow)
          Deprecated. This will add the 'lookup' attribute on the request stream, with a Map containing the fieldnames (from the targetFields property) and values (from the input selectedRow).
 FormKey LookupComponent.performLookup(HttpServletRequest request, Map selectedRow)
          Deprecated. This will add the 'lookup' attribute on the request stream, with a Map containing the fieldnames (from the targetFields property) and values (from the input selectedRow).
 FormKey LookupComponent.quitLookup(HttpServletRequest request)
          Deprecated. This will remove the 'lookup' attribute from the request stream.
 FormKey LookupAction.do_Close_Clicked()
          Quits the component and closes the browser window.
 FormKey LookupAction.do_Rows_Clicked(String rowNum)
          Invokes the do_Rows_Select_Clicked() method.
 FormKey LookupAction.do_Rows_Select_Clicked(String rowNum)
          This will add the 'lookup' attribute on the request stream, with a Map containing the fieldnames (from the targetFields property) and values (from the selectedRow).
 FormKey LookupAction.do_MultiSelect_Clicked()
          This will generate the MultiSelectLookupEvent object comprising the DTOs for the selected rows.
 

Uses of FormKey in org.jaffa.components.maint
 

Methods in org.jaffa.components.maint that return FormKey
 FormKey MaintComponent2.determineFormKey()
          Getter for the current screen's FormKey.
 FormKey MaintComponent2.display()
          Based on the mode and input parameters, this will either delete the domain object, or initialize the screen for updates, or bring up a blank screen.
 FormKey MaintAction.do_Cancel_Clicked()
          Quits the component and returns the FormKey for the calling screen.
 FormKey MaintAction.do_Finish_Clicked()
          Invokes the create() or update() method on the component, depending on the mode.
 FormKey MaintAction.do_Save_Clicked()
          Invokes the create() or update() method on the component, depending on the mode.
 FormKey MaintAction.do_Delete_Clicked()
          Invokes the delete() method on the component.
 FormKey MaintAction.do_Refresh_Clicked()
          Invokes the retrieve() method on the component.
 FormKey MaintAction.do_refresh()
          Determines the currentFormKey This event is invoked when a user changes the settings of the UserGrid in the Results screen.
 FormKey MaintAction.do_Next_Clicked()
          This will invoke the prevalidate method on the component if required for the current screen.
 FormKey MaintAction.do_Previous_Clicked()
          It moves to the previous screen
 

Uses of FormKey in org.jaffa.presentation.portlet
 

Methods in org.jaffa.presentation.portlet that return FormKey
 FormKey StartComponentAction.defaultAction()
          Invokes the component passed in the request stream.
 FormKey FormKeyChangeEvent.getNewFormKey()
          Getter for property newFormKey.
static FormKey FormKey.getCloseBrowserFormKey()
          Returns the FormKey that will render the JSP used for closing a browser window.
protected  FormKey ActionBase.defaultAction()
          The default action method which should be overriden by the extending class.
 FormKey ActionBase.do_refresh()
          Determines the currentFormKey, if possible, utilising the NAME field (if defined) and the componentId of the formBase.
 FormKey ActionBase.do_HistoryNav_Clicked(String index)
          This is the handler for the event generated in the historyNav for rendering a previous screen.
protected  FormKey ActionBase.executeEvent(String eventId)
          This method will introspect this class for a suitable handler for the input eventId and invoke it.
protected  FormKey ActionBase.determineCurrentFormKey(FormBase formBase)
          Determines the currentFormKey, if possible, utilising the NAME field (if defined) and the componentId of the formBase.
protected  FormKey ActionBase.processContainerFormKey(FormKey fk)
          Returns the ContainerFormKey, if the component specified by the input FormKey has one defined.
 

Methods in org.jaffa.presentation.portlet with parameters of type FormKey
static void HistoryNav.addFormKeyToHistoryNav(HttpServletRequest request, FormKey fk)
          This will add the input FormKey to the historyNav.
protected  void ActionBase.saveToken(FormKey fk)
          Save a new transaction token in the component.
protected  FormKey ActionBase.processContainerFormKey(FormKey fk)
          Returns the ContainerFormKey, if the component specified by the input FormKey has one defined.
 

Constructors in org.jaffa.presentation.portlet with parameters of type FormKey
FormKeyChangeEvent(Object source, FormKey newFormKey)
          Creates a new instance of FormKeyChangeEvent
 

Uses of FormKey in org.jaffa.presentation.portlet.component
 

Methods in org.jaffa.presentation.portlet.component that return FormKey
 FormKey IComponent.display()
          Returns a FormKey, which has the componentId & the formName to which control should be passed
 FormKey IComponent.quitAndReturnToCallingScreen()
          This should invoke the quit() method, and then return the FormKey for the calling screen.
 FormKey IComponent.getReturnToFormKey()
          Getter for property returnToFormKey.
 FormKey IComponent.getContainerFormKey()
          Getter for property containerFormKey.
abstract  FormKey Component.display()
          Returns a FormKey, which has the componentId & the formName to which control should be passed
 FormKey Component.quitAndReturnToCallingScreen()
          This should invoke the quit() method, and then return the FormKey for the calling screen.
 FormKey Component.getReturnToFormKey()
          Getter for property returnToFormKey.
 FormKey Component.getContainerFormKey()
          Getter for property containerFormKey.
 

Methods in org.jaffa.presentation.portlet.component with parameters of type FormKey
 void IComponent.setReturnToFormKey(FormKey returnToFormKey)
          Setter for property returnToFormKey.
 void IComponent.setContainerFormKey(FormKey containerFormKey)
          Setter for property containerFormKey.
 void Component.setReturnToFormKey(FormKey returnToFormKey)
          Setter for property returnToFormKey.
 void Component.setContainerFormKey(FormKey containerFormKey)
          Setter for property containerFormKey.
 

Uses of FormKey in org.jaffa.presentation.portlet.session.ui
 

Methods in org.jaffa.presentation.portlet.session.ui that return FormKey
 FormKey SessionExplorerComponent.display()
           
 FormKey SessionExplorerComponent.viewComponent(String sessionId)
           
 FormKey SessionExplorerComponent.introspectComponent(String compId)
           
 FormKey SessionExplorerAction.do_Close_Clicked()
           
 FormKey SessionExplorerAction.do_Refresh_Clicked()
           
 FormKey SessionExplorerAction.do_Sessions_Clicked(String rowNum)
          Invokes the do_Sessions_View_Clicked() method.
 FormKey SessionExplorerAction.do_Sessions_View_Clicked(String rowNum)
          Invokes the viewObject() method on the component.
 FormKey ComponentExplorerAction.do_Close_Clicked()
           
 FormKey ComponentExplorerAction.do_Refresh_Clicked()
           
 FormKey ComponentExplorerAction.do_Back_Clicked()
           
 FormKey ComponentExplorerAction.do_ComponentList_Clicked(String rowNum)
          Invokes the do_Sessions_View_Clicked() method.
 FormKey ComponentExplorerAction.do_ComponentList_Introspect_Clicked(String rowNum)
          Invokes the viewObject() method on the component.
 FormKey ComponentDetailsAction.do_Close_Clicked()
           
 FormKey ComponentDetailsAction.do_Refresh_Clicked()
           
 FormKey ComponentDetailsAction.do_Back_Clicked()
           
 



Copyright © 2002-2004 JAFFA Project.