1   package org.kuali.ole.pojo.edi;
2   
3   
4   
5   
6   
7   
8   
9   
10  public class ItemDescription {
11      private String text;
12      private String itemCharacteristicCode;
13      private String data;
14  
15      public String getText() {
16          return text;
17      }
18  
19      public void setText(String text) {
20          this.text = text;
21      }
22  
23      public String getItemCharacteristicCode() {
24          return itemCharacteristicCode;
25      }
26  
27      public void setItemCharacteristicCode(String itemCharacteristicCode) {
28          this.itemCharacteristicCode = itemCharacteristicCode;
29      }
30  
31      public String getData() {
32          return data;
33      }
34  
35      public void setData(String data) {
36          this.data = data;
37      }
38  }