001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created by IntelliJ IDEA. 005 * User: palanivel 006 * Date: 3/6/12 007 * Time: 3:57 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class BuyerInformation { 011 012 private String buyerCodeIdentification; 013 private String buyerPartyIdentificationCode; 014 private String buyerCodeListAgency; 015 016 017 public String getBuyerCodeIdentification() { 018 return buyerCodeIdentification; 019 } 020 021 public void setBuyerCodeIdentification(String buyerCodeIdentification) { 022 this.buyerCodeIdentification = buyerCodeIdentification; 023 } 024 025 public String getBuyerPartyIdentificationCode() { 026 return buyerPartyIdentificationCode; 027 } 028 029 public void setBuyerPartyIdentificationCode(String buyerPartyIdentificationCode) { 030 this.buyerPartyIdentificationCode = buyerPartyIdentificationCode; 031 } 032 033 public String getBuyerCodeListAgency() { 034 return buyerCodeListAgency; 035 } 036 037 public void setBuyerCodeListAgency(String buyerCodeListAgency) { 038 this.buyerCodeListAgency = buyerCodeListAgency; 039 } 040}