/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.proxy.ejb; import java.security.Principal; import javax.transaction.Transaction; /** * Interface used by local IIOP invocations. * * @author Francisco Reverbel * @version $Revision: 1.1 $ */ public interface LocalIIOPInvoker { Object invoke(String opName, Object[] arguments, Transaction tx, Principal identity, Object credential) throws Exception; }