1 package org.kuali.ole.pojo.edi;
2
3
4
5
6
7
8
9
10 public class PartyInformation {
11 private String codeIdentification;
12 private String partyIdentificationCode;
13 private String codeListAgency;
14
15 public String getCodeIdentification() {
16 return codeIdentification;
17 }
18
19 public void setCodeIdentification(String codeIdentification) {
20 this.codeIdentification = codeIdentification;
21 }
22
23 public String getPartyIdentificationCode() {
24 return partyIdentificationCode;
25 }
26
27 public void setPartyIdentificationCode(String partyIdentificationCode) {
28 this.partyIdentificationCode = partyIdentificationCode;
29 }
30
31 public String getCodeListAgency() {
32 return codeListAgency;
33 }
34
35 public void setCodeListAgency(String codeListAgency) {
36 this.codeListAgency = codeListAgency;
37 }
38 }