blob: 6e06e70259bcdb32a2e2bee86846aa86aefa3fe3 [file] [log] [blame]
/*
* 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)
*
*/
public interface ServerDataConnectionFactory extends DataConnectionFactory {
/**
* Port command.
*/
void initActiveDataConnection(InetSocketAddress address);
/**
* Initiate 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();
}