View Javadoc
1   package org.kuali.ole.bo.explain;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: ?
6    * Date: 7/19/12
7    * Time: 7:41 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OleSRUExplainIndexSet {
11  
12      private String name;
13      private String identifier;
14      private String value;
15  
16      public String getValue() {
17          return value;
18      }
19  
20      public void setValue(String value) {
21          this.value = value;
22      }
23  
24      public String getName() {
25          return name;
26      }
27  
28      public void setName(String name) {
29          this.name = name;
30      }
31  
32      public String getIdentifier() {
33          return identifier;
34      }
35  
36      public void setIdentifier(String identifier) {
37          this.identifier = identifier;
38      }
39  
40      @Override
41      public String toString() {
42          return "Explain IndexSet{" +
43                  "name='" + name + '\'' +
44                  ", identifier='" + identifier + '\'' +
45                  ", value='" + value + '\'' +
46                  '}';
47      }
48  }