Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LuiInfc |
|
| 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.HasAttributesAndMeta; | |
20 | import org.kuali.student.common.infc.HasEffectiveDates; | |
21 | import org.kuali.student.common.infc.HasId; | |
22 | import org.kuali.student.common.infc.HasState; | |
23 | import org.kuali.student.common.infc.HasType; | |
24 | ||
25 | public interface LuiInfc | |
26 | extends HasAttributesAndMeta, | |
27 | HasId, | |
28 | HasState, | |
29 | HasType, | |
30 | HasEffectiveDates { | |
31 | ||
32 | /** | |
33 | * Get ???? | |
34 | * <p/> | |
35 | * Type: String | |
36 | * <p/> | |
37 | * Code identifier/name for the LUI. This is typically used | |
38 | * human readable form (e.g. ENGL 100 section 123). | |
39 | */ | |
40 | public String getLuiCode(); | |
41 | ||
42 | /** | |
43 | * Get ???? | |
44 | * <p/> | |
45 | * Type: String | |
46 | * <p/> | |
47 | * Unique identifier for a Canonical Learning Unit (CLU). | |
48 | */ | |
49 | public String getCluId(); | |
50 | ||
51 | /** | |
52 | * Get ???? | |
53 | * <p/> | |
54 | * Type: String | |
55 | * <p/> | |
56 | * Unique identifier for an Academic Time Period (ATP). | |
57 | */ | |
58 | public String getAtpKey(); | |
59 | ||
60 | /** | |
61 | * Get ???? | |
62 | * <p/> | |
63 | * Type: Integer | |
64 | * <p/> | |
65 | * Maximum number of "seats" that the LUI will hold for registration. | |
66 | */ | |
67 | public Integer getMaxSeats(); | |
68 | ||
69 | } | |
70 |