1 /*2 * @(#)InvocationHandlerFactory.java 1.7 04/07/133 * 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 12 public interface InvocationHandlerFactory13 {14 /** Get an InvocationHandler.15 */16 InvocationHandler getInvocationHandler() ;17 18 /** Get the interfaces that InvocationHandler instances19 * produced by this InvocationHandlerFactory support.20 */21 Class [] getProxyInterfaces() ;22 }23 24 25