View Javadoc
1   package org.kuali.ole.pojo;
2   
3   import java.util.ArrayList;
4   import java.util.HashMap;
5   import java.util.List;
6   import java.util.Map;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * User: palanivel
11   * Date: 7/30/13
12   * Time: 3:02 PM
13   * To change this template use File | Settings | File Templates.
14   */
15  public class OleInvoiceRecordHandler {
16  
17      private Map<String, List<OleInvoiceRecord>> oleInvoiceLineItemRecords = new HashMap<>();
18  
19      public Map<String, List<OleInvoiceRecord>> getOleInvoiceLineItemRecords() {
20          return oleInvoiceLineItemRecords;
21      }
22  
23      public void setOleInvoiceLineItemRecords(Map<String, List<OleInvoiceRecord>> oleInvoiceLineItemRecords) {
24          this.oleInvoiceLineItemRecords = oleInvoiceLineItemRecords;
25      }
26  }