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   /**
7    * Created with IntelliJ IDEA.
8    * User: ?
9    * Date: 5/25/12
10   * Time: 12:31 PM
11   * To change this template use File | Settings | File Templates.
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  }