1 package org.kuali.ole.pojo.edi;
2
3
4
5
6
7
8
9
10 public class SupplierInformation {
11 private String supplierCodeIdentification;
12 private String supplierPartyIdentificationCode;
13 private String supplierCodeListAgency;
14
15 public String getSupplierCodeIdentification() {
16 return supplierCodeIdentification;
17 }
18
19 public void setSupplierCodeIdentification(String supplierCodeIdentification) {
20 this.supplierCodeIdentification = supplierCodeIdentification;
21 }
22
23 public String getSupplierPartyIdentificationCode() {
24 return supplierPartyIdentificationCode;
25 }
26
27 public void setSupplierPartyIdentificationCode(String supplierPartyIdentificationCode) {
28 this.supplierPartyIdentificationCode = supplierPartyIdentificationCode;
29 }
30
31 public String getSupplierCodeListAgency() {
32 return supplierCodeListAgency;
33 }
34
35 public void setSupplierCodeListAgency(String supplierCodeListAgency) {
36 this.supplierCodeListAgency = supplierCodeListAgency;
37 }
38 }