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   import java.sql.Timestamp;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * User: aurojyotit
11   * Date: 7/15/14
12   * Time: 11:57 AM
13   * To change this template use File | Settings | File Templates.
14   */
15  public interface OLEPatronDocumentNameContract extends Versioned, Identifiable {
16      public String getId() ;
17  
18      public String getOlePatronId() ;
19  
20      public String getNameCode() ;
21  
22      public String getFirstName() ;
23  
24      public String getMiddleName() ;
25  
26      public String getLastName() ;
27  
28      public String getNamePrefix() ;
29  
30      public String getNameTitle() ;
31  
32      public String getNameSuffix() ;
33  
34      public boolean isActive() ;
35  
36      public boolean isDefaultValue() ;
37      public String getNoteMessage() ;
38  
39      public Timestamp getNameChangedDate() ;
40  
41      public String getObjectId() ;
42  }