X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=org.argeo.support.xforms%2Fsrc%2Forg%2Fargeo%2Fsupport%2Fxforms%2FFormSubmissionListener.java;fp=org.argeo.support.xforms%2Fsrc%2Forg%2Fargeo%2Fsupport%2Fxforms%2FFormSubmissionListener.java;h=e23ef36ea2003fa8fe3b318da05a319352591b09;hb=3440f51df3e4c015972c7b6a0efb3ce16188b89b;hp=0000000000000000000000000000000000000000;hpb=752a7b2614895002a3d184be166ef4162caf0d05;p=gpl%2Fargeo-suite.git diff --git a/org.argeo.support.xforms/src/org/argeo/support/xforms/FormSubmissionListener.java b/org.argeo.support.xforms/src/org/argeo/support/xforms/FormSubmissionListener.java new file mode 100644 index 0000000..e23ef36 --- /dev/null +++ b/org.argeo.support.xforms/src/org/argeo/support/xforms/FormSubmissionListener.java @@ -0,0 +1,10 @@ +package org.argeo.support.xforms; + +import javax.jcr.Node; +import javax.jcr.RepositoryException; + +/** Called when a user has received a new form submission. */ +public interface FormSubmissionListener { + /** Called after a form submission has been stored in the user area. */ + void formSubmissionReceived(Node node) throws RepositoryException; +}