]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java
Adapt to changes in Argeo Commons.
[gpl/argeo-suite.git] / org.argeo.app.core / src / org / argeo / app / xforms / FormSubmissionListener.java
1 package org.argeo.app.xforms;
2
3 import javax.jcr.Node;
4 import javax.jcr.RepositoryException;
5
6 /** Called when a user has received a new form submission. */
7 public interface FormSubmissionListener {
8 /** Called after a form submission has been stored in the user area. */
9 void formSubmissionReceived(Node node) throws RepositoryException;
10 }