001package org.kuali.ole.describe.bo;
002
003import java.io.Serializable;
004
005/**
006 * DublinEditorField is business object class for Dublin Editor
007 */
008public class WorkDublinEditorField implements Serializable {
009
010    private String element;
011    private String value;
012
013    /**
014     * Gets the element attribute.
015     *
016     * @return Returns the element.
017     */
018    public String getElement() {
019        return element;
020    }
021
022    /**
023     * Sets the element attribute value.
024     *
025     * @param element The element to set.
026     */
027    public void setElement(String element) {
028        this.element = element;
029    }
030
031    /**
032     * Gets the value attribute.
033     *
034     * @return Returns the value.
035     */
036    public String getValue() {
037        return value;
038    }
039
040    /**
041     * Sets the value attribute value.
042     *
043     * @param value The value to set.
044     */
045    public void setValue(String value) {
046        this.value = value;
047    }
048}