1 /* 2 * @(#)LinkedInvocationHandler.java 1.3 04/07/27 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.orbutil.proxy ; 9 10 import java.lang.reflect.InvocationHandler ; 11 import java.lang.reflect.Proxy ; 12 13 /** This interface is used for InvocationHandler types that are 14 * linked to their Proxy. This is useful when the InvocationHandler 15 * needs access to data keyed by identity on the Proxy. 16 */ 17 public interface LinkedInvocationHandler extends InvocationHandler 18 { 19 void setProxy( Proxy proxy ) ; 20 21 Proxy getProxy() ; 22 } 23 24