org.infoglue.cms.applications.deliver.inputhandlers
Interface InfoGlueInputHandler
- All Known Implementing Classes:
- MailSender
- public interface InfoGlueInputHandler
This interface is what all input handlers should follow. The input handler interface is the
entry point for customizable data handling from users outside. The handlers could mail, store the data in
a database or interact with the user in other ways.
|
Method Summary |
void |
processInput(java.lang.Integer siteNodeId,
java.lang.Integer languageId,
java.lang.Integer contentId,
java.lang.Integer formContentId,
java.util.HashMap parameters,
javax.servlet.http.HttpServletRequest request)
This is the method that is invoked. |
processInput
public void processInput(java.lang.Integer siteNodeId,
java.lang.Integer languageId,
java.lang.Integer contentId,
java.lang.Integer formContentId,
java.util.HashMap parameters,
javax.servlet.http.HttpServletRequest request)
throws java.lang.Exception
- This is the method that is invoked.
java.lang.Exception