1 package org.jboss.remoting.security; 2 3 import java.io.IOException ; 4 import java.net.InetAddress ; 5 import java.net.ServerSocket ; 6 7 16 public interface ServerSocketFactoryMBean 17 { 18 25 ServerSocket createServerSocket() throws IOException ; 26 27 35 ServerSocket createServerSocket(int i) throws IOException ; 36 37 47 ServerSocket createServerSocket(int i, int i1) throws IOException ; 48 49 61 ServerSocket createServerSocket(int i, int i1, InetAddress inetAddress) throws IOException ; 62 } 63 | Popular Tags |