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 /**
7 * Created with IntelliJ IDEA.
8 * User: ?
9 * Date: 5/25/12
10 * Time: 12:31 PM
11 * To change this template use File | Settings | File Templates.
12 */
13 public interface OlePatronLocalIdentificationContract extends Versioned, Identifiable {
14
15 public String getPatronLocalSeqId();
16
17 public String getLocalId();
18
19 public String getOlePatronId();
20
21 public String getObjectId();
22
23 }