001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: palanivel 006 * Date: 9/26/13 007 * Time: 2:33 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class PartyInformation { 011 private String codeIdentification; 012 private String partyIdentificationCode; 013 private String codeListAgency; 014 015 public String getCodeIdentification() { 016 return codeIdentification; 017 } 018 019 public void setCodeIdentification(String codeIdentification) { 020 this.codeIdentification = codeIdentification; 021 } 022 023 public String getPartyIdentificationCode() { 024 return partyIdentificationCode; 025 } 026 027 public void setPartyIdentificationCode(String partyIdentificationCode) { 028 this.partyIdentificationCode = partyIdentificationCode; 029 } 030 031 public String getCodeListAgency() { 032 return codeListAgency; 033 } 034 035 public void setCodeListAgency(String codeListAgency) { 036 this.codeListAgency = codeListAgency; 037 } 038}