mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-10 14:11:58 +00:00
.externalToolBuilders
config
source
cpp
java
org
alfresco
example
filesys
jcr
linkvalidation
model
repo
action
admin
attributes
audit
avm
actions
hibernate
AVM.hbm.xml
AVMAspectNameDAOHibernate.java
AVMNodeDAOHibernate.java
AVMNodePropertyDAOHibernate.java
AVMStoreDAOHibernate.java
AVMStorePropertyDAOHibernate.java
ChildEntryDAOHibernate.java
HistoryLinkDAOHibernate.java
IssuerDAOHibernate.java
MergeLinkDAOHibernate.java
VersionLayeredNodeEntryDAOHibernate.java
VersionRootDAOHibernate.java
locking
util
wf
AVMAspectName.java
AVMAspectNameDAO.java
AVMAspectNameImpl.java
AVMCrawlTestP.java
AVMCrawler.java
AVMDAOs.java
AVMExpiredContentJob.java
AVMExpiredContentProcessor.java
AVMExpiredContentTest.java
AVMInterpreter.java
AVMLockingAwareService.java
AVMLookupCacheListener.java
AVMNode.java
AVMNodeConverter.java
AVMNodeConverterTest.java
AVMNodeDAO.java
AVMNodeImpl.java
AVMNodeProperty.java
AVMNodePropertyDAO.java
AVMNodePropertyImpl.java
AVMNodeService.java
AVMNodeType.java
AVMNodeUnwrapper.java
AVMRemoteLocal.java
AVMRemoteTransportService.java
AVMRepository.java
AVMServiceImpl.java
AVMServicePerfTest.java
AVMServiceTest.java
AVMServiceTestBase.java
AVMStore.java
AVMStoreDAO.java
AVMStoreImpl.java
AVMStoreProperty.java
AVMStorePropertyDAO.java
AVMStorePropertyImpl.java
AVMStressTestP.java
AVMSyncServiceImpl.java
AVMSyncServiceTransportImpl.java
AVMTestRemote.java
AVMTester.java
AvmBootstrap.java
BasicAttributes.java
BasicAttributesImpl.java
ChildEntry.java
ChildEntryDAO.java
ChildEntryImpl.java
ChildKey.java
CreateStoreCallback.java
CreateStoreTxnListener.java
CreateVersionCallback.java
CreateVersionTxnListener.java
DeletedNode.java
DeletedNodeImpl.java
DirectoryNode.java
DirectoryNodeImpl.java
FileNameValidator.java
FileNameValidatorTest.java
FileNode.java
FileNodeImpl.java
HistoryLink.java
HistoryLinkDAO.java
HistoryLinkImpl.java
Issuer.java
IssuerDAO.java
Layered.java
LayeredDirectoryNode.java
LayeredDirectoryNodeImpl.java
LayeredFileNode.java
LayeredFileNodeImpl.java
Lookup.java
LookupCache.java
LookupComponent.java
LookupKey.java
MergeLink.java
MergeLinkDAO.java
MergeLinkImpl.java
OrphanReaper.java
OrphanReaperJob.java
PlainDirectoryNode.java
PlainDirectoryNodeImpl.java
PlainFileNode.java
PlainFileNodeImpl.java
PurgeStoreCallback.java
PurgeStoreTxnListener.java
PurgeTestP.java
PurgeVersionCallback.java
PurgeVersionTxnListener.java
SimultaneousLoadTest.java
TestDeploymentCallback.java
VersionLayeredNodeEntry.java
VersionLayeredNodeEntryDAO.java
VersionLayeredNodeEntryImpl.java
VersionRoot.java
VersionRootDAO.java
VersionRootImpl.java
cache
clt
coci
configuration
content
copy
deploy
descriptor
dictionary
domain
exporter
forum
importer
jscript
lock
model
module
node
ownable
policy
processor
remote
rule
search
security
service
template
transaction
version
workflow
sandbox
service
tools
util
apache
queryRegister.dtd
meta-inf
test-resources
web
.classpath
.project
build.xml
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5186 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
146 lines
4.5 KiB
Java
146 lines
4.5 KiB
Java
/*
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing" */
|
|
|
|
package org.alfresco.repo.avm.hibernate;
|
|
|
|
import java.util.List;
|
|
|
|
import org.alfresco.repo.avm.AVMNode;
|
|
import org.alfresco.repo.avm.ChildEntry;
|
|
import org.alfresco.repo.avm.ChildEntryImpl;
|
|
import org.alfresco.repo.avm.ChildEntryDAO;
|
|
import org.alfresco.repo.avm.ChildKey;
|
|
import org.alfresco.repo.avm.DirectoryNode;
|
|
import org.hibernate.Query;
|
|
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
|
|
|
|
/**
|
|
* The Hibernate version of the ChildEntry DAO.
|
|
* @author britt
|
|
*/
|
|
class ChildEntryDAOHibernate extends HibernateDaoSupport implements
|
|
ChildEntryDAO
|
|
{
|
|
/**
|
|
* Do nothing constructor.
|
|
*/
|
|
public ChildEntryDAOHibernate()
|
|
{
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Save an unsaved ChildEntry.
|
|
* @param entry The entry to save.
|
|
*/
|
|
public void save(ChildEntry entry)
|
|
{
|
|
getSession().save(entry);
|
|
}
|
|
|
|
/**
|
|
* Get an entry by name and parent.
|
|
* @param name The name of the child to find.
|
|
* @param parent The parent to look in.
|
|
* @return The ChildEntry or null if not foun.
|
|
*/
|
|
public ChildEntry get(ChildKey key)
|
|
{
|
|
return (ChildEntry)getSession().get(ChildEntryImpl.class, key);
|
|
}
|
|
|
|
/**
|
|
* Get all the children of a given parent.
|
|
* @param parent The parent.
|
|
* @return A List of ChildEntries.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
public List<ChildEntry> getByParent(DirectoryNode parent)
|
|
{
|
|
Query query =
|
|
getSession().createQuery("from ChildEntryImpl ce where ce.key.parent = :parent");
|
|
query.setEntity("parent", parent);
|
|
return (List<ChildEntry>)query.list();
|
|
}
|
|
|
|
/**
|
|
* Get the entry for a given child in a given parent.
|
|
* @param parent The parent.
|
|
* @param child The child.
|
|
* @return The ChildEntry or null.
|
|
*/
|
|
public ChildEntry getByParentChild(DirectoryNode parent, AVMNode child)
|
|
{
|
|
Query query =
|
|
getSession().createQuery("from ChildEntryImpl ce where ce.key.parent = :parent " +
|
|
"and ce.child = :child");
|
|
query.setEntity("parent", parent);
|
|
query.setEntity("child", child);
|
|
return (ChildEntry)query.uniqueResult();
|
|
}
|
|
|
|
/**
|
|
* Get all the ChildEntries corresponding to the given child.
|
|
* @param child The child for which to look up entries.
|
|
* @return The matching entries.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
public List<ChildEntry> getByChild(AVMNode child)
|
|
{
|
|
Query query = getSession().createQuery("from ChildEntryImpl ce " +
|
|
"where ce.child = :child");
|
|
query.setEntity("child", child);
|
|
return (List<ChildEntry>)query.list();
|
|
}
|
|
|
|
/**
|
|
* Update a dirty ChildEntry.
|
|
* @param child The dirty entry.
|
|
*/
|
|
public void update(ChildEntry child)
|
|
{
|
|
// NO OP in Hibernate.
|
|
}
|
|
|
|
/**
|
|
* Delete one.
|
|
* @param child The one to delete.
|
|
*/
|
|
public void delete(ChildEntry child)
|
|
{
|
|
getSession().delete(child);
|
|
}
|
|
|
|
// TODO Does this have dangerous interactions with the cache?
|
|
/**
|
|
* Delete all children of the given parent.
|
|
* @param parent The parent.
|
|
*/
|
|
public void deleteByParent(AVMNode parent)
|
|
{
|
|
Query delete = getSession().getNamedQuery("ChildEntry.DeleteByParent");
|
|
delete.setEntity("parent", parent);
|
|
delete.executeUpdate();
|
|
}
|
|
}
|