1 package org.kuali.ole.patron.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.util.Date;
7
8 /**
9 * Created with IntelliJ IDEA.
10 * User: ?
11 * Date: 10/26/12
12 * Time: 11:28 AM
13 * To change this template use File | Settings | File Templates.
14 */
15 public interface OlePatronLostBarcodeContract extends Versioned, Identifiable {
16
17 public String getOlePatronLostBarcodeId();
18
19 public String getOlePatronId();
20
21 public Date getInvalidOrLostBarcodeEffDate();
22
23 public String getInvalidOrLostBarcodeNumber();
24
25 }