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   /**
7    * Created with IntelliJ IDEA.
8    * User: ?
9    * Date: 5/28/12
10   * Time: 11:43 AM
11   * To change this template use File | Settings | File Templates.
12   */
13  public interface OlePatronNotesContract extends Versioned, Identifiable {
14  
15      public String getPatronNoteId();
16  
17      public String getOlePatronId();
18  
19      public String getPatronNoteText();
20  
21      public OlePatronNoteTypeContract getOlePatronNoteType();
22  
23      public boolean isActive();
24  
25      public String getObjectId();
26  
27      //public OlePatronContract getOlePatron();
28  }