14 lines
390 B
Java
14 lines
390 B
Java
package javax.baja.io.net;
|
|
|
|
import java.io.IOException;
|
|
import java.net.InetAddress;
|
|
import java.net.ServerSocket;
|
|
|
|
public interface IServerSocketFactory {
|
|
ServerSocket createServerSocket(int i) throws IOException;
|
|
|
|
ServerSocket createServerSocket(int i, int i2) throws IOException;
|
|
|
|
ServerSocket createServerSocket(int i, int i2, InetAddress inetAddress) throws IOException;
|
|
}
|