1 package org.kuali.student.r2.lum.lo.infc;
2
3 import org.kuali.student.r2.common.infc.KeyEntity;
4
5 import java.util.Date;
6
7 public interface LoRepository extends KeyEntity {
8
9 // TODO JAVADOCS
10
11 public String getRootLoId();
12 public Date getEffectiveDate();
13 public Date getExpirationDate();
14
15 }