1 package org.kuali.ole.deliver.bo;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: ?
6 * Date: 10/15/12
7 * Time: 8:28 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class OleConfigDocument {
11 private String documentName;
12 private String attribute;
13
14 /**
15 * Gets the value of documentName property
16 *
17 * @return documentName
18 */
19 public String getDocumentName() {
20 return documentName;
21 }
22
23 /**
24 * Sets the value for olePatronId property
25 *
26 * @param documentName
27 */
28 public void setDocumentName(String documentName) {
29 this.documentName = documentName;
30 }
31
32 /**
33 * Gets the value of attribute property
34 *
35 * @return attribute
36 */
37 public String getAttribute() {
38 return attribute;
39 }
40
41 /**
42 * Sets the value for olePatronId property
43 *
44 * @param attribute
45 */
46 public void setAttribute(String attribute) {
47 this.attribute = attribute;
48 }
49 }