001/*
002 * (C) Copyright 2002 - 2006 Nuxeo SARL <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Nuxeo - initial API and implementation
011 *
012 *
013 * $Id: AbstractPlugin.java 4105 2006-10-15 12:29:25Z sfermigier $
014 */
015
016package org.nuxeo.ecm.platform.filemanager.service.extension;
017
018/**
019 * Plugin abstract class.
020 * <p>
021 * Default plugin behavior.
022 *
023 * @author <a href="mailto:akalogeropoulos@nuxeo.com">Andreas Kalogeropolos</a>
024 * @deprecated use {@link AbstractFileImporter}
025 */
026@Deprecated
027// TODO: remove
028public abstract class AbstractPlugin extends AbstractFileImporter {
029
030}