1. /*
  2. * @(#)Connection.java 1.4 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.connection;
  8. /**
  9. * This interface represents the connection on which a request is made.
  10. */
  11. public interface Connection
  12. {
  13. public java.net.Socket getSocket();
  14. }