1 package org.kuali.ole.deliver.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
19 public String getDocumentName() {
20 return documentName;
21 }
22
23
24
25
26
27
28 public void setDocumentName(String documentName) {
29 this.documentName = documentName;
30 }
31
32
33
34
35
36
37 public String getAttribute() {
38 return attribute;
39 }
40
41
42
43
44
45
46 public void setAttribute(String attribute) {
47 this.attribute = attribute;
48 }
49 }