]> git.argeo.org Git - gpl/argeo-suite.git/blobdiff - org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java
Merge tag 'v2.3.19' into testing
[gpl/argeo-suite.git] / org.argeo.app.core / src / org / argeo / app / xforms / FormSubmissionListener.java
index 0dff64c772ec9ec1f6a894fb203a370065fe252a..feea106b01b2bc4e29c1f600489868550df1fbe1 100644 (file)
@@ -1,13 +1,14 @@
 package org.argeo.app.xforms;
 
-import javax.jcr.Node;
-import javax.jcr.RepositoryException;
+import org.argeo.api.acr.Content;
 
 /** Called when a user has received a new form submission. */
 public interface FormSubmissionListener {
+       final static String XML_SUBMISSION_FILE = "xml_submission_file";
+       
        /**
         * Called after a form submission has been stored in the user area. The
         * submission will be deleted if any exception is thrown.
         */
-       void formSubmissionReceived(Node node) throws RepositoryException;
+       void formSubmissionReceived(Content content, boolean isIncomplete);
 }