mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
78 lines
2.2 KiB
Java
78 lines
2.2 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.domain.hibernate;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.alfresco.error.AlfrescoRuntimeException;
|
|
import org.hibernate.CallbackException;
|
|
import org.hibernate.Session;
|
|
import org.hibernate.classic.Lifecycle;
|
|
|
|
/**
|
|
* Helper base class providing lifecycle and other support
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public abstract class LifecycleAdapter implements Lifecycle
|
|
{
|
|
/** Helper */
|
|
private Session session;
|
|
|
|
/**
|
|
* @return Returns the session that this object was used in
|
|
*/
|
|
protected Session getSession()
|
|
{
|
|
if (session == null)
|
|
{
|
|
throw new AlfrescoRuntimeException("Hibernate entity is not part of a session: " + this);
|
|
}
|
|
return session;
|
|
}
|
|
|
|
/**
|
|
* @return Returns NO_VETO always
|
|
*/
|
|
public boolean onDelete(Session session) throws CallbackException
|
|
{
|
|
return NO_VETO;
|
|
}
|
|
|
|
/** NO OP */
|
|
public void onLoad(Session session, Serializable id)
|
|
{
|
|
this.session = session;
|
|
}
|
|
|
|
/** @return Returns NO_VETO always */
|
|
public boolean onSave(Session session) throws CallbackException
|
|
{
|
|
this.session = session;
|
|
return NO_VETO;
|
|
}
|
|
|
|
/** @return Returns NO_VETO always */
|
|
public boolean onUpdate(Session session) throws CallbackException
|
|
{
|
|
this.session = session;
|
|
return NO_VETO;
|
|
}
|
|
}
|