mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
- incl. taking Hibernate libs from 3.1 and adding missing file from earlier merge 13321: Fix ETHREEOH-1407: System error occur during "Undo Selected" action if no items are selected 13322: ETHREEOH-1206: Throwing Alfresco Exception on OnUpdateProperties behaviour resets Encoding field to Big (first entry) 13326: (RECORD ONLY) Removed 'dev' from version label. 13330: Fix ETHREEOH-1408: Incorrect button name at "Manage Task: Submitted" page 13337: Fix for ETHREEOH-1409 and further fix for ETHREEOH-1408 13338: Removed svn:mergeinfo 13346: Make startup bat script check JAVA can be found. 13351: ETHREEOH-1386 validate ASR and FSR hostname. 13359: ETHREEOH-1435: Share doesn't extract document metadata correctly 13360: Fix ETHREEOH-821: SDK dependencies 13369: Fixed distribute-sdk target for when it's run locally 13382: ETHREEOH-1437: Container creation induces an unexpected permission allocation in Share 13391: Shutdown backstop continues if logging throws errors. 13394: Fix ETHREEOH-1457 - MT coci issue with bootstrap (eg. data dictionary) content 13400: Activate JAWS-223: Adobe LC Hibernate Dialect Loading 13401: Support for JAWS-215, mysql and oracle 13413: Fix ETHREEOH-1458 - MT delete->archive ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/V3.1:r 13321-13322,13326-13327,13330,13337-13339,13341-13347,13351,13354-13355,13358-13363, 13365,13367,13369,13382,13385-13392,13394,13400-13403,13405-13406,13413 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13617 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
99 lines
3.3 KiB
Java
99 lines
3.3 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.node;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import org.alfresco.error.AlfrescoRuntimeException;
|
|
import org.alfresco.repo.tenant.TenantService;
|
|
import org.alfresco.service.cmr.repository.StoreRef;
|
|
|
|
/**
|
|
* A map component that maps <b>node stores</b> to their archive <b>stores</b>.
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class StoreArchiveMap
|
|
{
|
|
private Map<StoreRef, StoreRef> storeArchiveMap;
|
|
|
|
private TenantService tenantService;
|
|
|
|
public StoreArchiveMap()
|
|
{
|
|
storeArchiveMap = new HashMap<StoreRef, StoreRef>(0);
|
|
}
|
|
|
|
public void setTenantService(TenantService tenantService)
|
|
{
|
|
this.tenantService = tenantService;
|
|
}
|
|
|
|
public void setArchiveMap(Map<String, String> archiveMap)
|
|
{
|
|
// translate all the entries to references
|
|
for (Map.Entry<String, String> entry : archiveMap.entrySet())
|
|
{
|
|
String storeRefKeyStr = entry.getKey();
|
|
String storeRefValueStr = entry.getValue();
|
|
StoreRef storeRefKey = null;
|
|
StoreRef storeRefValue = null;
|
|
try
|
|
{
|
|
storeRefKey = new StoreRef(storeRefKeyStr);
|
|
storeRefValue = new StoreRef(storeRefValueStr);
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
throw new AlfrescoRuntimeException("Unable create store references from map entry: " + entry);
|
|
}
|
|
storeArchiveMap.put(storeRefKey, storeRefValue);
|
|
}
|
|
}
|
|
|
|
public StoreRef get(StoreRef storeRef)
|
|
{
|
|
if (tenantService.isEnabled())
|
|
{
|
|
return tenantService.getName(storeArchiveMap.get(tenantService.getBaseName(storeRef)));
|
|
}
|
|
else
|
|
{
|
|
return storeArchiveMap.get(storeRef);
|
|
}
|
|
}
|
|
|
|
public void put(StoreRef workStoreRef, StoreRef archiveStoreRef)
|
|
{
|
|
storeArchiveMap.put(workStoreRef, archiveStoreRef);
|
|
}
|
|
|
|
public void clear()
|
|
{
|
|
storeArchiveMap.clear();
|
|
}
|
|
}
|