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.businessobject; 017 018 import java.util.LinkedHashMap; 019 020 import org.kuali.rice.kns.bo.TransientBusinessObjectBase; 021 022 public class FeeProcessingTotalsProcessedReportHeader extends TransientBusinessObjectBase { 023 private String columnHeading1; 024 private String columnHeading2; 025 private String columnHeading3; 026 private String columnHeading4; 027 private String columnHeading5; 028 029 public FeeProcessingTotalsProcessedReportHeader() { 030 columnHeading1 = ""; 031 columnHeading2 = ""; 032 columnHeading3 = ""; 033 columnHeading4 = ""; 034 columnHeading5 = ""; 035 } 036 037 /** 038 * Gets the columnHeading1 attribute. 039 * @return Returns the columnHeading1. 040 */ 041 public String getColumnHeading1() { 042 return columnHeading1; 043 } 044 045 /** 046 * Sets the columnHeading1 attribute. 047 * @return Returns the columnHeading1. 048 */ 049 public void setColumnHeading1(String columnHeading1) { 050 this.columnHeading1 = columnHeading1; 051 } 052 053 /** 054 * Gets the columnHeading2 attribute. 055 * @return Returns the columnHeading2. 056 */ 057 public String getColumnHeading2() { 058 return columnHeading2; 059 } 060 061 /** 062 * Sets the columnHeading2 attribute. 063 * @return Returns the columnHeading2. 064 */ 065 public void setColumnHeading2(String columnHeading2) { 066 this.columnHeading2 = columnHeading2; 067 } 068 069 /** 070 * Gets the columnHeading3 attribute. 071 * @return Returns the columnHeading3. 072 */ 073 public String getColumnHeading3() { 074 return columnHeading3; 075 } 076 077 /** 078 * Sets the columnHeading3 attribute. 079 * @return Returns the columnHeading3. 080 */ 081 public void setColumnHeading3(String columnHeading3) { 082 this.columnHeading3 = columnHeading3; 083 } 084 085 /** 086 * Gets the columnHeading4 attribute. 087 * @return Returns the columnHeading4. 088 */ 089 public String getColumnHeading4() { 090 return columnHeading4; 091 } 092 093 /** 094 * Sets the columnHeading4 attribute. 095 * @return Returns the columnHeading4. 096 */ 097 public void setColumnHeading4(String columnHeading4) { 098 this.columnHeading4 = columnHeading4; 099 } 100 101 /** 102 * Gets the columnHeading5 attribute. 103 * @return Returns the columnHeading5. 104 */ 105 public String getColumnHeading5() { 106 return columnHeading5; 107 } 108 109 /** 110 * Sets the columnHeading5 attribute value. 111 * @param columnHeading5 The columnHeading5 to set. 112 */ 113 public void setColumnHeading5(String columnHeading5) { 114 this.columnHeading5 = columnHeading5; 115 } 116 117 /** 118 * A map of the "keys" of this transient business object 119 * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper() 120 */ 121 @Override 122 protected LinkedHashMap toStringMapper() { 123 LinkedHashMap pks = new LinkedHashMap<String, Object>(); 124 pks.put("columnHeading1",this.getColumnHeading1()); 125 pks.put("columnHeading2",this.getColumnHeading2()); 126 pks.put("columnHeading3",this.getColumnHeading3()); 127 pks.put("columnHeading4",this.getColumnHeading4()); 128 pks.put("columnHeading5",this.getColumnHeading5()); 129 130 return pks; 131 } 132 }