View Javadoc
1   package org.kuali.ole.systemintegration.rest.bo;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: srirams
8    * Date: 4/22/14
9    * Time: 3:19 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class Supplementaries {
13  
14      List<SerialReceivingSupplement> supplementary;
15  
16      public List<SerialReceivingSupplement> getSupplementary() {
17          return supplementary;
18      }
19  
20      public void setSupplementary(List<SerialReceivingSupplement> supplementary) {
21          this.supplementary = supplementary;
22      }
23  }