001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.lar;
016    
017    import java.util.List;
018    
019    /**
020     * The interface for the staged model data handler registry framework.
021     *
022     * @author Mate Thurzo
023     * @see    com.liferay.portal.kernel.lar.StagedModelDataHandlerRegistryUtil
024     * @since  6.2
025     */
026    public interface StagedModelDataHandlerRegistry {
027    
028            public StagedModelDataHandler<?> getStagedModelDataHandler(
029                    String className);
030    
031            public List<StagedModelDataHandler<?>> getStagedModelDataHandlers();
032    
033            public void register(StagedModelDataHandler<?> stagedModelDataHandler);
034    
035            public void unregister(StagedModelDataHandler<?> stagedModelDataHandler);
036    
037    }