1. /*
  2. * @(#)RequestInfoExt.java 1.8 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. package com.sun.corba.se.spi.legacy.interceptor;
  8. import com.sun.corba.se.spi.legacy.connection.Connection;
  9. /**
  10. * This interface is implemented by our implementation of
  11. * PortableInterceptor.ClientRequestInfo and
  12. * PortableInterceptor.ServerRequestInfo. <p>
  13. *
  14. */
  15. public interface RequestInfoExt
  16. {
  17. /**
  18. * @return The connection on which the request is made.
  19. * The return value will be null when a local transport
  20. * is used.
  21. */
  22. public Connection connection();
  23. }