001    /**
002     * Copyright 2005-2013 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.rice.location.api.campus;
017    
018    import org.kuali.rice.core.api.mo.common.Coded;
019    import org.kuali.rice.core.api.mo.common.GloballyUnique;
020    import org.kuali.rice.core.api.mo.common.Versioned;
021    import org.kuali.rice.core.api.mo.common.active.Inactivatable;
022    
023    
024    /**
025     * <p>CampusContract interface.</p>
026     *
027     * @author Kuali Rice Team (rice.collab@kuali.org)
028     */
029    public interface CampusContract extends Versioned, GloballyUnique, Inactivatable, Coded {
030    
031            /**
032             * This is the name for the Campus.
033             *
034             * <p>
035             * It is a name a campus.
036             * </p>
037             *
038             * @return name for Campus.
039             */
040            String getName();
041    
042            /**
043             * This is the short name for the Campus.
044             *
045             * <p>
046             * It is a shorter name for a campus.
047             * </p>
048             *
049             * @return short name for Campus.
050             */
051            String getShortName();
052    
053            /**
054             * This is the campus type for the Campus.
055             *
056             * <p>
057             * It is a object that defines the type of a campus.
058             * </p>
059             *
060             * @return short name for Campus.
061             */
062            CampusTypeContract getCampusType();
063    }