1 | |
package org.kuali.student.enrollment.courseoffering.infc; |
2 | |
|
3 | |
|
4 | |
import org.kuali.student.r2.common.dto.TimeAmountInfo; |
5 | |
|
6 | |
public interface COCommonAssembly { |
7 | |
public Integer getMaximumEnrollment(); |
8 | |
public void setMaximumEnrollment(Integer maximumEnrollment); |
9 | |
|
10 | |
public Integer getMinimumEnrollment(); |
11 | |
public void setMinimumEnrollment(Integer minimumEnrollment); |
12 | |
|
13 | |
public String getWaitlistTypeKey(); |
14 | |
public void setWaitlistTypeKey(String waitlistTypeKey); |
15 | |
|
16 | |
public Integer getWaitlistMaximum(); |
17 | |
public void setWaitlistMaximum(Integer waitlistMaximum); |
18 | |
|
19 | |
public Boolean getHasWaitlist(); |
20 | |
public void setHasWaitlist(Boolean hasWaitlist); |
21 | |
|
22 | |
public Boolean getIsWaitlistCheckinRequired(); |
23 | |
public void setIsWaitlistCheckinRequired(Boolean isWaitlistCheckinRequired); |
24 | |
|
25 | |
public TimeAmountInfo getWaitlistCheckinFrequency(); |
26 | |
public void setWaitlistCheckinFrequency(TimeAmountInfo waitlistCheckinFrequency); |
27 | |
|
28 | |
public Boolean getIsHonorsOffering(); |
29 | |
public void setIsHonorsOffering(Boolean isHonorsOffering); |
30 | |
|
31 | |
} |