001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 *
017 * $Id: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $
018 */
019
020package org.nuxeo.ecm.webapp.trashManagement;
021
022import org.apache.commons.logging.Log;
023import org.apache.commons.logging.LogFactory;
024import org.nuxeo.runtime.model.ComponentContext;
025import org.nuxeo.runtime.model.ComponentInstance;
026import org.nuxeo.runtime.model.DefaultComponent;
027
028public class TrashManagementService extends DefaultComponent {
029
030    public static final String NAME = "org.nuxeo.ecm.webapp.trashManagement.TrashManagementService";
031
032    private static final Log log = LogFactory.getLog(TrashManagementService.class);
033
034    private boolean trashManagementEnabled;
035
036    @Override
037    public void activate(ComponentContext context) {
038        log.debug("TrashManagementService activated");
039    }
040
041    @Override
042    public void deactivate(ComponentContext context) {
043        log.debug("TrashManagementService deactivated");
044    }
045
046    @Override
047    public void registerContribution(Object contribution, String extensionPoint, ComponentInstance contributor) {
048        if ("config".equals(extensionPoint)) {
049            TrashConfigDescriptor descriptor = (TrashConfigDescriptor) contribution;
050            trashManagementEnabled = descriptor.enabled;
051        }
052    }
053
054    @Override
055    public void unregisterContribution(Object contribution, String extensionPoint, ComponentInstance contributor) {
056        trashManagementEnabled = false;
057    }
058
059    public boolean isTrashManagementEnabled() {
060        return trashManagementEnabled;
061    }
062
063}