View Javadoc

1   package org.kuali.ole.patron.merge.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       * @return documents
18       */
19      public List<OleConfigDocument> getDocuments() {
20          return documents;
21      }
22  
23      /**
24       * Sets the value for documents property
25       * @param documents
26       */
27      public void setDocuments(List<OleConfigDocument> documents) {
28          this.documents = documents;
29      }
30  }