FileDocCategorySizeDatePackage
TellerRemoteProxyFactory.javaAPI DocJBoss 4.2.11796Fri Jul 13 20:53:28 BST 2007org.jboss.ejb3.test.bank

TellerRemoteProxyFactory

public class TellerRemoteProxyFactory extends org.jboss.ejb3.stateless.StatelessRemoteProxyFactory
Comment
author
William DeCoste
version
$Revision: 60233 $

Fields Summary
private static final Logger
log
Constructors Summary
Methods Summary
protected java.lang.Class[]getInterfaces()

   
     
   
      Class[] remoteInterfaces = super.getInterfaces();

      Class[] interfaces = new Class[remoteInterfaces.length + 1];

      System.arraycopy(remoteInterfaces, 0, interfaces, 0, remoteInterfaces.length);
      interfaces[remoteInterfaces.length] = org.jboss.ejb3.test.bank.ProxyFactoryInterface.class;

      return interfaces;