001package org.kuali.ole.deliver.bo;
002
003import java.util.List;
004
005/**
006 * Created with IntelliJ IDEA.
007 * User: ?
008 * Date: 10/15/12
009 * Time: 8:36 PM
010 * To change this template use File | Settings | File Templates.
011 */
012public class OlePatronConfig {
013    List<OleConfigDocument> documents;
014
015    /**
016     * Gets the value of documents property
017     *
018     * @return documents
019     */
020    public List<OleConfigDocument> getDocuments() {
021        return documents;
022    }
023
024    /**
025     * Sets the value for documents property
026     *
027     * @param documents
028     */
029    public void setDocuments(List<OleConfigDocument> documents) {
030        this.documents = documents;
031    }
032}