View Javadoc
1   package org.kuali.coeus.common.api.sponsor;
2   
3   import org.kuali.coeus.sys.api.model.Inactivatable;
4   
5   public interface SponsorContract extends Inactivatable {
6   
7       String getSponsorCode();
8   
9       String getAcronym();
10  
11      String getAuditReportSentForFy();
12  
13      String getCageNumber();
14  
15      String getCountryCode();
16  
17      String getDodacNumber();
18  
19      String getDunAndBradstreetNumber();
20  
21      String getDunsPlusFourNumber();
22  
23      String getOwnedByUnit();
24  
25      String getPostalCode();
26  
27      Integer getRolodexId();
28  
29      String getSponsorName();
30  
31      String getState();
32  
33      String getCreateUser();
34  
35      SponsorTypeContract getSponsorType();
36  }