View Javadoc
1   package org.kuali.ole.bo.explain;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: ?
6    * Date: 7/20/12
7    * Time: 4:06 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OleSRUExplainIndexMapName {
11  
12      private String set;
13      private String Value;
14  
15      public String getValue() {
16          return Value;
17      }
18  
19      public void setValue(String value) {
20          Value = value;
21      }
22  
23      public String getSet() {
24          return set;
25      }
26  
27      public void setSet(String set) {
28          this.set = set;
29      }
30  
31      @Override
32      public String toString() {
33          return "Explain IndexMapName{" +
34                  "set='" + set + '\'' +
35                  ", Value='" + Value + '\'' +
36                  '}';
37      }
38  }