KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Remote interface for ProfileService.
11  */

12 public interface AggregateProfileService
13    extends javax.ejb.EJBObject JavaDoc
14 {
15
16    public org.jboss.test.hibernate.model.User storeUser( org.jboss.test.hibernate.model.User user )
17       throws java.rmi.RemoteException JavaDoc;
18
19    public org.jboss.test.hibernate.model.User loadUser( long id )
20       throws java.rmi.RemoteException JavaDoc;
21
22    public org.jboss.test.hibernate.model.User loadUser( Long JavaDoc id )
23       throws java.rmi.RemoteException JavaDoc;
24
25    public java.util.List JavaDoc listUsers()
26       throws java.rmi.RemoteException JavaDoc;
27
28 }
29
Popular Tags