KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)Connection.java 1.7 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 /**
11  * This interface represents the connection on which a request is made.
12  */

13
14 public interface Connection
15 {
16     public java.net.Socket JavaDoc getSocket();
17 }
18
Popular Tags