1 package org.kuali.ole.patron.merge.bo;
2
3
4
5
6
7
8
9
10 public class OleConfigDocument {
11 private String documentName;
12 private String attribute;
13
14
15
16
17
18 public String getDocumentName() {
19 return documentName;
20 }
21
22
23
24
25
26 public void setDocumentName(String documentName) {
27 this.documentName = documentName;
28 }
29
30
31
32
33
34 public String getAttribute() {
35 return attribute;
36 }
37
38
39
40
41 public void setAttribute(String attribute) {
42 this.attribute = attribute;
43 }
44 }