View Javadoc

1   package org.kuali.ole.pojo.edi;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: palanivel
6    * Date: 3/6/12
7    * Time: 4:07 PM
8    * To change this template use File | Settings | File Templates.
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  }