Uses of Class
com.ibm.workflow.portlet.client.ResponsePage

Packages that use ResponsePage
com.ibm.workflow.portlet.client   
com.ibm.workflow.portlet.sample   
 

Uses of ResponsePage in com.ibm.workflow.portlet.client
 

Methods in com.ibm.workflow.portlet.client that return ResponsePage
 ResponsePage BuiltinHandler.render(java.lang.String command, RequestContext ctx)
           
 ResponsePage CommandHandler.execute(java.lang.String command, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is called every time a custom command is to be executed.
 ResponsePage DefaultViewer.errorResponse(RequestContext context)
          Creates the page that is shown in case of an error.
 ResponsePage DefaultViewer.logonResponse(RequestContext context)
          Creates the page that is displayed after a successful logon.
 ResponsePage DefaultViewer.logoffResponse(RequestContext context)
          Creates the page that is shown after logoff.
 ResponsePage DefaultViewer.queryListsResponse(RequestContext context)
           
 ResponsePage DefaultViewer.showListPropertiesResponse(RequestContext context)
           
 ResponsePage DefaultViewer.setListPropertiesResponse(RequestContext context)
           
 ResponsePage DefaultViewer.deleteListResponse(RequestContext context)
          Creates the page that is displayed when a list has been deleted.
 ResponsePage DefaultViewer.createListResponse(RequestContext context)
           
 ResponsePage DefaultViewer.createPersistentListResponse(RequestContext context)
           
 ResponsePage DefaultViewer.queryProcessTemplatesResponse(RequestContext context)
          Creates the page that displays a process template list.
 ResponsePage DefaultViewer.showTemplatePropertiesResponse(RequestContext context)
          Creates the page that displays process template properties.
 ResponsePage DefaultViewer.createInstanceResponse(RequestContext context)
          Creates the page displayed after a new process instance has been created.
 ResponsePage DefaultViewer.createAndStartInstanceResponse(RequestContext context)
          Creates the page displayed after a new process instance has been created and started.
 ResponsePage DefaultViewer.deleteTemplateResponse(RequestContext context)
          Creates the page displayed after a process template has been deleted.
 ResponsePage DefaultViewer.queryProcessInstancesResponse(RequestContext context)
          Creates the page that displays a process instance list.
 ResponsePage DefaultViewer.showInstancePropertiesResponse(RequestContext context)
          Creates the page that displays process instance properties.
 ResponsePage DefaultViewer.startInstanceResponse(RequestContext context)
          Creates the page that will be displayed after a process instance has been started.
 ResponsePage DefaultViewer.deleteInstanceResponse(RequestContext context)
          Creates the page displayed after a process instance has been deleted.
 ResponsePage DefaultViewer.suspendInstanceResponse(RequestContext context)
          Creates the page displayed after a process instance has been suspended.
 ResponsePage DefaultViewer.resumeInstanceResponse(RequestContext context)
          Creates the page displayed after a process instance has been resumed.
 ResponsePage DefaultViewer.terminateInstanceResponse(RequestContext context)
          Creates the page displayed after a process instance has been terminated.
 ResponsePage DefaultViewer.restartInstanceResponse(RequestContext context)
          Creates the page displayed after a process instance has been restarted.
 ResponsePage DefaultViewer.showActivityPropertiesResponse(RequestContext context)
          This method has an empty implementation since activity properties can only be accessed from within the process monitor which requires JSPPortletViewer.
 ResponsePage DefaultViewer.forceRestartActivityResponse(RequestContext context)
          This method has an empty implementation since activity actions can only be accessed from activity properties page which requires JSPPortletViewer.
 ResponsePage DefaultViewer.forceFinishActivityResponse(RequestContext context)
          This method has an empty implementation since activity actions can only be accessed from activity properties page which requires JSPPortletViewer.
 ResponsePage DefaultViewer.terminateActivityResponse(RequestContext context)
          This method has an empty implementation since activity actions can only be accessed from activity properties page which requires JSPPortletViewer.
 ResponsePage DefaultViewer.showControlConnectorPropertiesResponse(RequestContext context)
          This method has an empty implementation since connector properties can only be accessed from within the process monitor which requires JSPPortletViewer.
 ResponsePage DefaultViewer.queryWorkItemsResponse(RequestContext context)
          Creates the page that displays a work list.
 ResponsePage DefaultViewer.showWorkItemPropertiesResponse(RequestContext context)
          Creates the page that displays work item properties.
 ResponsePage DefaultViewer.checkOutWorkItemResponse(RequestContext context)
          Creates the page that will be displayed when a work item has been checked out.
 ResponsePage DefaultViewer.checkInWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been checked in.
 ResponsePage DefaultViewer.cancelWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item checkout has been canceled.
 ResponsePage DefaultViewer.finishWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been finished.
 ResponsePage DefaultViewer.forceFinishWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been force finished.
 ResponsePage DefaultViewer.startWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been started.
 ResponsePage DefaultViewer.restartWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been restarted.
 ResponsePage DefaultViewer.forceRestartWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been force restarted.
 ResponsePage DefaultViewer.terminateWorkItemResponse(RequestContext context)
          Creates the page that is displayed when a work item has been terminated.
 ResponsePage DefaultViewer.deleteItemResponse(RequestContext context)
          Creates the page that is displayed when an item has been deleted.
 ResponsePage DefaultViewer.transferItemResponse(RequestContext context)
          Creates the page that is displayed when an item has been transferred.
 ResponsePage DefaultViewer.getFilterAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage DefaultViewer.setUserSettingsResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage DefaultViewer.setViewSettingsResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage DefaultViewer.getUserInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage DefaultViewer.getSystemInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage DefaultViewer.queryActivityInstancesResponse(RequestContext context)
           
 ResponsePage Viewer.errorResponse(RequestContext context)
          This method is called by the Web Client if an error occurred.
 ResponsePage Viewer.logonResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.logon() command.
 ResponsePage Viewer.logoffResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.logoff() command.
 ResponsePage Viewer.queryListsResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.queryLists() command.
 ResponsePage Viewer.showListPropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showListProperties() command.
 ResponsePage Viewer.setListPropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.setListProperties() command.
 ResponsePage Viewer.createListResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.createList() command.
 ResponsePage Viewer.createPersistentListResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.createPersistentList() command.
 ResponsePage Viewer.deleteListResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.deleteList() command.
 ResponsePage Viewer.queryProcessTemplatesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.queryProcessTemplates() command.
 ResponsePage Viewer.showTemplatePropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showTemplateProperties() command.
 ResponsePage Viewer.createInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.createInstance() command.
 ResponsePage Viewer.createAndStartInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.createAndStartInstance() command.
 ResponsePage Viewer.deleteTemplateResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.deleteTemplate() command.
 ResponsePage Viewer.queryProcessInstancesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.queryProcessInstances() command.
 ResponsePage Viewer.showInstancePropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showInstanceProperties() command.
 ResponsePage Viewer.deleteInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.deleteInstance() command.
 ResponsePage Viewer.startInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.startInstance() command.
 ResponsePage Viewer.suspendInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.suspendInstance() command.
 ResponsePage Viewer.resumeInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.resumeInstance() command.
 ResponsePage Viewer.terminateInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.terminateInstance() command.
 ResponsePage Viewer.restartInstanceResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.restartInstance() command.
 ResponsePage Viewer.showActivityPropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showActivityProperties() command.
 ResponsePage Viewer.forceRestartActivityResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.forceRestartActivity() command.
 ResponsePage Viewer.forceFinishActivityResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.forceFinishActivity() command.
 ResponsePage Viewer.terminateActivityResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.terminateActivity() command.
 ResponsePage Viewer.showControlConnectorPropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showControlConnectorProperties() command.
 ResponsePage Viewer.queryWorkItemsResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.queryWorkItems() command.
 ResponsePage Viewer.showWorkItemPropertiesResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.showWorkItemProperties() command.
 ResponsePage Viewer.checkOutWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.checkOutWorkItem() command.
 ResponsePage Viewer.checkInWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.checkInWorkItem() command.
 ResponsePage Viewer.cancelWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.cancelWorkItem() command.
 ResponsePage Viewer.finishWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.finishWorkItem() command.
 ResponsePage Viewer.forceFinishWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.forceFinishWorkItem() command.
 ResponsePage Viewer.startWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.startWorkItem() command.
 ResponsePage Viewer.restartWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.restartWorkItem() command.
 ResponsePage Viewer.forceRestartWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.forceRestartWorkItem() command.
 ResponsePage Viewer.terminateWorkItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.terminateWorkItem() command.
 ResponsePage Viewer.deleteItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.deleteItem() command.
 ResponsePage Viewer.transferItemResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.transferItem() command.
 ResponsePage Viewer.setUserSettingsResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage Viewer.setViewSettingsResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage Viewer.getFilterAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage Viewer.getUserInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage Viewer.getSystemInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage GenericCommandHandler.execute(java.lang.String command, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is called by the BuiltinHandler to invoke user-defined commands.
 ResponsePage JSPViewer.errorResponse(RequestContext context)
          Creates the page that is shown in case of an error.
 ResponsePage JSPViewer.logonResponse(RequestContext context)
          Creates the page that is displayed after a successful logon.
 ResponsePage JSPViewer.logoffResponse(RequestContext context)
          Creates the page that is shown after logoff.
 ResponsePage JSPViewer.queryListsResponse(RequestContext context)
          Creates the page that displays the list of lists.
 ResponsePage JSPViewer.showListPropertiesResponse(RequestContext context)
          Creates the page that displays list settings.
 ResponsePage JSPViewer.setListPropertiesResponse(RequestContext context)
          Creates the page that displays the list of lists.
 ResponsePage JSPViewer.createListResponse(RequestContext context)
           
 ResponsePage JSPViewer.queryProcessTemplatesResponse(RequestContext context)
          Creates the page that displays a process template list.
 ResponsePage JSPViewer.showTemplatePropertiesResponse(RequestContext context)
          Creates the page that displays process template properties.
 ResponsePage JSPViewer.createAndStartInstanceResponse(RequestContext context)
          Creates the page displayed after a new process instance has been created and started.
 ResponsePage JSPViewer.queryProcessInstancesResponse(RequestContext context)
          Creates the page that displays a process instance list.
 ResponsePage JSPViewer.showInstancePropertiesResponse(RequestContext context)
          Creates the page that displays process instance properties.
 ResponsePage JSPViewer.startInstanceResponse(RequestContext context)
          Creates the page that will be displayed after a process instance has been started.
 ResponsePage JSPViewer.suspendInstanceResponse(RequestContext context)
          Creates the page that is displayed after a process instance has been suspended.
 ResponsePage JSPViewer.showActivityPropertiesResponse(RequestContext context)
          Creates the page that displays activity instance properties.
 ResponsePage JSPViewer.forceRestartActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been force restarted.
 ResponsePage JSPViewer.forceFinishActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been force finished.
 ResponsePage JSPViewer.terminateActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been terminated.
 ResponsePage JSPViewer.showControlConnectorPropertiesResponse(RequestContext context)
          Creates the page that displays control connector properties.
 ResponsePage JSPViewer.queryWorkItemsResponse(RequestContext context)
          Creates the page that displays a worklist.
 ResponsePage JSPViewer.showWorkItemPropertiesResponse(RequestContext context)
          Creates the page that displays work item properties.
 ResponsePage JSPViewer.checkOutWorkItemResponse(RequestContext context)
          Creates the page that will be displayed when a work item has been checked out.
 ResponsePage JSPViewer.forceFinishWorkItemResponse(RequestContext context)
          Creates the page that is displayed after a work item has been force finished.
 ResponsePage JSPViewer.forceRestartWorkItemResponse(RequestContext context)
          Creates the page that is displayed after a work item has been force restarted.
 ResponsePage JSPViewer.getFilterAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPViewer.getSortCriteriaAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPViewer.getUserInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPViewer.getSystemInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPPortletViewer.showEditPreferences(RequestContext context, com.ibm.workflow.portlet.client.RequestPreferences preferences)
          Shows the page for specifying the response page settings.
 ResponsePage JSPPortletViewer.errorBasicResponse(RequestContext context)
          Creates the page that is shown in case of an error.
 ResponsePage JSPPortletViewer.errorResponse(RequestContext context)
          Creates the page that is shown in case of an error.
 ResponsePage JSPPortletViewer.logonResponse(RequestContext context)
          Creates the page that is displayed after a successful logon.
 ResponsePage JSPPortletViewer.logoffResponse(RequestContext context)
          Creates the page that is shown after logoff.
 ResponsePage JSPPortletViewer.showEditCredential(RequestContext context)
          Shows the ResponsePage for editing the credentials used for the edit mode of the portlet.
 ResponsePage JSPPortletViewer.queryListsResponse(RequestContext context)
          Creates the page that displays the list of lists.
 ResponsePage JSPPortletViewer.queryActivityInstancesResponse(RequestContext context)
          Creates the page that displays a list of activity instances.
 ResponsePage JSPPortletViewer.showListPropertiesResponse(RequestContext context)
          Creates the page that displays list settings.
 ResponsePage JSPPortletViewer.setListPropertiesResponse(RequestContext context)
          Creates the page that displays the list of lists.
 ResponsePage JSPPortletViewer.createListResponse(RequestContext context)
           
 ResponsePage JSPPortletViewer.queryProcessTemplatesResponse(RequestContext context)
          Creates the page that displays a process template list.
 ResponsePage JSPPortletViewer.showTemplatePropertiesResponse(RequestContext context)
          Creates the page that displays process template properties.
 ResponsePage JSPPortletViewer.createAndStartInstanceResponse(RequestContext context)
          Creates the page displayed after a new process instance has been created and started.
 ResponsePage JSPPortletViewer.checkInWorkItemResponse(RequestContext context)
           
 ResponsePage JSPPortletViewer.cancelWorkItemResponse(RequestContext context)
           
 ResponsePage JSPPortletViewer.queryProcessInstancesResponse(RequestContext context)
          Creates the page that displays a process instance list.
 ResponsePage JSPPortletViewer.showInstancePropertiesResponse(RequestContext context)
          Creates the page that displays process instance properties.
 ResponsePage JSPPortletViewer.startInstanceResponse(RequestContext context)
          Creates the page that will be displayed after a process instance has been started.
 ResponsePage JSPPortletViewer.suspendInstanceResponse(RequestContext context)
          Creates the page that is displayed after a process instance has been suspended.
 ResponsePage JSPPortletViewer.showActivityPropertiesResponse(RequestContext context)
          Creates the page that displays activity instance properties.
 ResponsePage JSPPortletViewer.forceRestartActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been force restarted.
 ResponsePage JSPPortletViewer.forceFinishActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been force finished.
 ResponsePage JSPPortletViewer.terminateActivityResponse(RequestContext context)
          Creates the page that is displayed after an activity instance has been terminated.
 ResponsePage JSPPortletViewer.showControlConnectorPropertiesResponse(RequestContext context)
          Creates the page that displays control connector properties.
 ResponsePage JSPPortletViewer.queryWorkItemsResponse(RequestContext context)
          Creates the page that displays a worklist.
 ResponsePage JSPPortletViewer.showWorkItemPropertiesResponse(RequestContext context)
          Creates the page that displays work item properties.
 ResponsePage JSPPortletViewer.checkOutWorkItemResponse(RequestContext context)
          Creates the page that will be displayed when a work item has been checked out.
 ResponsePage JSPPortletViewer.forceFinishWorkItemResponse(RequestContext context)
          Creates the page that is displayed after a work item has been force finished.
 ResponsePage JSPPortletViewer.cancelCreateAndStartResponse(RequestContext context)
           
 ResponsePage JSPPortletViewer.forceRestartWorkItemResponse(RequestContext context)
          Creates the page that is displayed after a work item has been force restarted.
 ResponsePage JSPPortletViewer.getFilterAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPPortletViewer.getSortCriteriaAssistantResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPPortletViewer.getUserInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage JSPPortletViewer.getSystemInfoResponse(RequestContext context)
          Deprecated. - this function will be redesigned in a later release
 ResponsePage MonitorHandler.showMonitor(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 ResponsePage MonitorHandler.showMonitorImage(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 

Methods in com.ibm.workflow.portlet.client with parameters of type ResponsePage
 void MQWFActionPortlet.checkResponsePageStatus(org.apache.jetspeed.portlet.PortletRequest request, ResponsePage result)
          Release instance if trivial page is shown.
 void MQWFListPortlet.checkStatus(org.apache.jetspeed.portlet.PortletRequest request, ResponsePage result)
          Will tidy up the NO_FREE_ACTION_INSTANCE attribute of the RequestContext object out of the ResponsePage object and set this attribute again in case of an error.
 

Uses of ResponsePage in com.ibm.workflow.portlet.sample
 

Methods in com.ibm.workflow.portlet.sample that return ResponsePage
 ResponsePage ShowConfigHandler.showConfig(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 ResponsePage EmailHandler.transferItem(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Service entry point to which the 'x-transferItem' requests issued by the ListViewer.jsp are dispatched.
 ResponsePage CommandHandlerAdapter.execute(java.lang.String command, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is called every time a custom command is to be executed.
 ResponsePage AuditTrailHandler.getInstanceHistory(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This custom command first retrieves the audit records for the process instance whose OID matches the 'id' parameter in the HTTP-request, and then transforms the data to XML.
 ResponsePage AuditTrailHandler.getActivityStatistics(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This custom command first retrieves the audit records for all activity instances whose names match the name of work item whose OID is passed via the 'id' parameter of the HTTP-request.
 ResponsePage InternetConnectionViewer.logonResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.logon() command.
 ResponsePage InternetConnectionViewer.queryWorkItemsResponse(RequestContext context)
          This method is called to create the response page for the BuiltinHandler.queryWorkItems() command.
 



© Copyright IBM Corporation 2002, 2008. All Rights Reserved.