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