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