1 package org.kuali.ole.pojo.edi; 2 3 /** 4 * Created by IntelliJ IDEA. 5 * User: palanivel 6 * Date: 3/5/12 7 * Time: 7:00 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public class SendersAndReceiversConstant { 11 12 private String code; 13 private String value; 14 15 16 public String getCode() { 17 return code; 18 } 19 20 public void setCode(String code) { 21 this.code = code; 22 } 23 24 public String getValue() { 25 return value; 26 } 27 28 public void setValue(String value) { 29 this.value = value; 30 } 31 32 33 }