1 package org.kuali.ole.describe.bo;
2
3 import java.io.Serializable;
4
5 /**
6 * DublinEditorField is business object class for Dublin Editor
7 */
8 public class WorkDublinEditorField implements Serializable {
9
10 private String element;
11 private String value;
12
13 /**
14 * Gets the element attribute.
15 *
16 * @return Returns the element.
17 */
18 public String getElement() {
19 return element;
20 }
21
22 /**
23 * Sets the element attribute value.
24 *
25 * @param element The element to set.
26 */
27 public void setElement(String element) {
28 this.element = element;
29 }
30
31 /**
32 * Gets the value attribute.
33 *
34 * @return Returns the value.
35 */
36 public String getValue() {
37 return value;
38 }
39
40 /**
41 * Sets the value attribute value.
42 *
43 * @param value The value to set.
44 */
45 public void setValue(String value) {
46 this.value = value;
47 }
48 }