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 OleSourceContract extends Versioned, Identifiable { 14 15 public String getOleSourceId(); 16 17 public String getOleSourceCode(); 18 19 public String getOleSourceName(); 20 21 public String getOleSourceDesc(); 22 23 public boolean isActive(); 24 25 }