Package org.apache.ofbiz.webapp.event
Class SimpleEventHandler
- java.lang.Object
-
- org.apache.ofbiz.webapp.event.SimpleEventHandler
-
- All Implemented Interfaces:
EventHandler
public class SimpleEventHandler extends java.lang.Object implements EventHandler
SimpleEventHandler - Simple Event Mini-Lang Handler
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
err_resource
Contains the property file name for translation of error messages.static java.lang.String
module
-
Constructor Summary
Constructors Constructor Description SimpleEventHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
init(ServletContext context)
Initializes the handler.java.lang.String
invoke(ConfigXMLReader.Event event, ConfigXMLReader.RequestMap requestMap, HttpServletRequest request, HttpServletResponse response)
Invoke the web event
-
-
-
Field Detail
-
module
public static final java.lang.String module
-
err_resource
public static final java.lang.String err_resource
Contains the property file name for translation of error messages.- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public void init(ServletContext context) throws EventHandlerException
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:
context
- 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
- See Also:
EventHandler.init(javax.servlet.ServletContext)
-
invoke
public java.lang.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
- See Also:
EventHandler.invoke(ConfigXMLReader.Event, ConfigXMLReader.RequestMap, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
-
-