TestDataSourceHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. * */ package org.jboss.test.jmx.interfaces; import java.rmi.*; import javax.ejb.*; /** * * @see <related> * @author $Author: d_jencks $ * @version $Revision: 1.2 $ */ public interface TestDataSourceHome extends EJBHome { // Constants ----------------------------------------------------- public static final String COMP_NAME = "java:comp/env/ejb/TestDataSource"; public static final String JNDI_NAME = "test/TestDataSource"; // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public TestDataSource create() throws RemoteException, CreateException; }
TestDataSourceHome.java |