1 package org.kuali.coeus.sys.api.model; 2 3 /** 4 * This interface can be used to identify an object which has an active 5 * indicator. 6 */ 7 public interface Inactivatable { 8 9 /** 10 * The active indicator for an object. 11 * 12 * @return true if active false if not. 13 */ 14 boolean isActive(); 15 }