RoomRemoteHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package com.borland.training.meetings.entities;
- import javax.ejb.*;
- import java.util.*;
- import java.rmi.*;
- public interface RoomRemoteHome extends javax.ejb.EJBHome {
- public RoomRemote create(java.lang.String name, int capacity) throws CreateException, RemoteException;
- public java.util.Collection findRoomsWithCapacityGreaterThan(int capacity) throws FinderException, RemoteException;
- public java.util.Collection findAll() throws FinderException, RemoteException;
- public RoomRemote findByPrimaryKey(java.lang.String name) throws FinderException, RemoteException;
- public int calculateTotalCapacity() throws RemoteException;
- }