mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125767 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1) 125473 amorarasu: Merged 5.0.N (5.0.4) to 5.1.N (5.1.2) 125055 cturlica: Merged V4.2-BUG-FIX (4.2.7) to 5.0.N (5.0.4) (PARTIAL MERGE) 124999 adragoi: Merged DEV to V4.2-BUG-FIX (4.2.7) 124402 adragoi: MNT-15368 : Time Consumed for Updating Folder Permission - implemented an approach that uses a separate, asynchronous processes that sets fixed ACL's git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127794 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
53 lines
1.8 KiB
Java
53 lines
1.8 KiB
Java
/*
|
|
* Copyright (C) 2005-2016 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.permissions;
|
|
|
|
import org.alfresco.error.AlfrescoRuntimeException;
|
|
import org.quartz.Job;
|
|
import org.quartz.JobDataMap;
|
|
import org.quartz.JobExecutionContext;
|
|
import org.quartz.JobExecutionException;
|
|
|
|
/**
|
|
* Triggers setFixedAcl for those nodes with ASPECT_PENDING_FIX_ACL
|
|
*
|
|
* @author Andreea Dragoi
|
|
* @since 4.2.7
|
|
*
|
|
*/
|
|
public class FixedAclUpdaterJob implements Job
|
|
{
|
|
|
|
/**
|
|
* Calls {@link FixedAclUpdater} to do it's work
|
|
*/
|
|
@Override
|
|
public void execute(JobExecutionContext context) throws JobExecutionException
|
|
{
|
|
JobDataMap jobDataMap = context.getJobDetail().getJobDataMap();
|
|
Object fixedAclUpdaterObject = jobDataMap.get("fixedAclUpdater");
|
|
if (fixedAclUpdaterObject == null || !(fixedAclUpdaterObject instanceof FixedAclUpdater))
|
|
{
|
|
throw new AlfrescoRuntimeException("FixedAclUpdaterJob must contain a valid 'fixedAclUpdater'");
|
|
}
|
|
FixedAclUpdater fixedAclUpdater = (FixedAclUpdater)fixedAclUpdaterObject;
|
|
fixedAclUpdater.execute();
|
|
}
|
|
}
|