View Javadoc
1   package org.kuali.ole.bo.explain;
2   
3   
4   /**
5    * Created with IntelliJ IDEA.
6    * User: ?
7    * Date: 7/19/12
8    * Time: 5:08 PM
9    * To change this template use File | Settings | File Templates.
10   */
11  public class OleSRUExplainIndex {
12  
13      private OleSRUExplainIndexMap indexMap;
14  
15      public OleSRUExplainIndexMap getIndexMap() {
16          return indexMap;
17      }
18  
19      public void setIndexMap(OleSRUExplainIndexMap indexMap) {
20          this.indexMap = indexMap;
21      }
22  
23      @Override
24      public String toString() {
25          return "Explain Index{" +
26                  "indexMap=" + indexMap +
27                  '}';
28      }
29  }