001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created by IntelliJ IDEA. 005 * User: palanivel 006 * Date: 3/2/12 007 * Time: 2:22 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class ItemDescription { 011 private String text; 012 private String itemCharacteristicCode; 013 private String data; 014 015 public String getText() { 016 return text; 017 } 018 019 public void setText(String text) { 020 this.text = text; 021 } 022 023 public String getItemCharacteristicCode() { 024 return itemCharacteristicCode; 025 } 026 027 public void setItemCharacteristicCode(String itemCharacteristicCode) { 028 this.itemCharacteristicCode = itemCharacteristicCode; 029 } 030 031 public String getData() { 032 return data; 033 } 034 035 public void setData(String data) { 036 this.data = data; 037 } 038}