KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > hibernate > ejb > interfaces > AggregateProfileServiceHome


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.test.hibernate.ejb.interfaces;
8
9 /**
10  * Home interface for ProfileService.
11  */

12 public interface AggregateProfileServiceHome
13    extends javax.ejb.EJBHome JavaDoc
14 {
15    public static final String JavaDoc COMP_NAME="java:comp/env/ejb/AggregateProfileService";
16    public static final String JavaDoc JNDI_NAME="AggregateProfileService";
17
18    public AggregateProfileService create()
19       throws javax.ejb.CreateException JavaDoc,java.rmi.RemoteException JavaDoc;
20
21 }
22
Popular Tags