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