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   
8   
9   
10  
11  
12  
13  public interface OleStatisticalCategoryContract extends Versioned, Identifiable {
14  
15      public String getOleStatisticalCategoryId();
16  
17      public String getOleStatisticalCategoryCode();
18  
19      public String getOleStatisticalCategoryName();
20  
21      public String getOleStatisticalCategoryDesc();
22  
23      public boolean isActive();
24  
25  }