HelloHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.webservice.admindevel; /** * Home interface for Hello. */ public interface HelloHome extends javax.ejb.EJBHome { public static final String COMP_NAME = "java:comp/env/ejb/Hello"; public static final String JNDI_NAME = "Hello"; public HelloRemote create() throws javax.ejb.CreateException, java.rmi.RemoteException; }
HelloHome.java |