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 @Override 040 public DocumentModel create(CoreSession documentManager, String fullname, String path, boolean overwrite, 041 TypeManager typeManager) { 042 // sample implementation to override in a custom FolderImporter 043 // implementation 044 return fileManagerService.defaultCreateFolder(documentManager, fullname, path, overwrite); 045 } 046 047 @Override 048 public String getName() { 049 return name; 050 } 051 052 @Override 053 public void setName(String name) { 054 this.name = name; 055 } 056 057 @Override 058 public void setFileManagerService(FileManagerService fileManagerService) { 059 this.fileManagerService = fileManagerService; 060 } 061 062}