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.bo;
017
018import org.kuali.rice.core.api.mo.common.GloballyUnique;
019import org.kuali.rice.core.api.mo.common.Versioned;
020
021import java.util.Collection;
022import java.util.List;
023import java.util.UUID;
024
025/**
026 * Declares a common interface for all {@link BusinessObject} classes which can have their
027 * state persisted.  A business object which is persistable defines some additional methods
028 * which allow for various operations to be executed that relate to the persistent nature of
029 * the business object.  A persistable business object also has some additional data
030 * attributes which include the version number, the object id, and the extension.
031 * 
032 * <p>The version number indicates the version of the business object when it was retrieved
033 * from persistent storage.  This allows for services to check this version number
034 * during persistence operations to prevent silent overwrites of business object state.
035 * These kinds of scenarios might arise as a result of concurrent modification to the business
036 * object in the persistent store (i.e. two web application users updating the same record
037 * in a database).  The kind of check which would be performed using the version number is commonly
038 * referred to as "optimistic locking".
039 * 
040 * <p>The object id represents a globally unique identifier for the business object.  In practice,
041 * this can be used by other portions of the system to link to persistable business objects which
042 * might be stored in different locations or even different persistent data stores.  In general, it
043 * is not the responsibility of the client who implements a persistable business object to handle
044 * generating this value.  The framework will handle this automatically at the point in time when
045 * the business object is persisted.  If the client does need to do this themselves, however, care
046 * should be taken that an appropriate globally unique value generator algorithm is used 
047 * (such as the one provided by {@link UUID}).
048 * 
049 * <p>The extension object is primarily provided for the purposes of allowing implementer
050 * customization of the business object without requiring the original business object to be
051 * modified.  The additional {@link PersistableBusinessObjectExtension} which is linked with the
052 * parent business object can contain additional data attributes and methods.  The framework will
053 * automatically request that this extension object be persisted when the parent business object
054 * is persisted.  This is generally the most useful in cases where an application is defining
055 * business objects that will be used in redistributable software packages (such as the
056 * actual Kuali Foundation projects themselves).  If using the framework for the purposes
057 * of implementing an internal application, the use of a business object extensions
058 * is likely unnecessary.
059 * 
060 * @author Kuali Rice Team (rice.collab@kuali.org)
061 * @deprecated use new KRAD Data framework {@link org.kuali.rice.krad.data.DataObjectService}
062 */
063@Deprecated
064public interface PersistableBusinessObject extends BusinessObject, Versioned, GloballyUnique {
065
066    /**
067     * Sets the business object's version number.  It is rarely advisable
068     * for client code to manually set this value as the framework should
069     * generally handle the management of version numbers internally.
070     * 
071     * @param versionNumber the version number to set on this business object
072     */
073    public void setVersionNumber(Long versionNumber);
074    
075    /**
076     * Sets the unique identifier for the object
077     * 
078     * @param objectId
079     */
080    public void setObjectId(String objectId);
081   
082    public PersistableBusinessObjectExtension getExtension();
083
084    public void setExtension(PersistableBusinessObjectExtension extension);
085    
086    /**
087     * @see BusinessObject#refresh()
088     */
089    public abstract void refreshNonUpdateableReferences();
090
091    /**
092     * This method is used to refresh a reference object that hangs off of a document. For example, if the attribute's keys were
093     * updated for a reference object, but the reference object wasn't, this method would go out and retrieve the reference object.
094     * 
095     * @param referenceObjectName
096     */
097    public abstract void refreshReferenceObject(String referenceObjectName);
098
099    /**
100     * If this method is not implemented appropriately for PersistableBusinessObject with collections, then PersistableBusinessObject with collections will not persist deletions correctly.
101     * Elements that have been deleted will reappear in the DB after retrieval.
102     * 
103     * @return List of collections which need to be monitored for changes by OJB
104     */
105    public List<Collection<PersistableBusinessObject>> buildListOfDeletionAwareLists();
106
107    /**
108     * Returns the boolean indicating whether this record is a new record of a maintenance document collection.
109     * Used to determine whether the record can be deleted on the document.
110     */
111    public boolean isNewCollectionRecord();
112    
113    /**
114     * Sets the boolean indicating this record is a new record of a maintenance document collection.
115     * Used to determine whether the record can be deleted on the document.
116     */
117    public void setNewCollectionRecord(boolean isNewCollectionRecord);
118
119    /**
120     * Hook to link in any editable user fields.
121     */
122    public void linkEditableUserFields();
123
124    
125
126}