001package org.kuali.ole.pojo;
002
003import java.util.ArrayList;
004import java.util.HashMap;
005import java.util.List;
006import java.util.Map;
007
008/**
009 * Created with IntelliJ IDEA.
010 * User: palanivel
011 * Date: 7/30/13
012 * Time: 3:02 PM
013 * To change this template use File | Settings | File Templates.
014 */
015public class OleInvoiceRecordHandler {
016
017    private Map<String, List<OleInvoiceRecord>> oleInvoiceLineItemRecords = new HashMap<>();
018
019    public Map<String, List<OleInvoiceRecord>> getOleInvoiceLineItemRecords() {
020        return oleInvoiceLineItemRecords;
021    }
022
023    public void setOleInvoiceLineItemRecords(Map<String, List<OleInvoiceRecord>> oleInvoiceLineItemRecords) {
024        this.oleInvoiceLineItemRecords = oleInvoiceLineItemRecords;
025    }
026}