1 package org.kuali.ole.ingest.krms.pojo;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: vivekb
6 * Date: 8/21/12
7 * Time: 6:59 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class OleTerm {
11 private String type;
12 private String value;
13
14 public String getType() {
15 return type;
16 }
17
18 public void setType(String type) {
19 this.type = type;
20 }
21
22 public String getValue() {
23 return value;
24 }
25
26 public void setValue(String value) {
27 this.value = value;
28 }
29 }