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.report.util; 017 018 import java.util.List; 019 020 /** 021 * The data holder for report request headers 022 */ 023 public class EndowmentReportHeaderDataHolder { 024 025 private String institutionName; 026 private String reportRequested; 027 private String dateRequested; 028 private String requestedBy; 029 private String endowmentOption; 030 private String reportOption; 031 032 private String benefittingCampus; 033 private String benefittingChart; 034 private String benefittingOrganization; 035 private String kemidTypeCode; 036 private String kemidPurposeCode; 037 private String combineGroupCode; 038 039 private List<KemidsWithMultipleBenefittingOrganizationsDataHolder> kemidsWithMultipleBenefittingOrganizationsDataHolders; 040 041 private List<String> kemidsSelected; 042 043 /** 044 * 045 */ 046 public String getInstitutionName() { 047 return institutionName; 048 } 049 050 /** 051 * 052 */ 053 public void setInstitutionName(String institutionName) { 054 this.institutionName = institutionName; 055 } 056 057 /** 058 * 059 */ 060 public String getReportRequested() { 061 return reportRequested; 062 } 063 064 /** 065 * 066 */ 067 public void setReportRequested(String reportRequested) { 068 this.reportRequested = reportRequested; 069 } 070 071 /** 072 * 073 */ 074 public String getDateRequested() { 075 return dateRequested; 076 } 077 078 /** 079 * 080 */ 081 public void setDateRequested(String dateRequested) { 082 this.dateRequested = dateRequested; 083 } 084 085 /** 086 * 087 */ 088 public String getRequestedBy() { 089 return requestedBy; 090 } 091 092 /** 093 * 094 */ 095 public void setRequestedBy(String requestedBy) { 096 this.requestedBy = requestedBy; 097 } 098 099 /** 100 * 101 */ 102 public String getEndowmentOption() { 103 return endowmentOption; 104 } 105 106 /** 107 * 108 */ 109 public void setEndowmentOption(String endowmentOption) { 110 this.endowmentOption = endowmentOption; 111 } 112 113 /** 114 * 115 */ 116 public String getReportOption() { 117 return reportOption; 118 } 119 120 /** 121 * 122 */ 123 public void setReportOption(String reportOption) { 124 this.reportOption = reportOption; 125 } 126 127 /** 128 * 129 */ 130 public String getBenefittingCampus() { 131 return benefittingCampus; 132 } 133 134 /** 135 * 136 */ 137 public void setBenefittingCampus(String benefittingCampus) { 138 this.benefittingCampus = benefittingCampus; 139 } 140 141 /** 142 * 143 */ 144 public String getBenefittingChart() { 145 return benefittingChart; 146 } 147 148 /** 149 * 150 */ 151 public void setBenefittingChart(String benefittingChart) { 152 this.benefittingChart = benefittingChart; 153 } 154 155 /** 156 * 157 */ 158 public String getBenefittingOrganization() { 159 return benefittingOrganization; 160 } 161 162 /** 163 * 164 */ 165 public void setBenefittingOrganization(String benefittingOrganization) { 166 this.benefittingOrganization = benefittingOrganization; 167 } 168 169 /** 170 * 171 */ 172 public String getKemidTypeCode() { 173 return kemidTypeCode; 174 } 175 176 /** 177 * 178 */ 179 public void setKemidTypeCode(String kemidTypeCode) { 180 this.kemidTypeCode = kemidTypeCode; 181 } 182 183 /** 184 * 185 */ 186 public String getKemidPurposeCode() { 187 return kemidPurposeCode; 188 } 189 190 /** 191 * 192 */ 193 public void setKemidPurposeCode(String kemidPurposeCode) { 194 this.kemidPurposeCode = kemidPurposeCode; 195 } 196 197 /** 198 * 199 */ 200 public String getCombineGroupCode() { 201 return combineGroupCode; 202 } 203 204 /** 205 * 206 */ 207 public void setCombineGroupCode(String combineGroupCode) { 208 this.combineGroupCode = combineGroupCode; 209 } 210 211 /** 212 * 213 */ 214 public List<KemidsWithMultipleBenefittingOrganizationsDataHolder> getKemidsWithMultipleBenefittingOrganizationsDataHolders() { 215 return kemidsWithMultipleBenefittingOrganizationsDataHolders; 216 } 217 218 /** 219 * 220 */ 221 public void setKemidsWithMultipleBenefittingOrganizationsDataHolders(List<KemidsWithMultipleBenefittingOrganizationsDataHolder> kemidsWithMultipleBenefittingOrganizationsDataHolders) { 222 this.kemidsWithMultipleBenefittingOrganizationsDataHolders = kemidsWithMultipleBenefittingOrganizationsDataHolders; 223 } 224 225 /** 226 * 227 */ 228 public List<String> getKemidsSelected() { 229 return kemidsSelected; 230 } 231 232 /** 233 * 234 */ 235 public void setKemidsSelected(List<String> kemidsSelected) { 236 this.kemidsSelected = kemidsSelected; 237 } 238 239 240 }