Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Lui |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.osedu.org/licenses/ECL-2.0 | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.student.enrollment.lui.infc; | |
17 | ||
18 | ||
19 | import org.kuali.student.common.infc.HasEffectiveDates; | |
20 | import org.kuali.student.common.infc.HasId; | |
21 | import org.kuali.student.common.infc.HasState; | |
22 | import org.kuali.student.common.infc.HasType; | |
23 | import org.kuali.student.common.infc.IdEntity; | |
24 | ||
25 | public interface Lui | |
26 | extends IdEntity, | |
27 | HasEffectiveDates { | |
28 | ||
29 | /** | |
30 | * Get ???? | |
31 | * <p/> | |
32 | * Type: String | |
33 | * <p/> | |
34 | * Code identifier/name for the LUI. This is typically used | |
35 | * human readable form (e.g. ENGL 100 section 123). | |
36 | */ | |
37 | public String getLuiCode(); | |
38 | ||
39 | /** | |
40 | * Get ???? | |
41 | * <p/> | |
42 | * Type: String | |
43 | * <p/> | |
44 | * Unique identifier for a Canonical Learning Unit (CLU). | |
45 | */ | |
46 | public String getCluId(); | |
47 | ||
48 | /** | |
49 | * Get ???? | |
50 | * <p/> | |
51 | * Type: String | |
52 | * <p/> | |
53 | * Unique identifier for an Academic Time Period (ATP). | |
54 | */ | |
55 | public String getAtpKey(); | |
56 | ||
57 | /** | |
58 | * Get ???? | |
59 | * <p/> | |
60 | * Type: Integer | |
61 | * <p/> | |
62 | * Maximum number of "seats" that the LUI will hold for registration. | |
63 | */ | |
64 | public Integer getMaxSeats(); | |
65 | ||
66 | } | |
67 |