001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.vfs2.provider.ftps;
018
019import org.apache.commons.vfs2.FileSystemException;
020import org.apache.commons.vfs2.FileSystemOptions;
021import org.apache.commons.vfs2.provider.GenericFileName;
022import org.apache.commons.vfs2.provider.ftp.FtpClient;
023import org.apache.commons.vfs2.provider.ftp.FtpFileSystem;
024
025/**
026 * A FTPS file system.
027 *
028 * @since 2.1
029 */
030public class FtpsFileSystem extends FtpFileSystem {
031
032    /**
033     * Creates a new FtpsFileSystem.
034     *
035     * @param rootName The root of the file system.
036     * @param ftpClient The FtpClient.
037     * @param fileSystemOptions The FileSystemOptions.
038     * @since 2.1
039     */
040    public FtpsFileSystem(final GenericFileName rootName, final FtpClient ftpClient,
041            final FileSystemOptions fileSystemOptions) {
042        super(rootName, ftpClient, fileSystemOptions);
043    }
044
045    @Override
046    protected FtpsClientWrapper createWrapper() throws FileSystemException {
047        return new FtpsClientWrapper((GenericFileName) getRoot().getName(), getFileSystemOptions());
048    }
049}