001/*
002 * (C) Copyright 2006-2007 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Nuxeo - initial API and implementation
018 *
019 * $Id$
020 */
021
022package org.nuxeo.ecm.platform.filemanager.service.extension;
023
024import org.nuxeo.ecm.core.api.CoreSession;
025import org.nuxeo.ecm.core.api.DocumentModel;
026import org.nuxeo.ecm.platform.filemanager.service.FileManagerService;
027import org.nuxeo.ecm.platform.types.TypeManager;
028
029// Not used but please keep, it will be needed once the
030// FileManagerService#createDefaultFolder method is extracted to a plugin.
031public abstract class AbstractFolderImporter implements FolderImporter {
032
033    protected String name = "";
034
035    // to be used by plugin implementation to gain access to standard file
036    // creation utility methods without having to lookup the service
037    protected FileManagerService fileManagerService;
038
039    public DocumentModel create(CoreSession documentManager, String fullname, String path, boolean overwrite,
040            TypeManager typeManager) {
041        // sample implementation to override in a custom FolderImporter
042        // implementation
043        return fileManagerService.defaultCreateFolder(documentManager, fullname, path);
044    }
045
046    public String getName() {
047        return name;
048    }
049
050    public void setName(String name) {
051        this.name = name;
052    }
053
054    public void setFileManagerService(FileManagerService fileManagerService) {
055        this.fileManagerService = fileManagerService;
056    }
057
058}