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