/** * Copyright (C) 2010 Orbeon, Inc. * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU Lesser General Public License as published by the Free Software Foundation; either version * 2.1 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * The full text of the license is available at http://www.gnu.org/copyleft/lesser.html */ package org.orbeon.oxf.xforms.action.actions; import org.orbeon.dom.Element; import org.orbeon.oxf.common.OXFException; import org.orbeon.oxf.common.Version; import org.orbeon.oxf.xforms.action.XFormsAction; import org.orbeon.oxf.xforms.action.XFormsActionInterpreter; import org.orbeon.oxf.xforms.submission.AsynchronousSubmissionManager; import org.orbeon.oxf.xforms.xbl.Scope; import org.orbeon.saxon.om.Item; public class XXFormsJoinSubmissions extends XFormsAction { public void execute(XFormsActionInterpreter actionInterpreter, Element actionElement, Scope actionScope, boolean hasOverriddenContext, Item overriddenContext) { // Process all pending async submissions. The action will block until the method returns. if (Version.isPE()) { // Only supported in PE version final AsynchronousSubmissionManager manager = actionInterpreter.containingDocument().getAsynchronousSubmissionManager(false); if (manager != null) manager.processAllAsynchronousSubmissions(); } else { // It's better to throw an exception since this action can have an impact on application behavior, not only performance throw new OXFException("xxf:join-submissions extension action is only supported in Orbeon Forms PE."); } } }