1 /* 2 * Copyright 2013 The Kuali Foundation. 3 * 4 * Licensed under the Educational Community License, Version 1.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.opensource.org/licenses/ecl1.php 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.kuali.ole.select.businessobject; 17 18 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 19 20 import java.util.LinkedHashMap; 21 22 public class OleRequisitionPaymentHistory extends PersistableBusinessObjectBase implements OlePaymentHistory { 23 24 private String paymentHistory; 25 26 27 /** 28 * Gets the paymentHistory attribute. 29 * 30 * @return Returns the paymentHistory. 31 */ 32 public String getPaymentHistory() { 33 return paymentHistory; 34 } 35 36 37 /** 38 * Sets the paymentHistory attribute value. 39 * 40 * @param paymentHistory The paymentHistory to set. 41 */ 42 public void setPaymentHistory(String paymentHistory) { 43 this.paymentHistory = paymentHistory; 44 } 45 46 47 @SuppressWarnings("rawtypes") 48 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() { 49 LinkedHashMap map = new LinkedHashMap(); 50 map.put("paymentHistory", paymentHistory); 51 return map; 52 } 53 54 }