1 /**
2 * Copyright 2005-2012 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.location.api.campus;
17
18 import org.kuali.rice.core.api.mo.common.Coded;
19 import org.kuali.rice.core.api.mo.common.GloballyUnique;
20 import org.kuali.rice.core.api.mo.common.Versioned;
21 import org.kuali.rice.core.api.mo.common.active.Inactivatable;
22
23
24 /**
25 * <p>CampusContract interface.</p>
26 *
27 * @author Kuali Rice Team (rice.collab@kuali.org)
28 */
29 public interface CampusContract extends Versioned, GloballyUnique, Inactivatable, Coded {
30
31 /**
32 * This is the name for the Campus.
33 *
34 * <p>
35 * It is a name a campus.
36 * </p>
37 *
38 * @return name for Campus.
39 */
40 String getName();
41
42 /**
43 * This is the short name for the Campus.
44 *
45 * <p>
46 * It is a shorter name for a campus.
47 * </p>
48 *
49 * @return short name for Campus.
50 */
51 String getShortName();
52
53 /**
54 * This is the campus type for the Campus.
55 *
56 * <p>
57 * It is a object that defines the type of a campus.
58 * </p>
59 *
60 * @return short name for Campus.
61 */
62 CampusTypeContract getCampusType();
63 }