| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ScheduleRequestComponent |
|
| 1.0;1 |
| 1 | /** | |
| 2 | * Copyright 2011 The Kuali Foundation Licensed under the Educational | |
| 3 | * Community License, Version 2.0 (the "License"); you may not use | |
| 4 | * this file except in compliance with the License. You may obtain a | |
| 5 | * copy of the License at | |
| 6 | * | |
| 7 | * http://www.osedu.org/licenses/ECL-2.0 | |
| 8 | * | |
| 9 | * Unless required by applicable law or agreed to in writing, software | |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | |
| 12 | * implied. See the License for the specific language governing | |
| 13 | * permissions and limitations under the License. | |
| 14 | */ | |
| 15 | ||
| 16 | package org.kuali.student.r2.core.scheduling.infc; | |
| 17 | ||
| 18 | import org.kuali.student.r2.common.infc.HasId; | |
| 19 | ||
| 20 | import java.util.List; | |
| 21 | ||
| 22 | ||
| 23 | /** | |
| 24 | * Information about a Schedule Request Item. | |
| 25 | * | |
| 26 | * @author tom | |
| 27 | * @since Thu Nov 3 14:22:34 EDT 2011 | |
| 28 | */ | |
| 29 | ||
| 30 | public interface ScheduleRequestComponent extends HasId { | |
| 31 | ||
| 32 | /** | |
| 33 | * The Campus Id to specify a Campus. | |
| 34 | * | |
| 35 | * @name Campus Ids | |
| 36 | */ | |
| 37 | public List<String> getCampusIds(); | |
| 38 | ||
| 39 | /** | |
| 40 | * The Building Id to specify a Building. | |
| 41 | * | |
| 42 | * @name Building Ids | |
| 43 | */ | |
| 44 | public List<String> getBuildingIds(); | |
| 45 | ||
| 46 | /** | |
| 47 | * The Room Id to specify a Room. | |
| 48 | * | |
| 49 | * @name Room Ids | |
| 50 | */ | |
| 51 | public List<String> getRoomIds(); | |
| 52 | ||
| 53 | /** | |
| 54 | * The Org Id to specify a Room or Building "owned" by an | |
| 55 | * Organization. | |
| 56 | * | |
| 57 | * @name Org Ids | |
| 58 | */ | |
| 59 | public List<String> getOrgIds(); | |
| 60 | ||
| 61 | /** | |
| 62 | * The Resource Types to specify a Room with types of fixed | |
| 63 | * Resources. | |
| 64 | * | |
| 65 | * @name Resource Type Keys | |
| 66 | */ | |
| 67 | public List<String> getResourceTypeKeys(); | |
| 68 | ||
| 69 | /** | |
| 70 | * The Time Slot Ids to specify a time slot. | |
| 71 | * | |
| 72 | * @name Time Slot Ids | |
| 73 | */ | |
| 74 | public List<String> getTimeSlotIds(); | |
| 75 | } |