home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wsgatsam.zip / CalendarServiceHome.java < prev    next >
Text File  |  2003-02-24  |  576b  |  22 lines

  1. /**
  2.  * %wsgw_sample_start%
  3.  * Licensed Materials - Property of IBM  
  4.  *    
  5.  * (c) Copyright IBM Corp. 2001, 2002 All Rights Reserved.  
  6.  *    
  7.  * US Government Users Restricted Rights - Use, duplication or   
  8.  * disclosure restricted by GSA ADP Schedule Contract with   
  9.  * IBM Corp.  
  10.  * %wsgw_sample_end%
  11.  */
  12.  
  13. package services.calendar.ejb;
  14.  
  15. /**
  16.  * This is a Home interface for the Session Bean
  17.  */
  18. public interface CalendarServiceHome extends javax.ejb.EJBHome
  19. {
  20. services.calendar.ejb.CalendarService create() throws javax.ejb.CreateException, java.rmi.RemoteException;
  21. }
  22.