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 import org.kuali.rice.kns.util.KualiDecimal; 022 import org.kuali.rice.kns.util.KualiInteger; 023 024 public class GLInterfaceBatchStatisticsTableRowValues extends TransientBusinessObjectBase { 025 private String documenTypeColumn1; 026 private String chartColumn2; 027 private String objectColumn3; 028 029 public GLInterfaceBatchStatisticsTableRowValues() { 030 documenTypeColumn1 = " "; 031 chartColumn2 = " "; 032 objectColumn3 = " "; 033 } 034 035 /** 036 * Gets the documenTypeColumn1 attribute. 037 * @return Returns the documenTypeColumn1. 038 */ 039 public String getDocumenTypeColumn1() { 040 return documenTypeColumn1; 041 } 042 043 /** 044 * Sets the documenTypeColumn1 attribute. 045 * @return Returns the documenTypeColumn1. 046 */ 047 public void setDocumenTypeColumn1(String documenTypeColumn1) { 048 this.documenTypeColumn1 = documenTypeColumn1; 049 } 050 051 /** 052 * Gets the chartColumn2 attribute. 053 * @return Returns the chartColumn2. 054 */ 055 public String getChartColumn2() { 056 return chartColumn2; 057 } 058 059 /** 060 * Sets the chartColumn2 attribute. 061 * @return Returns the chartColumn2. 062 */ 063 public void setChartColumn2(String chartColumn2) { 064 this.chartColumn2 = chartColumn2; 065 } 066 067 /** 068 * Gets the objectColumn3 attribute. 069 * @return Returns the objectColumn3. 070 */ 071 public String getObjectColumn3() { 072 return objectColumn3; 073 } 074 075 /** 076 * Sets the objectColumn3 attribute. 077 * @return Returns the objectColumn3. 078 */ 079 public void setObjectColumn3(String objectColumn3) { 080 this.objectColumn3 = objectColumn3; 081 } 082 083 /** 084 * A map of the "keys" of this transient business object 085 * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper() 086 */ 087 @Override 088 protected LinkedHashMap toStringMapper() { 089 LinkedHashMap pks = new LinkedHashMap<String, Object>(); 090 pks.put("documenTypeColumn1",this.getDocumenTypeColumn1()); 091 pks.put("chartColumn2",this.getChartColumn2()); 092 pks.put("objectColumn3",this.getObjectColumn3()); 093 return pks; 094 } 095 }