KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > legacy > connection > LegacyServerSocketManager


1 /*
2  * @(#)LegacyServerSocketManager.java 1.42 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.spi.legacy.connection;
9
10 import java.util.Collection JavaDoc;
11
12 import com.sun.corba.se.spi.legacy.connection.LegacyServerSocketEndPointInfo;
13 import com.sun.corba.se.spi.transport.SocketOrChannelAcceptor;
14
15 /**
16  * @author Harold Carr
17  */

18 public interface LegacyServerSocketManager
19 {
20     public int legacyGetTransientServerPort(String JavaDoc type);
21     public int legacyGetPersistentServerPort(String JavaDoc socketType);
22     public int legacyGetTransientOrPersistentServerPort(String JavaDoc socketType);
23
24     public LegacyServerSocketEndPointInfo legacyGetEndpoint(String JavaDoc name);
25
26     public boolean legacyIsLocalServerPort(int port);
27 }
28     
29 // End of file.
30
Popular Tags