]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java
Releasing
[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 final static String XML_SUBMISSION_FILE = "xml_submission_file";
8
9 /**
10 * Called after a form submission has been stored in the user area. The
11 * submission will be deleted if any exception is thrown.
12 */
13 void formSubmissionReceived(Content content, boolean isIncomplete);
14 }