001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created by palanivel on 14/8/14. 005 */ 006public class BuyerQualifier { 007 private String buyerCode; 008 private PartyInformation buyerInformation; 009 private String nameAndAddress; 010 private BuyerPartyName buyerName; 011 private PartyStreetName buyerStreetName; 012 private String buyerCityName; 013 private String buyerCountrySubEntity; 014 private String buyerPostalCode; 015 private String buyerCountryCode; 016 017 public String getBuyerCode() { 018 return buyerCode; 019 } 020 021 public void setBuyerCode(String buyerCode) { 022 this.buyerCode = buyerCode; 023 } 024 025 public PartyInformation getBuyerInformation() { 026 return buyerInformation; 027 } 028 029 public void setBuyerInformation(PartyInformation buyerInformation) { 030 this.buyerInformation = buyerInformation; 031 } 032 033 public String getNameAndAddress() { 034 return nameAndAddress; 035 } 036 037 public void setNameAndAddress(String nameAndAddress) { 038 this.nameAndAddress = nameAndAddress; 039 } 040 041 public BuyerPartyName getBuyerName() { 042 return buyerName; 043 } 044 045 public void setBuyerName(BuyerPartyName buyerName) { 046 this.buyerName = buyerName; 047 } 048 049 public PartyStreetName getBuyerStreetName() { 050 return buyerStreetName; 051 } 052 053 public void setBuyerStreetName(PartyStreetName buyerStreetName) { 054 this.buyerStreetName = buyerStreetName; 055 } 056 057 public String getBuyerCityName() { 058 return buyerCityName; 059 } 060 061 public void setBuyerCityName(String buyerCityName) { 062 this.buyerCityName = buyerCityName; 063 } 064 065 public String getBuyerCountrySubEntity() { 066 return buyerCountrySubEntity; 067 } 068 069 public void setBuyerCountrySubEntity(String buyerCountrySubEntity) { 070 this.buyerCountrySubEntity = buyerCountrySubEntity; 071 } 072 073 public String getBuyerPostalCode() { 074 return buyerPostalCode; 075 } 076 077 public void setBuyerPostalCode(String buyerPostalCode) { 078 this.buyerPostalCode = buyerPostalCode; 079 } 080 081 public String getBuyerCountryCode() { 082 return buyerCountryCode; 083 } 084 085 public void setBuyerCountryCode(String buyerCountryCode) { 086 this.buyerCountryCode = buyerCountryCode; 087 } 088}