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