Invoker.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.remoting; /** * * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a> */ public interface Invoker { /** * return the locator this Invoker represents * * @return */ public InvokerLocator getLocator (); }
Invoker.java |