niagara-ax/modules/cfr_output/com/tridium/io/net/BasicServerSocketFactory.java
2026-03-17 13:31:18 -07:00

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);
}
}