1 /*2 * JBoss, the OpenSource J2EE webOS3 *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 AggregateProfileService13 extends javax.ejb.EJBObject 14 {15 16 public org.jboss.test.hibernate.model.User storeUser( org.jboss.test.hibernate.model.User user )17 throws java.rmi.RemoteException ;18 19 public org.jboss.test.hibernate.model.User loadUser( long id )20 throws java.rmi.RemoteException ;21 22 public org.jboss.test.hibernate.model.User loadUser( Long id )23 throws java.rmi.RemoteException ;24 25 public java.util.List listUsers()26 throws java.rmi.RemoteException ;27 28 }29