1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.module.purap.util;
17
18 import org.kuali.ole.module.purap.businessobject.PurApSummaryItem;
19 import org.kuali.ole.sys.businessobject.SourceAccountingLine;
20
21 import java.util.ArrayList;
22 import java.util.List;
23
24
25
26
27
28
29 public class SummaryAccount {
30
31 private SourceAccountingLine account;
32 private List<PurApSummaryItem> items;
33
34
35
36
37 public SummaryAccount() {
38 super();
39 items = new ArrayList<PurApSummaryItem>();
40 }
41
42 public SummaryAccount(SourceAccountingLine account) {
43 super();
44 setAccount(account);
45 items = new ArrayList<PurApSummaryItem>();
46 }
47
48 public SourceAccountingLine getAccount() {
49 return account;
50 }
51
52 public void setAccount(SourceAccountingLine account) {
53 this.account = account;
54 }
55
56 public List<PurApSummaryItem> getItems() {
57 return items;
58 }
59
60 public void setItems(List<PurApSummaryItem> items) {
61 this.items = items;
62 }
63
64 }