MeetingHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package com.borland.training.meetings.entities;
- import javax.ejb.*;
- import java.util.*;
- public interface MeetingHome extends javax.ejb.EJBLocalHome {
- public Meeting create(java.lang.String topic, java.util.Date startTime, java.util.Date finishTime) throws CreateException;
- public java.util.Collection findByTime(java.sql.Timestamp date1, java.sql.Timestamp date2) throws FinderException;
- public java.util.Collection findByTopic(java.lang.String topic) throws FinderException;
- public java.util.Collection findAll() throws FinderException;
- public Meeting findByPrimaryKey(java.lang.Long id) throws FinderException;
- }