1 package org.kuali.ole.pojo.edi;
2
3
4
5
6
7
8
9
10 public class BuyerPartyQualifier {
11 private String buyer;
12 private BuyerInformation buyerInformation;
13
14 public String getBuyer() {
15 return buyer;
16 }
17
18 public void setBuyer(String buyer) {
19 this.buyer = buyer;
20 }
21
22 public BuyerInformation getBuyerInformation() {
23 return buyerInformation;
24 }
25
26 public void setBuyerInformation(BuyerInformation buyerInformation) {
27 this.buyerInformation = buyerInformation;
28 }
29 }