001package org.kuali.ole.pojo.edi;
002
003/**
004 * Created by IntelliJ IDEA.
005 * User: palanivel
006 * Date: 3/6/12
007 * Time: 3:56 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class BuyerPartyQualifier {
011    private String buyer;
012    private BuyerInformation buyerInformation;
013
014    public String getBuyer() {
015        return buyer;
016    }
017
018    public void setBuyer(String buyer) {
019        this.buyer = buyer;
020    }
021
022    public BuyerInformation getBuyerInformation() {
023        return buyerInformation;
024    }
025
026    public void setBuyerInformation(BuyerInformation buyerInformation) {
027        this.buyerInformation = buyerInformation;
028    }
029}