001/**
002 * Copyright 2005-2014 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 */
016package org.kuali.rice.krad.data.metadata;
017
018import java.io.Serializable;
019
020/**
021* An interface for attributes common to all primary metadata objects. (name, backing object, labels, etc...)
022*
023* @author Kuali Rice Team (rice.collab@kuali.org)
024*/
025public interface MetadataCommon extends Serializable {
026
027    /**
028    * {@link MetadataMergeAction} which determines how to handle the embedding of this object when multiple metadata
029    * providers are in use.
030    *
031    * @see MetadataMergeAction
032    * @return the merge action to use when embedding this metadata when multiple metadata providers are in use
033    */
034        MetadataMergeAction getMergeAction();
035
036    /**
037    * Provider specific name of the persistent storage behind this object type. For a data object, this would likely be
038    * the table name. For an attribute, this would be the table column name. It is to be used for reference purposes
039    * only.
040    *
041    * The default implementation will return the name property if none is provided by the metadata providers.
042    *
043    * @return String representing the backing object. Must not return null.
044    */
045        String getBackingObjectName();
046
047    /**
048    * The name of the object as known to the system. This would be the class name, attribute name, etc...
049    *
050    * @return name
051    */
052        String getName();
053
054    /**
055    * The user displayed name of the object.
056    *
057    * @return user diplayed name
058    */
059        String getLabel();
060
061    /**
062    * A shorter version of the user displayed name of the object.
063    *
064    * @return short name
065    */
066        String getShortLabel();
067
068    /**
069    * A longer description of the object.
070    *
071    * This can be used to provide a more complete description of the data object and its purpose. This information can
072    * be used when displaying help information to the end-user.
073    *
074    * @return description
075    */
076        String getDescription();
077
078    /**
079    * Whether this metadata object should be considered read-only by calling code.
080    *
081    * <p>
082    * That is, the persistence layer is not likely to accept/persist an update to this object, attribute, collection,
083    * reference.
084    * </p>
085    *
086    * @return whether metadata read-only
087    */
088        boolean isReadOnly();
089}