View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: ?
9    * Date: 2/19/13
10   * Time: 3:33 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OlePatronDocuments {
14  
15      private List<OlePatronDocument> olePatronDocuments = new ArrayList<OlePatronDocument>();
16  
17      public List<OlePatronDocument> getOlePatronDocuments() {
18          return olePatronDocuments;
19      }
20  
21      public void setOlePatronDocuments(List<OlePatronDocument> olePatronDocuments) {
22          this.olePatronDocuments = olePatronDocuments;
23      }
24  }