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 getSocket(); 17 } 18