serverdataconnectionfactory.java

来自「JAVA FTP 上传下载 的源文件」· Java 代码 · 共 92 行

JAVA
92
字号
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements.  See the NOTICE file * distributed with this work for additional information * regarding copyright ownership.  The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License.  You may obtain a copy of the License at * *  http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied.  See the License for the * specific language governing permissions and limitations * under the License. */package org.apache.ftpserver.impl;import java.net.InetAddress;import java.net.InetSocketAddress;import org.apache.ftpserver.DataConnectionException;import org.apache.ftpserver.ftplet.DataConnectionFactory;/** * <strong>Internal class, do not use directly.</strong> * * @author The Apache MINA Project (dev@mina.apache.org) * @version $Rev$, $Date$ * */public interface ServerDataConnectionFactory extends DataConnectionFactory {    /**     * Port command.     */    void initActiveDataConnection(InetSocketAddress address);    /**     * Initate the passive data connection.     *      * @return The {@link InetSocketAddress} on which the data connection if     *         bound.     */    InetSocketAddress initPassiveDataConnection()            throws DataConnectionException;    /**     * Set the security protocol.     */    void setSecure(boolean secure);    /**     * Sets the server's control address.     */    void setServerControlAddress(InetAddress serverControlAddress);    void setZipMode(boolean zip);    /**     * Check the data connection idle status.     */    boolean isTimeout(long currTime);    /**     * Dispose data connection - close all the sockets.     */    void dispose();    /**     * Is secure?     */    boolean isSecure();    /**     * Is zip mode?     */    boolean isZipMode();    /**     * Get client address.     */    InetAddress getInetAddress();    /**     * Get port number.     */    int getPort();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?