001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created by IntelliJ IDEA. 005 * User: palanivel 006 * Date: 3/6/12 007 * Time: 4:07 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class SupplierInformation { 011 private String supplierCodeIdentification; 012 private String supplierPartyIdentificationCode; 013 private String supplierCodeListAgency; 014 015 public String getSupplierCodeIdentification() { 016 return supplierCodeIdentification; 017 } 018 019 public void setSupplierCodeIdentification(String supplierCodeIdentification) { 020 this.supplierCodeIdentification = supplierCodeIdentification; 021 } 022 023 public String getSupplierPartyIdentificationCode() { 024 return supplierPartyIdentificationCode; 025 } 026 027 public void setSupplierPartyIdentificationCode(String supplierPartyIdentificationCode) { 028 this.supplierPartyIdentificationCode = supplierPartyIdentificationCode; 029 } 030 031 public String getSupplierCodeListAgency() { 032 return supplierCodeListAgency; 033 } 034 035 public void setSupplierCodeListAgency(String supplierCodeListAgency) { 036 this.supplierCodeListAgency = supplierCodeListAgency; 037 } 038}