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. package com.sun.corba.se.spi.orbutil.proxy ;
  8. import java.lang.reflect.InvocationHandler ;
  9. import java.lang.reflect.Proxy ;
  10. /** This interface is used for InvocationHandler types that are
  11. * linked to their Proxy. This is useful when the InvocationHandler
  12. * needs access to data keyed by identity on the Proxy.
  13. */
  14. public interface LinkedInvocationHandler extends InvocationHandler
  15. {
  16. void setProxy( Proxy proxy ) ;
  17. Proxy getProxy() ;
  18. }