/* Copyright (C) 2003-2008 The University of Iowa 
 *
 * This file is part of the Das2 <www.das2.org> utilities library.
 *
 * Das2 utilities are free software: you can redistribute and/or modify them
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 *
 * Das2 utilities are distributed in the hope that they will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * as well as the GNU General Public License along with Das2 utilities.  If
 * not, see <http://www.gnu.org/licenses/>.
 *
 * FtpFileSystemFactory.java
 *
 * Created on November 15, 2007, 9:31 AM
 */

package org.das2.util.filesystem;

import java.net.URI;

/**
 *
 * @author jbf
 */
public class FtpFileSystemFactory implements FileSystemFactory {
    
    /** Creates a new instance of FtpFileSystemFactory */
    public FtpFileSystemFactory() {
    }

    @Override
    public FileSystem createFileSystem(URI root) throws FileSystem.FileSystemOfflineException {
        return new FTPFileSystem( root );
    }
    
}
