001package org.kuali.ole.bo.explain; 002 003 004/** 005 * Created with IntelliJ IDEA. 006 * User: ? 007 * Date: 7/19/12 008 * Time: 5:08 PM 009 * To change this template use File | Settings | File Templates. 010 */ 011public class OleSRUExplainIndex { 012 013 private OleSRUExplainIndexMap indexMap; 014 015 public OleSRUExplainIndexMap getIndexMap() { 016 return indexMap; 017 } 018 019 public void setIndexMap(OleSRUExplainIndexMap indexMap) { 020 this.indexMap = indexMap; 021 } 022 023 @Override 024 public String toString() { 025 return "Explain Index{" + 026 "indexMap=" + indexMap + 027 '}'; 028 } 029}