View Javadoc
1   package org.kuali.ole.pojo.edi;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: palanivel
6    * Date: 9/26/13
7    * Time: 2:33 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class PartyInformation {
11      private String codeIdentification;
12      private String partyIdentificationCode;
13      private String codeListAgency;
14  
15      public String getCodeIdentification() {
16          return codeIdentification;
17      }
18  
19      public void setCodeIdentification(String codeIdentification) {
20          this.codeIdentification = codeIdentification;
21      }
22  
23      public String getPartyIdentificationCode() {
24          return partyIdentificationCode;
25      }
26  
27      public void setPartyIdentificationCode(String partyIdentificationCode) {
28          this.partyIdentificationCode = partyIdentificationCode;
29      }
30  
31      public String getCodeListAgency() {
32          return codeListAgency;
33      }
34  
35      public void setCodeListAgency(String codeListAgency) {
36          this.codeListAgency = codeListAgency;
37      }
38  }