home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wsgatsam.zip / CalendarService.java < prev    next >
Text File  |  2003-02-24  |  586b  |  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 an Enterprise Java Bean Remote Interface
  17.  */
  18. public interface CalendarService extends javax.ejb.EJBObject
  19. {
  20.   public String dayOfTheWeek(int month, int day, int year) throws java.rmi.RemoteException;
  21. }
  22.