View Javadoc
1   package org.kuali.ole.systemintegration.rest.circulation.json;
2   
3   
4   import org.kuali.ole.docstore.model.xmlpojo.work.einstance.oleml.EInstance;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: sheiksalahudeenm
9    * Date: 3/10/14
10   * Time: 7:59 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class InstanceCollection {
14      protected EInstance eInstance;
15      protected InstanceRecord instance;
16  
17  
18      public EInstance geteInstance() {
19          return eInstance;
20      }
21  
22      public void seteInstance(EInstance eInstance) {
23          this.eInstance = eInstance;
24      }
25  
26      public InstanceRecord getInstance() {
27          return instance;
28      }
29  
30      public void setInstance(InstanceRecord instance) {
31          this.instance = instance;
32      }
33  }