FileDocCategorySizeDatePackage
RequestInfoExt.javaAPI DocJava SE 5 API691Fri Aug 26 14:54:36 BST 2005com.sun.corba.se.spi.legacy.interceptor

RequestInfoExt.java

/*
 * @(#)RequestInfoExt.java	1.8 03/12/19
 *
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package com.sun.corba.se.spi.legacy.interceptor;

import com.sun.corba.se.spi.legacy.connection.Connection;

/**
 * This interface is implemented by our implementation of 
 * PortableInterceptor.ClientRequestInfo and
 * PortableInterceptor.ServerRequestInfo. <p>
 *
 */

public interface RequestInfoExt
{
    /**
     * @return The connection on which the request is made.
     *         The return value will be null when a local transport 
     *         is used.
     */
    public Connection connection();
}