1 package org.kuali.ole.patron.merge.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 * @return documentName
17 */
18 public String getDocumentName() {
19 return documentName;
20 }
21
22 /**
23 * Sets the value for olePatronId property
24 * @param documentName
25 */
26 public void setDocumentName(String documentName) {
27 this.documentName = documentName;
28 }
29
30 /**
31 * Gets the value of attribute property
32 * @return attribute
33 */
34 public String getAttribute() {
35 return attribute;
36 }
37 /**
38 * Sets the value for olePatronId property
39 * @param attribute
40 */
41 public void setAttribute(String attribute) {
42 this.attribute = attribute;
43 }
44 }