| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CampusType |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2007 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.opensource.org/licenses/ecl2.php | |
| 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.rice.kns.bo; | |
| 17 | ||
| 18 | /** | |
| 19 | * Interface for CampusType. | |
| 20 | * | |
| 21 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 22 | * | |
| 23 | */ | |
| 24 | public interface CampusType extends ExternalizableBusinessObject { | |
| 25 | ||
| 26 | /** | |
| 27 | * Returns the campusTypeCode | |
| 28 | * | |
| 29 | * @see org.kuali.rice.kns.bo.CampusTypeEBO#getCampusTypeCode() | |
| 30 | */ | |
| 31 | public String getCampusTypeCode(); | |
| 32 | ||
| 33 | /** | |
| 34 | * Sets the campusTypeCode attribute. | |
| 35 | * | |
| 36 | * @param campusTypeCode The campusTypeCode to set. | |
| 37 | * | |
| 38 | */ | |
| 39 | public void setCampusTypeCode(String campusTypeCode); | |
| 40 | ||
| 41 | /** | |
| 42 | * returns dataObjectMaintenanceCodeActiveIndicator | |
| 43 | * | |
| 44 | * @see org.kuali.rice.kns.bo.CampusTypeEBO#getDataObjectMaintenanceCodeActiveIndicator() | |
| 45 | */ | |
| 46 | public boolean getDataObjectMaintenanceCodeActiveIndicator(); | |
| 47 | ||
| 48 | /** | |
| 49 | * Sets the dataObjectMaintenanceCodeActiveIndicator attribute. | |
| 50 | * | |
| 51 | * @param dataObjectMaintenanceCodeActiveIndicator The dataObjectMaintenanceCodeActiveIndicator to set. | |
| 52 | * | |
| 53 | */ | |
| 54 | public void setDataObjectMaintenanceCodeActiveIndicator( | |
| 55 | boolean dataObjectMaintenanceCodeActiveIndicator); | |
| 56 | ||
| 57 | /** | |
| 58 | * returns campusName | |
| 59 | * | |
| 60 | * @see org.kuali.rice.kns.bo.CampusTypeEBO#getCampusTypeName() | |
| 61 | */ | |
| 62 | public String getCampusTypeName(); | |
| 63 | ||
| 64 | /** | |
| 65 | * Sets the campusTypeName attribute. | |
| 66 | * | |
| 67 | * @param campusTypeName The campusTypeName to set. | |
| 68 | * | |
| 69 | */ | |
| 70 | public void setCampusTypeName(String campusTypeName); | |
| 71 | ||
| 72 | /** | |
| 73 | * returns isActive | |
| 74 | * | |
| 75 | * @see org.kuali.rice.kns.bo.CampusTypeEBO#isActive() | |
| 76 | */ | |
| 77 | public boolean isActive(); | |
| 78 | ||
| 79 | /** | |
| 80 | * @param active the active to set | |
| 81 | */ | |
| 82 | public void setActive(boolean active); | |
| 83 | ||
| 84 | } |