KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > transport > SocketInfo


1 /*
2  * @(#)SocketInfo.java 1.8 04/06/21
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.transport;
9
10 public interface SocketInfo
11 {
12     // Endpoint types known in advance.
13
// If you change the value of this constant then update
14
// activation.idl accordingly. It has a duplicate definition
15
// to avoid a compilation dependency.
16

17     public static final String JavaDoc IIOP_CLEAR_TEXT = "IIOP_CLEAR_TEXT";
18
19
20     public String JavaDoc getType();
21
22     public String JavaDoc getHost();
23
24     public int getPort();
25 }
26
Popular Tags