MeetingHome.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package com.borland.training.meetings.entities;
  2. import javax.ejb.*;
  3. import java.util.*;
  4. public interface MeetingHome extends javax.ejb.EJBLocalHome {
  5.   public Meeting create(java.lang.String topic, java.util.Date startTime, java.util.Date finishTime) throws CreateException;
  6.   public java.util.Collection findByTime(java.sql.Timestamp date1, java.sql.Timestamp date2) throws FinderException;
  7.   public java.util.Collection findByTopic(java.lang.String topic) throws FinderException;
  8.   public java.util.Collection findAll() throws FinderException;
  9.   public Meeting findByPrimaryKey(java.lang.Long id) throws FinderException;
  10. }