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 FeeProcessingWaivedAndAccruedReportHeader extends TransientBusinessObjectBase {
023 private String columnHeading1;
024 private String columnHeading2;
025 private String columnHeading3;
026 private String columnHeading4;
027
028 public FeeProcessingWaivedAndAccruedReportHeader() {
029 columnHeading1 = "";
030 columnHeading2 = "";
031 columnHeading3 = "";
032 columnHeading4 = "";
033 }
034
035 /**
036 * Gets the columnHeading1 attribute.
037 * @return Returns the columnHeading1.
038 */
039 public String getColumnHeading1() {
040 return columnHeading1;
041 }
042
043 /**
044 * Sets the columnHeading1 attribute.
045 * @return Returns the columnHeading1.
046 */
047 public void setColumnHeading1(String columnHeading1) {
048 this.columnHeading1 = columnHeading1;
049 }
050
051 /**
052 * Gets the columnHeading2 attribute.
053 * @return Returns the columnHeading2.
054 */
055 public String getColumnHeading2() {
056 return columnHeading2;
057 }
058
059 /**
060 * Sets the columnHeading2 attribute.
061 * @return Returns the columnHeading2.
062 */
063 public void setColumnHeading2(String columnHeading2) {
064 this.columnHeading2 = columnHeading2;
065 }
066
067 /**
068 * Gets the columnHeading3 attribute.
069 * @return Returns the columnHeading3.
070 */
071 public String getColumnHeading3() {
072 return columnHeading3;
073 }
074
075 /**
076 * Sets the columnHeading3 attribute.
077 * @return Returns the columnHeading3.
078 */
079 public void setColumnHeading3(String columnHeading3) {
080 this.columnHeading3 = columnHeading3;
081 }
082
083 /**
084 * Gets the columnHeading4 attribute.
085 * @return Returns the columnHeading4.
086 */
087 public String getColumnHeading4() {
088 return columnHeading4;
089 }
090
091 /**
092 * Sets the columnHeading4 attribute.
093 * @return Returns the columnHeading4.
094 */
095 public void setColumnHeading4(String columnHeading4) {
096 this.columnHeading4 = columnHeading4;
097 }
098
099 /**
100 * A map of the "keys" of this transient business object
101 * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper()
102 */
103 @Override
104 protected LinkedHashMap toStringMapper() {
105 LinkedHashMap pks = new LinkedHashMap<String, Object>();
106 pks.put("columnHeading1",this.getColumnHeading1());
107 pks.put("columnHeading2",this.getColumnHeading2());
108 pks.put("columnHeading3",this.getColumnHeading3());
109 pks.put("columnHeading4",this.getColumnHeading4());
110
111 return pks;
112 }
113 }