001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.purap.document.web.struts;
017
018 import org.apache.struts.upload.FormFile;
019 import org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase;
020
021 /**
022 * Struts Action Form for Electroinc Invoice Reject document.
023 */
024 public class ElectronicInvoiceTestForm extends KualiDocumentFormBase {
025
026 protected FormFile xmlFile;
027 protected String returnXml;
028
029 public FormFile getXmlFile() {
030 return xmlFile;
031 }
032
033 public void setXmlFile(FormFile xmlFile) {
034 this.xmlFile = xmlFile;
035 }
036
037 public String getReturnXml() {
038 return returnXml;
039 }
040
041 public void setReturnXml(String returnXml) {
042 this.returnXml = returnXml;
043 }
044
045 /**
046 * Constructs a PaymentRequestForm instance and sets up the appropriately casted document.
047 */
048 public ElectronicInvoiceTestForm() {
049 super();
050 }
051
052 }