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