26 lines
679 B
Java
26 lines
679 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.io.net;
|
|
|
|
import java.io.IOException;
|
|
import java.net.InetAddress;
|
|
import java.net.ServerSocket;
|
|
import javax.baja.io.net.IServerSocketFactory;
|
|
|
|
public class BasicServerSocketFactory
|
|
implements IServerSocketFactory {
|
|
public ServerSocket createServerSocket(int n) throws IOException {
|
|
return new ServerSocket(n);
|
|
}
|
|
|
|
public ServerSocket createServerSocket(int n, int n2) throws IOException {
|
|
return new ServerSocket(n, n2);
|
|
}
|
|
|
|
public ServerSocket createServerSocket(int n, int n2, InetAddress inetAddress) throws IOException {
|
|
return new ServerSocket(n, n2, inetAddress);
|
|
}
|
|
}
|
|
|