1 package org.kuali.student.r2.lum.course.infc;
2
3 import java.util.List;
4
5 import org.kuali.student.r2.common.infc.IdNamelessEntity;
6 import org.kuali.student.r2.lum.clu.infc.AffiliatedOrg;
7
8 public interface CourseRevenue extends IdNamelessEntity {
9 /**
10 * A code that identifies the type of the fee with which this revenue is
11 * associated with.
12 *
13 * @name Fee Type
14 */
15 public String getFeeType();
16
17 /**
18 * List of affiliated organizations.
19 *
20 * @name Affiliated Organization
21 */
22 public List<? extends AffiliatedOrg> getAffiliatedOrgs();
23 }