001package org.kuali.ole.deliver.api; 002 003import org.kuali.rice.core.api.mo.common.Identifiable; 004import org.kuali.rice.core.api.mo.common.Versioned; 005 006/** 007 * Created with IntelliJ IDEA. 008 * User: ? 009 * Date: 5/25/12 010 * Time: 12:31 PM 011 * To change this template use File | Settings | File Templates. 012 */ 013public interface OleStatisticalCategoryContract extends Versioned, Identifiable { 014 015 public String getOleStatisticalCategoryId(); 016 017 public String getOleStatisticalCategoryCode(); 018 019 public String getOleStatisticalCategoryName(); 020 021 public String getOleStatisticalCategoryDesc(); 022 023 public boolean isActive(); 024 025}