001package org.kuali.ole.deliver.bo;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: ?
006 * Date: 10/15/12
007 * Time: 8:28 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OleConfigDocument {
011    private String documentName;
012    private String attribute;
013
014    /**
015     * Gets the value of documentName property
016     *
017     * @return documentName
018     */
019    public String getDocumentName() {
020        return documentName;
021    }
022
023    /**
024     * Sets the value for olePatronId property
025     *
026     * @param documentName
027     */
028    public void setDocumentName(String documentName) {
029        this.documentName = documentName;
030    }
031
032    /**
033     * Gets the value of attribute property
034     *
035     * @return attribute
036     */
037    public String getAttribute() {
038        return attribute;
039    }
040
041    /**
042     * Sets the value for olePatronId property
043     *
044     * @param attribute
045     */
046    public void setAttribute(String attribute) {
047        this.attribute = attribute;
048    }
049}