1 package org.kuali.ole.pojo.edi;
2
3
4
5
6
7
8
9
10 public class BuyerInformation {
11
12 private String buyerCodeIdentification;
13 private String buyerPartyIdentificationCode;
14 private String buyerCodeListAgency;
15
16
17 public String getBuyerCodeIdentification() {
18 return buyerCodeIdentification;
19 }
20
21 public void setBuyerCodeIdentification(String buyerCodeIdentification) {
22 this.buyerCodeIdentification = buyerCodeIdentification;
23 }
24
25 public String getBuyerPartyIdentificationCode() {
26 return buyerPartyIdentificationCode;
27 }
28
29 public void setBuyerPartyIdentificationCode(String buyerPartyIdentificationCode) {
30 this.buyerPartyIdentificationCode = buyerPartyIdentificationCode;
31 }
32
33 public String getBuyerCodeListAgency() {
34 return buyerCodeListAgency;
35 }
36
37 public void setBuyerCodeListAgency(String buyerCodeListAgency) {
38 this.buyerCodeListAgency = buyerCodeListAgency;
39 }
40 }