1   package org.kuali.ole.bo.explain;
2   
3   
4   
5   
6   
7   
8   
9   
10  public class OleSRUExplainIndexInfo {
11  
12      private OleSRUExplainIndexSet set;
13      private OleSRUExplainIndex index;
14  
15  
16      public OleSRUExplainIndexSet getSet() {
17          return set;
18      }
19  
20      public void setSet(OleSRUExplainIndexSet set) {
21          this.set = set;
22      }
23  
24      public OleSRUExplainIndex getIndex() {
25          return index;
26      }
27  
28      public void setIndex(OleSRUExplainIndex index) {
29          this.index = index;
30      }
31  
32      @Override
33      public String toString() {
34          return "Explain IndexInfo{" +
35                  "set=" + set +
36                  ", index=" + index +
37                  '}';
38      }
39  }