mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
78403: Merged EOL (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud) 75700: ACE-2149: EOL AVM / WCM - Remove most of the AVM and WCM beans, scripts, classes, patches, etc - The Explorer client is very broken for compilation - TODO: Remove all WCM-related functionality, which I thought would be best left to a UI dev I've murdered many of the classes and beans but there's more to do - The repository compiles TODO: Get it running again - TODO: Check if we can wipe the 'deployment' project as well git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82540 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -22,7 +22,6 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.ibatis.BatchingDAO;
|
||||
import org.alfresco.repo.domain.avm.AVMNodeEntity;
|
||||
import org.alfresco.repo.domain.contentdata.ContentDataDAO;
|
||||
import org.alfresco.service.cmr.repository.ContentData;
|
||||
import org.apache.ibatis.session.ResultHandler;
|
||||
@@ -51,46 +50,6 @@ public abstract class AbstractPatchDAOImpl implements PatchDAO, BatchingDAO
|
||||
this.contentDataDAO = contentDataDAO;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public long getAVMNodesCountWhereNewInStore()
|
||||
{
|
||||
return getAVMNodeEntitiesCountWhereNewInStore();
|
||||
}
|
||||
|
||||
public List<AVMNodeEntity> getEmptyGUIDS(int count)
|
||||
{
|
||||
return getAVMNodeEntitiesWithEmptyGUID(count);
|
||||
}
|
||||
|
||||
public List<AVMNodeEntity> getNullVersionLayeredDirectories(int count)
|
||||
{
|
||||
return getNullVersionLayeredDirectoryNodeEntities(count);
|
||||
}
|
||||
|
||||
public List<AVMNodeEntity> getNullVersionLayeredFiles(int count)
|
||||
{
|
||||
return getNullVersionLayeredFileNodeEntities(count);
|
||||
}
|
||||
|
||||
public int updateAVMNodesNullifyAcl(List<Long> nodeIds)
|
||||
{
|
||||
return updateAVMNodeEntitiesNullifyAcl(nodeIds);
|
||||
}
|
||||
|
||||
public int updateAVMNodesSetAcl(long aclId, List<Long> nodeIds)
|
||||
{
|
||||
return updateAVMNodeEntitiesSetAcl(aclId, nodeIds);
|
||||
}
|
||||
|
||||
protected abstract long getAVMNodeEntitiesCountWhereNewInStore();
|
||||
protected abstract List<AVMNodeEntity> getAVMNodeEntitiesWithEmptyGUID(int maxResults);
|
||||
protected abstract List<AVMNodeEntity> getNullVersionLayeredDirectoryNodeEntities(int maxResults);
|
||||
protected abstract List<AVMNodeEntity> getNullVersionLayeredFileNodeEntities(int maxResults);
|
||||
protected abstract int updateAVMNodeEntitiesNullifyAcl(List<Long> nodeIds);
|
||||
protected abstract int updateAVMNodeEntitiesSetAcl(long aclId, List<Long> nodeIds);
|
||||
|
||||
public long getMaxAclId()
|
||||
{
|
||||
return getMaxAclEntityId();
|
||||
@@ -224,15 +183,6 @@ public abstract class AbstractPatchDAOImpl implements PatchDAO, BatchingDAO
|
||||
|
||||
protected abstract void getOldAttrTenantsImpl(ResultHandler resultHandler);
|
||||
|
||||
// note: caller's row handler is expected to migrate the attrs
|
||||
@Override
|
||||
public void migrateOldAttrAVMLocks(ResultHandler resultHandler)
|
||||
{
|
||||
getOldAttrAVMLocksImpl(resultHandler);
|
||||
}
|
||||
|
||||
protected abstract void getOldAttrAVMLocksImpl(ResultHandler resultHandler);
|
||||
|
||||
// note: caller's row handler is expected to migrate the attrs
|
||||
@Override
|
||||
public void migrateOldAttrPropertyBackedBeans(ResultHandler resultHandler)
|
||||
|
Reference in New Issue
Block a user