/** * Copyright (C) 2009 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.submission; import org.orbeon.oxf.xforms.action.actions.XFormsLoadAction; /** * Client-side GET all submission. It stores the resulting location directly into the containing document. */ public class ClientGetAllSubmission extends BaseSubmission { public ClientGetAllSubmission(XFormsModelSubmission submission) { super(submission); } public String getType() { return "get all"; } public boolean isMatch(SubmissionParameters p, SecondPassParameters p2, SerializationParameters sp) { return p.isHandlingClientGetAll(); } public SubmissionResult connect(SubmissionParameters p, SecondPassParameters p2, SerializationParameters sp) { final String actionString = (sp.queryString() == null) ? p2.actionOrResource() : p2.actionOrResource() + ((p2.actionOrResource().indexOf('?') == -1) ? "?" : "") + sp.queryString(); XFormsLoadAction.resolveStoreLoadValue(containingDocument(), submission().getSubmissionElement(), true, actionString, null, null, submission().isURLNorewrite(), submission().isShowProgress()); return null; } }