Package org.apache.ofbiz.webapp.event
Class ServiceMultiEventHandler
java.lang.Object
org.apache.ofbiz.webapp.event.ServiceMultiEventHandler
- All Implemented Interfaces:
EventHandler
ServiceMultiEventHandler - Event handler for running a service multiple times; for bulk forms
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
init
(ServletContext servletContext) Initializes the handler.invoke
(ConfigXMLReader.Event event, ConfigXMLReader.RequestMap requestMap, HttpServletRequest request, HttpServletResponse response) Invoke the web event
-
Field Details
-
SYNC
- See Also:
-
ASYNC
- See Also:
-
-
Constructor Details
-
ServiceMultiEventHandler
public ServiceMultiEventHandler()
-
-
Method Details
-
init
Description copied from interface:EventHandler
Initializes the handler. Since handlers use the singleton pattern this method should only be called the first time the handler is used.- Specified by:
init
in interfaceEventHandler
- Parameters:
servletContext
- ServletContext This may be needed by the handler in order to lookup properties or XML definition files for rendering pages or handler options.- Throws:
EventHandlerException
-
invoke
public String invoke(ConfigXMLReader.Event event, ConfigXMLReader.RequestMap requestMap, HttpServletRequest request, HttpServletResponse response) throws EventHandlerException Description copied from interface:EventHandler
Invoke the web event- Specified by:
invoke
in interfaceEventHandler
- Parameters:
event
- Contains information about what to executerequestMap
- Contains information about the request-map the event was called fromrequest
- The servlet request objectresponse
- The servlet response object- Returns:
- String Result code
- Throws:
EventHandlerException
-