mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	Add priorities to transformers
   - Addition of a separate Transformers subsystem (holds configuration to allow JMX to be used to reset it on the fly)
   - Moved supported, unsupported and explicit transformation configuration from spring into transformers.properties in the subsystem
   - Moved all transformer limits configuration from spring and into transformers.properties with the exception of some added for thumbnails
     and the rendering service - not done as this code is known to be changing.
   - Added priority, errorTimes and thresholdCount to enable selection of transformers by priority.
   - Removed the concept of 'Explicit' transformation and replaced with priority and unsupported.
   - Added logging to aid in the creation of global properties and removal of spring configuration.
   - Implementation of spring pluggable transformation selector that uses priority.
   - Merging current state of code changes to allow other work in this area to take place.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@46719 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2005-2012 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.management.subsystems;
 | 
						|
 | 
						|
import java.util.Map;
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * An event emitted before a {@link PropertyBackedBean} updates its properties.
 | 
						|
 * 
 | 
						|
 * @author Alan Davis
 | 
						|
 */
 | 
						|
public class PropertyBackedBeanSetPropertiesEvent extends PropertyBackedBeanEvent
 | 
						|
{
 | 
						|
    private static final long serialVersionUID = 7530572539759535003L;
 | 
						|
    
 | 
						|
    private Map<String, String> properties;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The Constructor.
 | 
						|
     * 
 | 
						|
     * @param source
 | 
						|
     *            the source of the event
 | 
						|
     */
 | 
						|
    public PropertyBackedBeanSetPropertiesEvent(PropertyBackedBean source, Map<String, String> properties)
 | 
						|
    {
 | 
						|
        super(source);
 | 
						|
        this.properties = properties;
 | 
						|
    }
 | 
						|
 | 
						|
    public Map<String, String> getProperties()
 | 
						|
    {
 | 
						|
        return properties;
 | 
						|
    }    
 | 
						|
}
 |