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.endow.web.struts; 017 018 public class TransactionSummaryForm extends EndowmentReportBaseForm { 019 020 protected String beginningDate; 021 protected String endingDate; 022 protected String reportOption; 023 protected String listKemidsInHeader; 024 protected String summaryTotalsOnly; 025 026 /** 027 * Clears all the fields 028 */ 029 public void clear() { 030 super.clear(); 031 this.beginningDate = null; 032 this.endingDate = null; 033 this.reportOption = "B"; 034 this.listKemidsInHeader = "N"; 035 this.summaryTotalsOnly = "N"; 036 } 037 038 public String getBeginningDate() { 039 return beginningDate; 040 } 041 042 public void setBeginningDate(String beginningDate) { 043 this.beginningDate = beginningDate; 044 } 045 046 public String getEndingDate() { 047 return endingDate; 048 } 049 050 public void setEndingDate(String endingDate) { 051 this.endingDate = endingDate; 052 } 053 054 public String getReportOption() { 055 return reportOption; 056 } 057 058 public void setReportOption(String reportOption) { 059 this.reportOption = reportOption; 060 } 061 062 public String getListKemidsInHeader() { 063 return listKemidsInHeader; 064 } 065 066 public void setListKemidsInHeader(String listKemidsInHeader) { 067 this.listKemidsInHeader = listKemidsInHeader; 068 } 069 070 public String getSummaryTotalsOnly() { 071 return summaryTotalsOnly; 072 } 073 074 public void setSummaryTotalsOnly(String summaryTotalsOnly) { 075 this.summaryTotalsOnly = summaryTotalsOnly; 076 } 077 }