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: 3:57 PM
8    * To change this template use File | Settings | File Templates.
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  }