]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java
Disable development mode in FOP servlet
[gpl/argeo-suite.git] / org.argeo.app.core / src / org / argeo / app / xforms / FormSubmissionListener.java
1 package org.argeo.app.xforms;
2
3 import org.argeo.api.acr.Content;
4
5 /** Called when a user has received a new form submission. */
6 public interface FormSubmissionListener {
7 /**
8 * Called after a form submission has been stored in the user area. The
9 * submission will be deleted if any exception is thrown.
10 */
11 void formSubmissionReceived(Content content);
12 }