1 package org.kuali.ole.bo.explain;
2
3
4
5
6
7
8
9
10 public class OleSRUExplainSchema {
11
12 private String title;
13
14 private String name;
15 private String identifier;
16 private String value;
17
18 public String getValue() {
19 return value;
20 }
21
22 public void setValue(String value) {
23 this.value = value;
24 }
25
26 public String getName() {
27 return name;
28 }
29
30 public void setName(String name) {
31 this.name = name;
32 }
33
34 public String getIdentifier() {
35 return identifier;
36 }
37
38 public void setIdentifier(String identifier) {
39 this.identifier = identifier;
40 }
41
42 public String getTitle() {
43 return title;
44 }
45
46 public void setTitle(String title) {
47 this.title = title;
48 }
49
50 @Override
51 public String toString() {
52 return "Explain Schema{" +
53 "title='" + title + '\'' +
54 ", name='" + name + '\'' +
55 ", identifier='" + identifier + '\'' +
56 ", value='" + value + '\'' +
57 '}';
58 }
59 }