1 package org.kuali.ole.pojo.edi;
2
3
4
5
6 public class BuyerQualifier {
7 private String buyerCode;
8 private PartyInformation buyerInformation;
9 private String nameAndAddress;
10 private BuyerPartyName buyerName;
11 private PartyStreetName buyerStreetName;
12 private String buyerCityName;
13 private String buyerCountrySubEntity;
14 private String buyerPostalCode;
15 private String buyerCountryCode;
16
17 public String getBuyerCode() {
18 return buyerCode;
19 }
20
21 public void setBuyerCode(String buyerCode) {
22 this.buyerCode = buyerCode;
23 }
24
25 public PartyInformation getBuyerInformation() {
26 return buyerInformation;
27 }
28
29 public void setBuyerInformation(PartyInformation buyerInformation) {
30 this.buyerInformation = buyerInformation;
31 }
32
33 public String getNameAndAddress() {
34 return nameAndAddress;
35 }
36
37 public void setNameAndAddress(String nameAndAddress) {
38 this.nameAndAddress = nameAndAddress;
39 }
40
41 public BuyerPartyName getBuyerName() {
42 return buyerName;
43 }
44
45 public void setBuyerName(BuyerPartyName buyerName) {
46 this.buyerName = buyerName;
47 }
48
49 public PartyStreetName getBuyerStreetName() {
50 return buyerStreetName;
51 }
52
53 public void setBuyerStreetName(PartyStreetName buyerStreetName) {
54 this.buyerStreetName = buyerStreetName;
55 }
56
57 public String getBuyerCityName() {
58 return buyerCityName;
59 }
60
61 public void setBuyerCityName(String buyerCityName) {
62 this.buyerCityName = buyerCityName;
63 }
64
65 public String getBuyerCountrySubEntity() {
66 return buyerCountrySubEntity;
67 }
68
69 public void setBuyerCountrySubEntity(String buyerCountrySubEntity) {
70 this.buyerCountrySubEntity = buyerCountrySubEntity;
71 }
72
73 public String getBuyerPostalCode() {
74 return buyerPostalCode;
75 }
76
77 public void setBuyerPostalCode(String buyerPostalCode) {
78 this.buyerPostalCode = buyerPostalCode;
79 }
80
81 public String getBuyerCountryCode() {
82 return buyerCountryCode;
83 }
84
85 public void setBuyerCountryCode(String buyerCountryCode) {
86 this.buyerCountryCode = buyerCountryCode;
87 }
88 }