EntityHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.security.interfaces; import javax.ejb.*; import java.rmi.*; public interface EntityHome extends EJBHome { public Entity create(String key) throws RemoteException, CreateException; public Entity findByPrimaryKey(String key) throws RemoteException, FinderException; }
EntityHome.java |