001package org.kuali.ole.systemintegration.rest.circulation.json;
002
003
004import org.kuali.ole.docstore.model.xmlpojo.work.einstance.oleml.EInstance;
005
006/**
007 * Created with IntelliJ IDEA.
008 * User: sheiksalahudeenm
009 * Date: 3/10/14
010 * Time: 7:59 PM
011 * To change this template use File | Settings | File Templates.
012 */
013public class InstanceCollection {
014    protected EInstance eInstance;
015    protected InstanceRecord instance;
016
017
018    public EInstance geteInstance() {
019        return eInstance;
020    }
021
022    public void seteInstance(EInstance eInstance) {
023        this.eInstance = eInstance;
024    }
025
026    public InstanceRecord getInstance() {
027        return instance;
028    }
029
030    public void setInstance(InstanceRecord instance) {
031        this.instance = instance;
032    }
033}