/*
 * 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 AggregateProfileServiceHome
   extends javax.ejb.EJBHome
{
   public static final String COMP_NAME="java:comp/env/ejb/AggregateProfileService";
   public static final String JNDI_NAME="AggregateProfileService";

   public AggregateProfileService create()
      throws javax.ejb.CreateException,java.rmi.RemoteException;

}