1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.pdp.businessobject;
17
18 import org.kuali.ole.fp.businessobject.DisbursementPayee;
19 import org.kuali.ole.sys.context.SpringContext;
20 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
21 import org.kuali.rice.krad.bo.KualiCode;
22 import org.kuali.rice.krad.service.BusinessObjectService;
23
24 public class ACHPayee extends DisbursementPayee implements MutableInactivatable {
25 private String entityId;
26
27 public ACHPayee() {
28 super();
29 }
30
31
32
33
34
35
36 public String getEntityId() {
37 return entityId;
38 }
39
40
41
42
43
44
45 public void setEntityId(String entityId) {
46 this.entityId = entityId;
47 }
48
49
50
51
52 @Override
53 public String getPayeeTypeDescription() {
54 KualiCode payeeType = (KualiCode) SpringContext.getBean(BusinessObjectService.class).findBySinglePrimaryKey(PayeeType.class, this.getPayeeTypeCode());
55
56 return payeeType.getName();
57 }
58
59 }