View Javadoc

1   package org.kuali.ole.patron.api;
2   
3   import org.kuali.ole.patron.bo.OlePatronDocument;
4   import org.kuali.ole.patron.bo.OlePatronNoteType;
5   import org.kuali.rice.core.api.mo.common.Identifiable;
6   import org.kuali.rice.core.api.mo.common.Versioned;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * User: ?
11   * Date: 5/28/12
12   * Time: 11:43 AM
13   * To change this template use File | Settings | File Templates.
14   */
15  public interface OlePatronNotesContract extends Versioned, Identifiable {
16  
17      public String getPatronNoteId();
18  
19      public String getOlePatronId();
20  
21      public String getPatronNoteText();
22  
23      public OlePatronNoteTypeContract getOlePatronNoteType();
24  
25      public boolean isActive();
26  
27      public String getObjectId();
28  
29      //public OlePatronContract getOlePatron();
30  }