View Javadoc
1   package org.kuali.ole.deliver.api;
2   
3   import org.kuali.rice.core.api.mo.common.Identifiable;
4   import org.kuali.rice.core.api.mo.common.Versioned;
5   
6   import java.sql.Timestamp;
7   import java.util.Date;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: ?
12   * Date: 10/26/12
13   * Time: 11:28 AM
14   * To change this template use File | Settings | File Templates.
15   */
16  public interface OlePatronLostBarcodeContract extends Versioned, Identifiable {
17  
18      public String getOlePatronLostBarcodeId();
19  
20      public String getOlePatronId();
21  
22      public Timestamp getInvalidOrLostBarcodeEffDate();
23  
24      public String getInvalidOrLostBarcodeNumber();
25  
26      public String getObjectId();
27  
28  
29  }