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 GLInterfaceBatchExceptionReportHeader extends EndowmentExceptionReportHeader { 023 private String columnHeading8; 024 025 public GLInterfaceBatchExceptionReportHeader() { 026 columnHeading8 = ""; 027 } 028 029 /** 030 * Gets the columnHeading1 attribute. 031 * @return Returns the columnHeading8. 032 */ 033 public String getColumnHeading8() { 034 return columnHeading8; 035 } 036 037 /** 038 * Sets the columnHeading8 attribute. 039 * @return Returns the columnHeading8. 040 */ 041 public void setColumnHeading1(String columnHeading8) { 042 this.columnHeading8 = columnHeading8; 043 } 044 045 /** 046 * A map of the "keys" of this transient business object 047 * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper() 048 */ 049 @Override 050 protected LinkedHashMap toStringMapper() { 051 LinkedHashMap pks = new LinkedHashMap<String, Object>(); 052 pks.put("columnHeading1",this.getColumnHeading1()); 053 pks.put("columnHeading2",this.getColumnHeading2()); 054 pks.put("columnHeading3",this.getColumnHeading3()); 055 pks.put("columnHeading4",this.getColumnHeading4()); 056 pks.put("columnHeading5",this.getColumnHeading5()); 057 pks.put("columnHeading6",this.getColumnHeading6()); 058 pks.put("columnHeading7",this.getColumnHeading7()); 059 pks.put("columnHeading8",this.getColumnHeading8()); 060 061 return pks; 062 } 063 }