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.sys.businessobject; 017 018 import java.math.BigDecimal; 019 import java.sql.Date; 020 import java.util.LinkedHashMap; 021 022 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase; 023 024 /** 025 * Tax District Rate business object. 026 */ 027 public class TaxRegionRate extends PersistableBusinessObjectBase { 028 029 private String taxRegionCode; 030 private Date effectiveDate; 031 private BigDecimal taxRate; 032 033 public Date getEffectiveDate() { 034 return effectiveDate; 035 } 036 037 public void setEffectiveDate(Date effectiveDate) { 038 this.effectiveDate = effectiveDate; 039 } 040 041 public String getTaxRegionCode() { 042 return taxRegionCode; 043 } 044 045 public void setTaxRegionCode(String taxDistrictCode) { 046 this.taxRegionCode = taxDistrictCode; 047 } 048 049 public BigDecimal getTaxRate() { 050 return taxRate; 051 } 052 053 public void setTaxRate(BigDecimal taxRate) { 054 this.taxRate = taxRate; 055 } 056 057 @Override 058 protected LinkedHashMap toStringMapper() { 059 // TODO Auto-generated method stub 060 return null; 061 } 062 063 }