View Javadoc
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: 7:04 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OleValue {
11      private String type;
12      private String name;
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 getName() {
23          return name;
24      }
25  
26      public void setName(String name) {
27          this.name = name;
28      }
29  }