View Javadoc
1   package org.kuali.ole.deliver.bo;
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/25/12
12   * Time: 3:12 PM
13   * To change this template use File | Settings | File Templates.
14   */
15  public interface OlePatronLoanDocumentContract extends Versioned, Identifiable {
16  
17      public String getItemBarcode();
18  
19      public String getTitle();
20  
21      public String getAuthor();
22  
23      public Date getDueDate();
24  
25      public String getLocation();
26  
27      public String getCallNumber();
28  
29      public String getMessageInfo();
30  
31  }