1 7 8 package com.sun.corba.se.spi.legacy.connection; 9 10 import java.net.ServerSocket ; 11 import java.net.Socket ; 12 import java.io.IOException ; 13 14 import com.sun.corba.se.spi.ior.IOR; 15 import com.sun.corba.se.spi.transport.SocketInfo; 16 17 51 52 public interface ORBSocketFactory 53 { 54 84 public static final String IIOP_CLEAR_TEXT = "IIOP_CLEAR_TEXT"; 85 86 87 259 public ServerSocket createServerSocket(String type, int port) 260 throws 261 IOException ; 262 263 264 265 312 public SocketInfo getEndPointInfo(org.omg.CORBA.ORB orb, 313 IOR ior, 314 SocketInfo socketInfo); 315 316 317 334 public Socket createSocket(SocketInfo socketInfo) 335 throws 336 IOException , 337 GetEndPointInfoAgainException; 338 } 339 340 342 343 | Popular Tags |