View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: ?
8    * Date: 10/15/12
9    * Time: 8:36 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OlePatronConfig {
13      List<OleConfigDocument> documents;
14  
15      /**
16       * Gets the value of documents property
17       *
18       * @return documents
19       */
20      public List<OleConfigDocument> getDocuments() {
21          return documents;
22      }
23  
24      /**
25       * Sets the value for documents property
26       *
27       * @param documents
28       */
29      public void setDocuments(List<OleConfigDocument> documents) {
30          this.documents = documents;
31      }
32  }