X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.app.core%2Fsrc%2Forg%2Fargeo%2Fapp%2Fxforms%2FFormSubmissionListener.java;fp=org.argeo.app.core%2Fsrc%2Forg%2Fargeo%2Fapp%2Fxforms%2FFormSubmissionListener.java;h=71228926d0bb075c70f2aa079f7435a628cce8f8;hb=942fd932e1f6ed3319575c4c1d944912dfca9fa5;hp=0000000000000000000000000000000000000000;hpb=9dad741609777467f58a508e07139be9a086919b;p=gpl%2Fargeo-suite.git diff --git a/org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java b/org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java new file mode 100644 index 0000000..7122892 --- /dev/null +++ b/org.argeo.app.core/src/org/argeo/app/xforms/FormSubmissionListener.java @@ -0,0 +1,10 @@ +package org.argeo.app.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; +}